From ef4f80bb80b1aa8134bd7e270cee01c93a7a7c93 Mon Sep 17 00:00:00 2001 From: Bobby Bonestell Date: Fri, 6 Mar 2026 14:46:07 -0700 Subject: [PATCH 1/2] fix: allow reserved words as property identifiers after optional chaining Reserved words like 'delete', 'class', 'return' were producing ERROR nodes when used as property identifiers after '?.' (optional chaining), while working correctly after '.'. This adds a '_keyword_identifier' rule that explicitly lists all reserved words as valid alternatives in the member_expression property field, working around a tree-sitter core issue where the 'reserved()' context wasn't propagated through the '?.' token path. Also extracts RESERVED_WORDS and CONTEXTUAL_KEYWORDS as shared constants to eliminate keyword list duplication across reserved.global, _reserved_identifier, and _keyword_identifier. Fixes #377 --- grammar.js | 71 +- src/grammar.json | 189 +- src/node-types.json | 35 +- src/parser.c | 108384 +++++++++++++++++---------------- src/tree_sitter/array.h | 181 +- test/corpus/expressions.txt | 30 + 6 files changed, 55846 insertions(+), 53044 deletions(-) diff --git a/grammar.js b/grammar.js index 7ca23ffb..77767891 100644 --- a/grammar.js +++ b/grammar.js @@ -8,6 +8,20 @@ /// // @ts-check +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#reserved_words +const RESERVED_WORDS = [ + 'break', 'case', 'catch', 'class', 'const', 'continue', + 'debugger', 'default', 'delete', 'do', 'else', 'export', + 'extends', 'false', 'finally', 'for', 'function', 'if', + 'import', 'in', 'instanceof', 'new', 'null', 'return', + 'super', 'switch', 'this', 'throw', 'true', 'try', + 'typeof', 'var', 'void', 'while', 'with', +]; + +const CONTEXTUAL_KEYWORDS = [ + 'get', 'set', 'async', 'await', 'static', 'export', 'let', +]; + module.exports = grammar({ name: 'javascript', @@ -31,44 +45,7 @@ module.exports = grammar({ ], reserved: { - // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#reserved_words - global: $ => [ - 'break', - 'case', - 'catch', - 'class', - 'const', - 'continue', - 'debugger', - 'default', - 'delete', - 'do', - 'else', - 'export', - 'extends', - 'false', - 'finally', - 'for', - 'function', - 'if', - 'import', - 'in', - 'instanceof', - 'new', - 'null', - 'return', - 'super', - 'switch', - 'this', - 'throw', - 'true', - 'try', - 'typeof', - 'var', - 'void', - 'while', - 'with', - ], + global: $ => RESERVED_WORDS, properties: $ => [], }, @@ -95,6 +72,7 @@ module.exports = grammar({ $._jsx_attribute_value, $._jsx_identifier, $._lhs_expression, + $._keyword_identifier, ], precedences: $ => [ @@ -886,7 +864,10 @@ module.exports = grammar({ choice('.', field('optional_chain', $.optional_chain)), field('property', choice( $.private_property_identifier, - reserved('properties', alias($.identifier, $.property_identifier)), + reserved('properties', alias( + choice($.identifier, $._keyword_identifier), + $.property_identifier, + )), )), )), @@ -1287,15 +1268,9 @@ module.exports = grammar({ ']', ), - _reserved_identifier: _ => choice( - 'get', - 'set', - 'async', - 'await', - 'static', - 'export', - 'let', - ), + _reserved_identifier: _ => choice(...CONTEXTUAL_KEYWORDS), + + _keyword_identifier: _ => choice(...RESERVED_WORDS, ...CONTEXTUAL_KEYWORDS), _semicolon: $ => choice($._automatic_semicolon, ';'), }, diff --git a/src/grammar.json b/src/grammar.json index 8623996a..fdad9db9 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3749,8 +3749,17 @@ "content": { "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_keyword_identifier" + } + ] }, "named": true, "value": "property_identifier" @@ -6772,6 +6781,179 @@ } ] }, + "_keyword_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "break" + }, + { + "type": "STRING", + "value": "case" + }, + { + "type": "STRING", + "value": "catch" + }, + { + "type": "STRING", + "value": "class" + }, + { + "type": "STRING", + "value": "const" + }, + { + "type": "STRING", + "value": "continue" + }, + { + "type": "STRING", + "value": "debugger" + }, + { + "type": "STRING", + "value": "default" + }, + { + "type": "STRING", + "value": "delete" + }, + { + "type": "STRING", + "value": "do" + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "STRING", + "value": "export" + }, + { + "type": "STRING", + "value": "extends" + }, + { + "type": "STRING", + "value": "false" + }, + { + "type": "STRING", + "value": "finally" + }, + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "function" + }, + { + "type": "STRING", + "value": "if" + }, + { + "type": "STRING", + "value": "import" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "instanceof" + }, + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "null" + }, + { + "type": "STRING", + "value": "return" + }, + { + "type": "STRING", + "value": "super" + }, + { + "type": "STRING", + "value": "switch" + }, + { + "type": "STRING", + "value": "this" + }, + { + "type": "STRING", + "value": "throw" + }, + { + "type": "STRING", + "value": "true" + }, + { + "type": "STRING", + "value": "try" + }, + { + "type": "STRING", + "value": "typeof" + }, + { + "type": "STRING", + "value": "var" + }, + { + "type": "STRING", + "value": "void" + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "STRING", + "value": "with" + }, + { + "type": "STRING", + "value": "get" + }, + { + "type": "STRING", + "value": "set" + }, + { + "type": "STRING", + "value": "async" + }, + { + "type": "STRING", + "value": "await" + }, + { + "type": "STRING", + "value": "static" + }, + { + "type": "STRING", + "value": "export" + }, + { + "type": "STRING", + "value": "let" + } + ] + }, "_semicolon": { "type": "CHOICE", "members": [ @@ -7104,7 +7286,8 @@ "_jsx_attribute_name", "_jsx_attribute_value", "_jsx_identifier", - "_lhs_expression" + "_lhs_expression", + "_keyword_identifier" ], "supertypes": [ "statement", diff --git a/src/node-types.json b/src/node-types.json index e508ff19..480f3c38 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1207,6 +1207,11 @@ ] } }, + { + "type": "false", + "named": true, + "fields": {} + }, { "type": "field_definition", "named": true, @@ -2244,6 +2249,11 @@ } } }, + { + "type": "null", + "named": true, + "fields": {} + }, { "type": "object", "named": true, @@ -2647,6 +2657,11 @@ } } }, + { + "type": "super", + "named": true, + "fields": {} + }, { "type": "switch_body", "named": true, @@ -2816,6 +2831,11 @@ } } }, + { + "type": "this", + "named": true, + "fields": {} + }, { "type": "throw_statement", "named": true, @@ -2835,6 +2855,11 @@ ] } }, + { + "type": "true", + "named": true, + "fields": {} + }, { "type": "try_statement", "named": true, @@ -3396,7 +3421,7 @@ }, { "type": "false", - "named": true + "named": false }, { "type": "finally", @@ -3469,7 +3494,7 @@ }, { "type": "null", - "named": true + "named": false }, { "type": "number", @@ -3533,7 +3558,7 @@ }, { "type": "super", - "named": true + "named": false }, { "type": "switch", @@ -3545,7 +3570,7 @@ }, { "type": "this", - "named": true + "named": false }, { "type": "throw", @@ -3553,7 +3578,7 @@ }, { "type": "true", - "named": true + "named": false }, { "type": "try", diff --git a/src/parser.c b/src/parser.c index 94f8c346..d17f7fd5 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically @generated by tree-sitter v0.25.8 */ +/* Automatically @generated by tree-sitter */ #include "tree_sitter/parser.h" @@ -7,9 +7,9 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 1870 +#define STATE_COUNT 1880 #define LARGE_STATE_COUNT 387 -#define SYMBOL_COUNT 261 +#define SYMBOL_COUNT 266 #define ALIAS_COUNT 4 #define TOKEN_COUNT 134 #define EXTERNAL_TOKEN_COUNT 8 @@ -137,11 +137,11 @@ enum ts_symbol_identifiers { sym_private_property_identifier = 115, anon_sym_target = 116, anon_sym_meta = 117, - sym_this = 118, - sym_super = 119, - sym_true = 120, - sym_false = 121, - sym_null = 122, + anon_sym_this = 118, + anon_sym_super = 119, + anon_sym_true = 120, + anon_sym_false = 121, + anon_sym_null = 122, sym_undefined = 123, anon_sym_AT = 124, anon_sym_static = 125, @@ -245,45 +245,50 @@ enum ts_symbol_identifiers { sym_template_substitution = 223, sym_regex = 224, sym_meta_property = 225, - sym_arguments = 226, - sym_decorator = 227, - sym_decorator_member_expression = 228, - sym_decorator_call_expression = 229, - sym_class_body = 230, - sym_field_definition = 231, - sym_formal_parameters = 232, - sym_class_static_block = 233, - sym_pattern = 234, - sym_rest_pattern = 235, - sym_method_definition = 236, - sym_pair = 237, - sym_pair_pattern = 238, - sym__property_name = 239, - sym_computed_property_name = 240, - aux_sym_program_repeat1 = 241, - aux_sym_export_statement_repeat1 = 242, - aux_sym_export_clause_repeat1 = 243, - aux_sym_named_imports_repeat1 = 244, - aux_sym_variable_declaration_repeat1 = 245, - aux_sym_switch_body_repeat1 = 246, - aux_sym_object_repeat1 = 247, - aux_sym_object_pattern_repeat1 = 248, - aux_sym_array_repeat1 = 249, - aux_sym_array_pattern_repeat1 = 250, - aux_sym_jsx_element_repeat1 = 251, - aux_sym_jsx_opening_element_repeat1 = 252, - aux_sym__jsx_string_repeat1 = 253, - aux_sym__jsx_string_repeat2 = 254, - aux_sym_sequence_expression_repeat1 = 255, - aux_sym_string_repeat1 = 256, - aux_sym_string_repeat2 = 257, - aux_sym_template_string_repeat1 = 258, - aux_sym_class_body_repeat1 = 259, - aux_sym_formal_parameters_repeat1 = 260, - alias_sym_property_identifier = 261, - alias_sym_shorthand_property_identifier = 262, - alias_sym_shorthand_property_identifier_pattern = 263, - alias_sym_statement_identifier = 264, + sym_this = 226, + sym_super = 227, + sym_true = 228, + sym_false = 229, + sym_null = 230, + sym_arguments = 231, + sym_decorator = 232, + sym_decorator_member_expression = 233, + sym_decorator_call_expression = 234, + sym_class_body = 235, + sym_field_definition = 236, + sym_formal_parameters = 237, + sym_class_static_block = 238, + sym_pattern = 239, + sym_rest_pattern = 240, + sym_method_definition = 241, + sym_pair = 242, + sym_pair_pattern = 243, + sym__property_name = 244, + sym_computed_property_name = 245, + aux_sym_program_repeat1 = 246, + aux_sym_export_statement_repeat1 = 247, + aux_sym_export_clause_repeat1 = 248, + aux_sym_named_imports_repeat1 = 249, + aux_sym_variable_declaration_repeat1 = 250, + aux_sym_switch_body_repeat1 = 251, + aux_sym_object_repeat1 = 252, + aux_sym_object_pattern_repeat1 = 253, + aux_sym_array_repeat1 = 254, + aux_sym_array_pattern_repeat1 = 255, + aux_sym_jsx_element_repeat1 = 256, + aux_sym_jsx_opening_element_repeat1 = 257, + aux_sym__jsx_string_repeat1 = 258, + aux_sym__jsx_string_repeat2 = 259, + aux_sym_sequence_expression_repeat1 = 260, + aux_sym_string_repeat1 = 261, + aux_sym_string_repeat2 = 262, + aux_sym_template_string_repeat1 = 263, + aux_sym_class_body_repeat1 = 264, + aux_sym_formal_parameters_repeat1 = 265, + alias_sym_property_identifier = 266, + alias_sym_shorthand_property_identifier = 267, + alias_sym_shorthand_property_identifier_pattern = 268, + alias_sym_statement_identifier = 269, }; static const char * const ts_symbol_names[] = { @@ -405,11 +410,11 @@ static const char * const ts_symbol_names[] = { [sym_private_property_identifier] = "private_property_identifier", [anon_sym_target] = "target", [anon_sym_meta] = "meta", - [sym_this] = "this", - [sym_super] = "super", - [sym_true] = "true", - [sym_false] = "false", - [sym_null] = "null", + [anon_sym_this] = "this", + [anon_sym_super] = "super", + [anon_sym_true] = "true", + [anon_sym_false] = "false", + [anon_sym_null] = "null", [sym_undefined] = "undefined", [anon_sym_AT] = "@", [anon_sym_static] = "static", @@ -513,6 +518,11 @@ static const char * const ts_symbol_names[] = { [sym_template_substitution] = "template_substitution", [sym_regex] = "regex", [sym_meta_property] = "meta_property", + [sym_this] = "this", + [sym_super] = "super", + [sym_true] = "true", + [sym_false] = "false", + [sym_null] = "null", [sym_arguments] = "arguments", [sym_decorator] = "decorator", [sym_decorator_member_expression] = "member_expression", @@ -673,11 +683,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_private_property_identifier] = sym_private_property_identifier, [anon_sym_target] = anon_sym_target, [anon_sym_meta] = anon_sym_meta, - [sym_this] = sym_this, - [sym_super] = sym_super, - [sym_true] = sym_true, - [sym_false] = sym_false, - [sym_null] = sym_null, + [anon_sym_this] = anon_sym_this, + [anon_sym_super] = anon_sym_super, + [anon_sym_true] = anon_sym_true, + [anon_sym_false] = anon_sym_false, + [anon_sym_null] = anon_sym_null, [sym_undefined] = sym_undefined, [anon_sym_AT] = anon_sym_AT, [anon_sym_static] = anon_sym_static, @@ -781,6 +791,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_template_substitution] = sym_template_substitution, [sym_regex] = sym_regex, [sym_meta_property] = sym_meta_property, + [sym_this] = sym_this, + [sym_super] = sym_super, + [sym_true] = sym_true, + [sym_false] = sym_false, + [sym_null] = sym_null, [sym_arguments] = sym_arguments, [sym_decorator] = sym_decorator, [sym_decorator_member_expression] = sym_member_expression, @@ -1295,25 +1310,25 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_this] = { + [anon_sym_this] = { .visible = true, - .named = true, + .named = false, }, - [sym_super] = { + [anon_sym_super] = { .visible = true, - .named = true, + .named = false, }, - [sym_true] = { + [anon_sym_true] = { .visible = true, - .named = true, + .named = false, }, - [sym_false] = { + [anon_sym_false] = { .visible = true, - .named = true, + .named = false, }, - [sym_null] = { + [anon_sym_null] = { .visible = true, - .named = true, + .named = false, }, [sym_undefined] = { .visible = true, @@ -1731,6 +1746,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_this] = { + .visible = true, + .named = true, + }, + [sym_super] = { + .visible = true, + .named = true, + }, + [sym_true] = { + .visible = true, + .named = true, + }, + [sym_false] = { + .visible = true, + .named = true, + }, + [sym_null] = { + .visible = true, + .named = true, + }, [sym_arguments] = { .visible = true, .named = true, @@ -2514,9 +2549,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 2, [6] = 2, [7] = 7, - [8] = 7, - [9] = 9, - [10] = 7, + [8] = 8, + [9] = 8, + [10] = 8, [11] = 11, [12] = 12, [13] = 13, @@ -2525,62 +2560,62 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [16] = 15, [17] = 17, [18] = 18, - [19] = 19, + [19] = 17, [20] = 20, [21] = 21, - [22] = 18, - [23] = 19, - [24] = 18, - [25] = 19, - [26] = 18, - [27] = 19, - [28] = 19, - [29] = 29, - [30] = 18, - [31] = 29, - [32] = 32, - [33] = 15, + [22] = 17, + [23] = 23, + [24] = 24, + [25] = 24, + [26] = 17, + [27] = 23, + [28] = 23, + [29] = 23, + [30] = 23, + [31] = 17, + [32] = 15, + [33] = 33, [34] = 34, - [35] = 15, - [36] = 36, - [37] = 15, - [38] = 36, + [35] = 35, + [36] = 15, + [37] = 33, + [38] = 15, [39] = 15, [40] = 40, [41] = 41, [42] = 42, - [43] = 43, + [43] = 42, [44] = 44, [45] = 45, - [46] = 46, - [47] = 47, + [46] = 41, + [47] = 44, [48] = 48, [49] = 49, [50] = 50, - [51] = 32, + [51] = 51, [52] = 52, [53] = 53, - [54] = 54, - [55] = 55, - [56] = 56, - [57] = 40, - [58] = 53, - [59] = 42, - [60] = 43, - [61] = 44, - [62] = 45, - [63] = 46, - [64] = 47, - [65] = 48, - [66] = 49, - [67] = 50, + [54] = 45, + [55] = 50, + [56] = 51, + [57] = 57, + [58] = 58, + [59] = 59, + [60] = 60, + [61] = 48, + [62] = 62, + [63] = 57, + [64] = 64, + [65] = 49, + [66] = 59, + [67] = 60, [68] = 52, - [69] = 55, - [70] = 56, - [71] = 54, - [72] = 72, - [73] = 34, - [74] = 36, + [69] = 40, + [70] = 53, + [71] = 34, + [72] = 64, + [73] = 33, + [74] = 35, [75] = 15, [76] = 15, [77] = 15, @@ -2594,143 +2629,143 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [85] = 80, [86] = 86, [87] = 87, - [88] = 88, - [89] = 89, + [88] = 86, + [89] = 87, [90] = 90, [91] = 91, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 95, - [96] = 96, + [92] = 90, + [93] = 90, + [94] = 90, + [95] = 90, + [96] = 90, [97] = 97, [98] = 98, - [99] = 99, + [99] = 97, [100] = 100, [101] = 101, [102] = 102, - [103] = 102, - [104] = 101, + [103] = 103, + [104] = 104, [105] = 105, - [106] = 105, + [106] = 103, [107] = 107, - [108] = 105, - [109] = 105, - [110] = 105, - [111] = 105, + [108] = 108, + [109] = 109, + [110] = 110, + [111] = 111, [112] = 112, [113] = 113, - [114] = 112, + [114] = 114, [115] = 115, [116] = 116, [117] = 117, - [118] = 115, - [119] = 119, - [120] = 119, + [118] = 118, + [119] = 117, + [120] = 120, [121] = 121, [122] = 122, [123] = 122, [124] = 124, - [125] = 122, - [126] = 126, + [125] = 125, + [126] = 122, [127] = 127, [128] = 128, [129] = 129, [130] = 130, - [131] = 129, + [131] = 130, [132] = 132, [133] = 133, - [134] = 133, + [134] = 134, [135] = 135, [136] = 136, - [137] = 133, - [138] = 138, - [139] = 138, - [140] = 140, + [137] = 137, + [138] = 137, + [139] = 139, + [140] = 135, [141] = 141, [142] = 142, - [143] = 141, + [143] = 142, [144] = 144, - [145] = 145, + [145] = 144, [146] = 146, - [147] = 144, - [148] = 145, - [149] = 146, + [147] = 141, + [148] = 146, + [149] = 149, [150] = 150, - [151] = 150, + [151] = 149, [152] = 152, - [153] = 152, - [154] = 154, + [153] = 153, + [154] = 153, [155] = 155, [156] = 156, [157] = 157, [158] = 158, [159] = 159, - [160] = 160, - [161] = 161, + [160] = 152, + [161] = 153, [162] = 162, [163] = 163, - [164] = 159, - [165] = 157, - [166] = 166, - [167] = 167, - [168] = 168, - [169] = 167, + [164] = 164, + [165] = 162, + [166] = 150, + [167] = 149, + [168] = 150, + [169] = 149, [170] = 170, - [171] = 171, - [172] = 166, - [173] = 168, + [171] = 159, + [172] = 172, + [173] = 173, [174] = 174, - [175] = 175, - [176] = 159, - [177] = 152, + [175] = 152, + [176] = 174, + [177] = 155, [178] = 178, - [179] = 154, - [180] = 168, - [181] = 181, - [182] = 167, + [179] = 162, + [180] = 150, + [181] = 149, + [182] = 170, [183] = 183, - [184] = 175, - [185] = 152, - [186] = 154, - [187] = 161, - [188] = 154, - [189] = 181, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 159, + [188] = 173, + [189] = 159, [190] = 190, - [191] = 191, - [192] = 157, - [193] = 193, - [194] = 159, - [195] = 178, - [196] = 168, - [197] = 167, - [198] = 175, + [191] = 152, + [192] = 155, + [193] = 162, + [194] = 150, + [195] = 195, + [196] = 153, + [197] = 159, + [198] = 159, [199] = 152, - [200] = 154, - [201] = 201, - [202] = 202, - [203] = 159, - [204] = 168, - [205] = 167, - [206] = 175, - [207] = 152, - [208] = 154, - [209] = 159, - [210] = 157, - [211] = 211, - [212] = 168, - [213] = 157, - [214] = 167, - [215] = 175, - [216] = 157, - [217] = 175, + [200] = 155, + [201] = 162, + [202] = 150, + [203] = 149, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 153, + [209] = 152, + [210] = 155, + [211] = 153, + [212] = 162, + [213] = 155, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, [218] = 218, [219] = 219, [220] = 220, [221] = 221, [222] = 222, [223] = 223, - [224] = 220, + [224] = 224, [225] = 225, [226] = 226, [227] = 227, @@ -2741,189 +2776,189 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [232] = 232, [233] = 233, [234] = 234, - [235] = 235, + [235] = 214, [236] = 236, - [237] = 237, - [238] = 238, - [239] = 239, - [240] = 240, - [241] = 241, - [242] = 242, - [243] = 243, - [244] = 220, - [245] = 229, + [237] = 216, + [238] = 217, + [239] = 218, + [240] = 219, + [241] = 220, + [242] = 221, + [243] = 222, + [244] = 223, + [245] = 224, [246] = 225, - [247] = 247, - [248] = 228, - [249] = 231, - [250] = 219, - [251] = 233, - [252] = 234, - [253] = 235, - [254] = 236, - [255] = 237, - [256] = 238, - [257] = 239, - [258] = 240, - [259] = 241, - [260] = 242, - [261] = 243, - [262] = 247, - [263] = 263, - [264] = 263, - [265] = 265, - [266] = 266, - [267] = 226, - [268] = 268, - [269] = 269, - [270] = 270, - [271] = 271, - [272] = 266, - [273] = 266, - [274] = 220, - [275] = 229, - [276] = 225, - [277] = 232, - [278] = 231, - [279] = 219, - [280] = 233, - [281] = 235, - [282] = 236, - [283] = 237, - [284] = 238, - [285] = 239, - [286] = 240, - [287] = 241, - [288] = 242, - [289] = 243, - [290] = 247, - [291] = 263, - [292] = 226, - [293] = 293, - [294] = 229, - [295] = 225, - [296] = 228, - [297] = 231, - [298] = 219, - [299] = 232, - [300] = 233, - [301] = 235, - [302] = 236, - [303] = 237, - [304] = 238, - [305] = 239, - [306] = 240, - [307] = 241, - [308] = 242, - [309] = 243, - [310] = 247, - [311] = 263, - [312] = 269, - [313] = 226, - [314] = 314, - [315] = 220, - [316] = 229, - [317] = 225, - [318] = 228, - [319] = 231, - [320] = 219, - [321] = 233, - [322] = 235, - [323] = 236, - [324] = 237, - [325] = 238, - [326] = 239, - [327] = 240, - [328] = 241, - [329] = 242, - [330] = 243, - [331] = 247, - [332] = 263, - [333] = 226, - [334] = 232, + [247] = 226, + [248] = 227, + [249] = 228, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 251, + [254] = 254, + [255] = 233, + [256] = 251, + [257] = 257, + [258] = 231, + [259] = 231, + [260] = 232, + [261] = 233, + [262] = 234, + [263] = 214, + [264] = 264, + [265] = 236, + [266] = 216, + [267] = 218, + [268] = 219, + [269] = 220, + [270] = 221, + [271] = 222, + [272] = 223, + [273] = 224, + [274] = 225, + [275] = 226, + [276] = 227, + [277] = 228, + [278] = 278, + [279] = 254, + [280] = 280, + [281] = 281, + [282] = 232, + [283] = 233, + [284] = 234, + [285] = 214, + [286] = 236, + [287] = 215, + [288] = 216, + [289] = 218, + [290] = 219, + [291] = 220, + [292] = 221, + [293] = 222, + [294] = 223, + [295] = 224, + [296] = 225, + [297] = 226, + [298] = 227, + [299] = 228, + [300] = 230, + [301] = 254, + [302] = 234, + [303] = 232, + [304] = 304, + [305] = 231, + [306] = 232, + [307] = 233, + [308] = 234, + [309] = 214, + [310] = 236, + [311] = 216, + [312] = 218, + [313] = 219, + [314] = 220, + [315] = 221, + [316] = 222, + [317] = 223, + [318] = 224, + [319] = 225, + [320] = 226, + [321] = 227, + [322] = 228, + [323] = 254, + [324] = 215, + [325] = 254, + [326] = 231, + [327] = 232, + [328] = 233, + [329] = 234, + [330] = 214, + [331] = 236, + [332] = 216, + [333] = 218, + [334] = 219, [335] = 220, - [336] = 229, - [337] = 225, - [338] = 228, - [339] = 231, - [340] = 219, - [341] = 233, - [342] = 235, - [343] = 236, - [344] = 237, - [345] = 238, - [346] = 239, - [347] = 240, - [348] = 241, - [349] = 242, - [350] = 243, - [351] = 247, - [352] = 263, - [353] = 226, - [354] = 232, - [355] = 232, - [356] = 228, + [336] = 221, + [337] = 222, + [338] = 223, + [339] = 224, + [340] = 225, + [341] = 226, + [342] = 227, + [343] = 228, + [344] = 254, + [345] = 345, + [346] = 215, + [347] = 215, + [348] = 231, + [349] = 236, + [350] = 350, + [351] = 215, + [352] = 352, + [353] = 352, + [354] = 352, + [355] = 355, + [356] = 355, [357] = 357, [358] = 357, [359] = 357, [360] = 360, [361] = 361, - [362] = 360, - [363] = 361, - [364] = 361, - [365] = 360, + [362] = 361, + [363] = 360, + [364] = 360, + [365] = 361, [366] = 366, [367] = 366, [368] = 368, - [369] = 88, - [370] = 368, - [371] = 371, - [372] = 366, - [373] = 366, - [374] = 91, + [369] = 366, + [370] = 370, + [371] = 366, + [372] = 372, + [373] = 370, + [374] = 374, [375] = 366, - [376] = 371, - [377] = 366, - [378] = 378, - [379] = 378, - [380] = 368, - [381] = 381, + [376] = 370, + [377] = 110, + [378] = 372, + [379] = 101, + [380] = 366, + [381] = 368, [382] = 382, - [383] = 383, - [384] = 89, - [385] = 87, - [386] = 382, - [387] = 378, + [383] = 382, + [384] = 104, + [385] = 385, + [386] = 108, + [387] = 368, [388] = 388, [389] = 389, - [390] = 388, - [391] = 87, - [392] = 392, - [393] = 366, - [394] = 91, + [390] = 389, + [391] = 366, + [392] = 366, + [393] = 393, + [394] = 394, [395] = 395, [396] = 396, - [397] = 396, - [398] = 398, - [399] = 90, - [400] = 89, - [401] = 401, - [402] = 86, + [397] = 397, + [398] = 102, + [399] = 105, + [400] = 400, + [401] = 366, + [402] = 110, [403] = 403, [404] = 404, [405] = 405, - [406] = 366, + [406] = 406, [407] = 407, - [408] = 408, + [408] = 366, [409] = 409, [410] = 366, - [411] = 411, - [412] = 366, - [413] = 413, - [414] = 366, - [415] = 415, - [416] = 88, - [417] = 383, + [411] = 108, + [412] = 412, + [413] = 101, + [414] = 395, + [415] = 385, + [416] = 104, + [417] = 417, [418] = 418, [419] = 419, [420] = 420, @@ -2997,23 +3032,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [488] = 488, [489] = 489, [490] = 490, - [491] = 404, - [492] = 490, + [491] = 409, + [492] = 492, [493] = 493, - [494] = 494, + [494] = 493, [495] = 495, - [496] = 496, + [496] = 493, [497] = 497, [498] = 498, - [499] = 490, + [499] = 499, [500] = 500, [501] = 501, [502] = 502, - [503] = 501, - [504] = 502, - [505] = 505, + [503] = 503, + [504] = 503, + [505] = 502, [506] = 506, - [507] = 498, + [507] = 507, [508] = 508, [509] = 509, [510] = 510, @@ -3024,85 +3059,85 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [515] = 515, [516] = 516, [517] = 517, - [518] = 518, + [518] = 490, [519] = 519, - [520] = 520, + [520] = 409, [521] = 521, [522] = 522, [523] = 523, - [524] = 404, + [524] = 524, [525] = 525, - [526] = 497, - [527] = 501, - [528] = 498, - [529] = 501, - [530] = 502, + [526] = 526, + [527] = 503, + [528] = 495, + [529] = 497, + [530] = 499, [531] = 531, [532] = 532, [533] = 533, - [534] = 500, - [535] = 535, - [536] = 533, - [537] = 502, - [538] = 404, + [534] = 502, + [535] = 498, + [536] = 492, + [537] = 503, + [538] = 503, [539] = 539, - [540] = 540, - [541] = 531, - [542] = 535, - [543] = 501, - [544] = 502, - [545] = 494, + [540] = 409, + [541] = 503, + [542] = 542, + [543] = 490, + [544] = 533, + [545] = 539, [546] = 502, - [547] = 495, - [548] = 496, - [549] = 532, - [550] = 501, - [551] = 493, - [552] = 498, + [547] = 500, + [548] = 502, + [549] = 542, + [550] = 502, + [551] = 526, + [552] = 532, [553] = 553, - [554] = 540, - [555] = 555, - [556] = 556, + [554] = 554, + [555] = 531, + [556] = 554, [557] = 557, - [558] = 557, - [559] = 539, - [560] = 498, - [561] = 532, - [562] = 556, - [563] = 533, - [564] = 564, - [565] = 502, - [566] = 501, - [567] = 502, - [568] = 501, + [558] = 490, + [559] = 490, + [560] = 560, + [561] = 526, + [562] = 557, + [563] = 563, + [564] = 533, + [565] = 503, + [566] = 554, + [567] = 503, + [568] = 503, [569] = 502, - [570] = 501, - [571] = 502, - [572] = 557, + [570] = 503, + [571] = 560, + [572] = 553, [573] = 502, - [574] = 553, - [575] = 555, - [576] = 501, - [577] = 501, - [578] = 498, - [579] = 498, - [580] = 564, + [574] = 503, + [575] = 502, + [576] = 502, + [577] = 502, + [578] = 563, + [579] = 490, + [580] = 490, [581] = 581, - [582] = 92, + [582] = 581, [583] = 583, - [584] = 91, + [584] = 583, [585] = 585, - [586] = 88, + [586] = 586, [587] = 587, - [588] = 588, + [588] = 585, [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, + [590] = 589, + [591] = 107, + [592] = 110, [593] = 593, - [594] = 90, + [594] = 594, [595] = 595, - [596] = 596, + [596] = 101, [597] = 597, [598] = 598, [599] = 599, @@ -3124,14 +3159,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [615] = 615, [616] = 616, [617] = 617, - [618] = 89, + [618] = 618, [619] = 619, [620] = 620, [621] = 621, [622] = 622, [623] = 623, [624] = 624, - [625] = 86, + [625] = 625, [626] = 626, [627] = 627, [628] = 628, @@ -3147,197 +3182,197 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [638] = 638, [639] = 639, [640] = 640, - [641] = 641, + [641] = 104, [642] = 642, [643] = 643, [644] = 644, [645] = 645, [646] = 646, - [647] = 87, + [647] = 647, [648] = 648, [649] = 649, [650] = 650, [651] = 651, - [652] = 632, + [652] = 102, [653] = 653, [654] = 654, [655] = 655, [656] = 656, - [657] = 581, + [657] = 657, [658] = 658, - [659] = 590, - [660] = 660, + [659] = 659, + [660] = 108, [661] = 661, [662] = 662, [663] = 663, - [664] = 664, - [665] = 648, + [664] = 105, + [665] = 665, [666] = 666, [667] = 667, [668] = 668, [669] = 669, - [670] = 603, - [671] = 671, + [670] = 650, + [671] = 597, [672] = 672, [673] = 673, [674] = 674, [675] = 675, [676] = 676, [677] = 677, - [678] = 678, + [678] = 634, [679] = 679, [680] = 680, - [681] = 583, - [682] = 585, - [683] = 603, - [684] = 92, - [685] = 632, - [686] = 589, - [687] = 614, - [688] = 590, - [689] = 640, + [681] = 587, + [682] = 586, + [683] = 612, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 687, + [688] = 688, + [689] = 689, [690] = 690, - [691] = 591, - [692] = 587, - [693] = 92, - [694] = 648, - [695] = 588, - [696] = 660, - [697] = 617, - [698] = 653, - [699] = 596, - [700] = 597, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 695, + [696] = 593, + [697] = 650, + [698] = 107, + [699] = 634, + [700] = 595, [701] = 598, - [702] = 94, - [703] = 661, - [704] = 662, - [705] = 669, - [706] = 599, - [707] = 671, - [708] = 672, - [709] = 673, - [710] = 674, - [711] = 675, - [712] = 676, - [713] = 677, - [714] = 678, - [715] = 679, - [716] = 680, - [717] = 667, - [718] = 654, - [719] = 660, - [720] = 600, - [721] = 664, - [722] = 666, - [723] = 668, - [724] = 93, - [725] = 661, - [726] = 662, - [727] = 655, - [728] = 601, - [729] = 658, - [730] = 603, - [731] = 632, - [732] = 604, - [733] = 648, - [734] = 616, - [735] = 651, - [736] = 636, - [737] = 630, - [738] = 621, - [739] = 635, - [740] = 646, - [741] = 639, - [742] = 629, - [743] = 644, - [744] = 606, - [745] = 608, + [702] = 613, + [703] = 107, + [704] = 594, + [705] = 597, + [706] = 612, + [707] = 655, + [708] = 599, + [709] = 622, + [710] = 645, + [711] = 674, + [712] = 616, + [713] = 673, + [714] = 629, + [715] = 619, + [716] = 639, + [717] = 658, + [718] = 661, + [719] = 642, + [720] = 720, + [721] = 607, + [722] = 644, + [723] = 638, + [724] = 724, + [725] = 653, + [726] = 597, + [727] = 112, + [728] = 659, + [729] = 694, + [730] = 720, + [731] = 646, + [732] = 685, + [733] = 647, + [734] = 114, + [735] = 649, + [736] = 111, + [737] = 115, + [738] = 118, + [739] = 120, + [740] = 121, + [741] = 113, + [742] = 620, + [743] = 654, + [744] = 614, + [745] = 663, [746] = 602, - [747] = 634, - [748] = 615, - [749] = 669, - [750] = 642, - [751] = 671, - [752] = 95, - [753] = 672, - [754] = 645, + [747] = 603, + [748] = 604, + [749] = 603, + [750] = 684, + [751] = 605, + [752] = 686, + [753] = 688, + [754] = 612, [755] = 650, - [756] = 673, - [757] = 622, - [758] = 607, - [759] = 626, - [760] = 674, - [761] = 761, - [762] = 653, - [763] = 675, - [764] = 631, - [765] = 765, - [766] = 619, - [767] = 649, - [768] = 98, - [769] = 655, - [770] = 593, - [771] = 590, - [772] = 620, - [773] = 605, - [774] = 96, - [775] = 676, - [776] = 677, - [777] = 678, - [778] = 679, - [779] = 627, - [780] = 680, - [781] = 623, - [782] = 99, - [783] = 595, - [784] = 609, - [785] = 624, - [786] = 612, - [787] = 656, - [788] = 610, - [789] = 641, - [790] = 611, - [791] = 667, - [792] = 664, - [793] = 590, - [794] = 628, - [795] = 598, - [796] = 663, - [797] = 637, - [798] = 97, - [799] = 100, - [800] = 638, - [801] = 613, - [802] = 663, - [803] = 654, - [804] = 765, - [805] = 592, - [806] = 666, - [807] = 643, - [808] = 656, - [809] = 658, + [756] = 634, + [757] = 606, + [758] = 636, + [759] = 676, + [760] = 687, + [761] = 689, + [762] = 690, + [763] = 691, + [764] = 692, + [765] = 693, + [766] = 667, + [767] = 669, + [768] = 627, + [769] = 672, + [770] = 600, + [771] = 621, + [772] = 615, + [773] = 677, + [774] = 623, + [775] = 679, + [776] = 624, + [777] = 666, + [778] = 608, + [779] = 625, + [780] = 626, + [781] = 674, + [782] = 673, + [783] = 610, + [784] = 685, + [785] = 628, + [786] = 684, + [787] = 686, + [788] = 688, + [789] = 676, + [790] = 687, + [791] = 689, + [792] = 690, + [793] = 691, + [794] = 692, + [795] = 693, + [796] = 667, + [797] = 669, + [798] = 665, + [799] = 672, + [800] = 677, + [801] = 679, + [802] = 668, + [803] = 675, + [804] = 680, + [805] = 694, + [806] = 611, + [807] = 630, + [808] = 631, + [809] = 632, [810] = 633, - [811] = 668, - [812] = 648, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 603, - [818] = 818, - [819] = 761, - [820] = 632, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 831, + [811] = 635, + [812] = 637, + [813] = 668, + [814] = 640, + [815] = 643, + [816] = 675, + [817] = 648, + [818] = 680, + [819] = 651, + [820] = 618, + [821] = 657, + [822] = 662, + [823] = 601, + [824] = 597, + [825] = 666, + [826] = 617, + [827] = 656, + [828] = 609, + [829] = 665, + [830] = 724, + [831] = 634, [832] = 832, [833] = 833, [834] = 834, @@ -3350,191 +3385,191 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [841] = 841, [842] = 842, [843] = 843, - [844] = 844, - [845] = 845, + [844] = 612, + [845] = 650, [846] = 846, - [847] = 847, - [848] = 690, + [847] = 650, + [848] = 634, [849] = 849, [850] = 850, - [851] = 765, - [852] = 603, - [853] = 632, - [854] = 648, - [855] = 826, - [856] = 828, + [851] = 695, + [852] = 852, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 855, [857] = 857, - [858] = 841, - [859] = 847, - [860] = 849, - [861] = 850, - [862] = 862, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 720, [863] = 863, - [864] = 842, - [865] = 828, - [866] = 857, - [867] = 847, - [868] = 828, - [869] = 857, - [870] = 828, - [871] = 828, - [872] = 872, - [873] = 862, - [874] = 874, - [875] = 857, - [876] = 831, - [877] = 832, - [878] = 840, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 852, + [871] = 864, + [872] = 867, + [873] = 873, + [874] = 843, + [875] = 866, + [876] = 846, + [877] = 877, + [878] = 878, [879] = 879, [880] = 880, [881] = 881, - [882] = 874, + [882] = 860, [883] = 883, - [884] = 863, - [885] = 883, - [886] = 886, - [887] = 660, - [888] = 598, - [889] = 889, - [890] = 656, - [891] = 658, - [892] = 653, - [893] = 660, - [894] = 661, - [895] = 662, - [896] = 669, - [897] = 671, - [898] = 672, - [899] = 673, - [900] = 674, - [901] = 675, - [902] = 676, - [903] = 677, - [904] = 678, - [905] = 679, - [906] = 680, - [907] = 667, - [908] = 654, - [909] = 664, - [910] = 666, - [911] = 668, - [912] = 655, - [913] = 663, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 590, - [918] = 663, - [919] = 656, - [920] = 658, - [921] = 653, - [922] = 590, - [923] = 662, - [924] = 669, - [925] = 671, - [926] = 672, - [927] = 673, - [928] = 674, - [929] = 675, - [930] = 676, - [931] = 677, - [932] = 678, - [933] = 679, - [934] = 680, - [935] = 667, - [936] = 654, - [937] = 664, - [938] = 666, - [939] = 668, - [940] = 655, - [941] = 941, - [942] = 656, - [943] = 658, - [944] = 653, - [945] = 660, - [946] = 661, - [947] = 662, - [948] = 669, - [949] = 671, - [950] = 672, - [951] = 673, - [952] = 674, - [953] = 675, - [954] = 676, - [955] = 677, - [956] = 678, - [957] = 679, - [958] = 680, - [959] = 667, - [960] = 654, - [961] = 664, - [962] = 666, - [963] = 668, - [964] = 655, - [965] = 827, - [966] = 663, - [967] = 661, - [968] = 968, - [969] = 969, - [970] = 968, - [971] = 971, - [972] = 968, - [973] = 968, - [974] = 968, - [975] = 975, - [976] = 975, - [977] = 968, - [978] = 826, - [979] = 979, - [980] = 979, - [981] = 981, + [884] = 884, + [885] = 885, + [886] = 878, + [887] = 887, + [888] = 863, + [889] = 873, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 869, + [894] = 855, + [895] = 860, + [896] = 869, + [897] = 612, + [898] = 865, + [899] = 855, + [900] = 860, + [901] = 855, + [902] = 877, + [903] = 855, + [904] = 890, + [905] = 693, + [906] = 597, + [907] = 907, + [908] = 674, + [909] = 673, + [910] = 685, + [911] = 684, + [912] = 686, + [913] = 688, + [914] = 676, + [915] = 687, + [916] = 689, + [917] = 690, + [918] = 691, + [919] = 692, + [920] = 693, + [921] = 667, + [922] = 669, + [923] = 665, + [924] = 672, + [925] = 677, + [926] = 679, + [927] = 668, + [928] = 675, + [929] = 680, + [930] = 694, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 597, + [935] = 666, + [936] = 674, + [937] = 673, + [938] = 685, + [939] = 684, + [940] = 686, + [941] = 688, + [942] = 676, + [943] = 687, + [944] = 666, + [945] = 690, + [946] = 691, + [947] = 692, + [948] = 693, + [949] = 667, + [950] = 669, + [951] = 665, + [952] = 672, + [953] = 677, + [954] = 679, + [955] = 668, + [956] = 675, + [957] = 680, + [958] = 694, + [959] = 674, + [960] = 673, + [961] = 685, + [962] = 684, + [963] = 686, + [964] = 688, + [965] = 676, + [966] = 687, + [967] = 689, + [968] = 690, + [969] = 691, + [970] = 692, + [971] = 667, + [972] = 669, + [973] = 665, + [974] = 672, + [975] = 677, + [976] = 679, + [977] = 668, + [978] = 675, + [979] = 680, + [980] = 694, + [981] = 603, [982] = 982, - [983] = 983, - [984] = 982, - [985] = 985, + [983] = 833, + [984] = 666, + [985] = 689, [986] = 986, - [987] = 986, - [988] = 982, - [989] = 989, - [990] = 983, - [991] = 983, + [987] = 987, + [988] = 987, + [989] = 986, + [990] = 986, + [991] = 986, [992] = 992, [993] = 993, - [994] = 994, - [995] = 993, - [996] = 994, - [997] = 993, - [998] = 994, - [999] = 993, - [1000] = 994, - [1001] = 994, - [1002] = 993, - [1003] = 993, - [1004] = 994, + [994] = 986, + [995] = 843, + [996] = 986, + [997] = 997, + [998] = 997, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 1002, + [1003] = 1003, + [1004] = 1002, [1005] = 1005, - [1006] = 1005, - [1007] = 1005, - [1008] = 1005, - [1009] = 1009, - [1010] = 1005, - [1011] = 1005, - [1012] = 1012, + [1006] = 1000, + [1007] = 1001, + [1008] = 1001, + [1009] = 1002, + [1010] = 1010, + [1011] = 1011, + [1012] = 1011, [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 1017, - [1018] = 1018, - [1019] = 1019, - [1020] = 1020, - [1021] = 1021, - [1022] = 1022, + [1014] = 1013, + [1015] = 1013, + [1016] = 1013, + [1017] = 1011, + [1018] = 1013, + [1019] = 1011, + [1020] = 1011, + [1021] = 1013, + [1022] = 1011, [1023] = 1023, - [1024] = 1024, - [1025] = 1025, - [1026] = 1026, - [1027] = 1027, - [1028] = 1028, + [1024] = 1023, + [1025] = 1023, + [1026] = 1023, + [1027] = 1023, + [1028] = 1023, [1029] = 1029, [1030] = 1030, [1031] = 1031, @@ -3548,12 +3583,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1039] = 1039, [1040] = 1040, [1041] = 1041, - [1042] = 88, + [1042] = 1042, [1043] = 1043, [1044] = 1044, [1045] = 1045, [1046] = 1046, - [1047] = 91, + [1047] = 1047, [1048] = 1048, [1049] = 1049, [1050] = 1050, @@ -3564,7 +3599,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 1058, + [1058] = 1055, [1059] = 1059, [1060] = 1060, [1061] = 1061, @@ -3573,7 +3608,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1064] = 1064, [1065] = 1065, [1066] = 1066, - [1067] = 1038, + [1067] = 1067, [1068] = 1068, [1069] = 1069, [1070] = 1070, @@ -3581,445 +3616,445 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1072] = 1072, [1073] = 1073, [1074] = 1074, - [1075] = 87, - [1076] = 1018, - [1077] = 1077, + [1075] = 1075, + [1076] = 1076, + [1077] = 101, [1078] = 1078, - [1079] = 1017, - [1080] = 1080, + [1079] = 1079, + [1080] = 110, [1081] = 1081, - [1082] = 1026, - [1083] = 1026, - [1084] = 1072, - [1085] = 89, + [1082] = 1082, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, [1086] = 1086, - [1087] = 1086, - [1088] = 1030, + [1087] = 1087, + [1088] = 1088, [1089] = 1089, - [1090] = 1032, - [1091] = 1033, + [1090] = 1090, + [1091] = 1091, [1092] = 1092, [1093] = 1093, [1094] = 1094, - [1095] = 1095, - [1096] = 1096, + [1095] = 1042, + [1096] = 104, [1097] = 1097, - [1098] = 1098, - [1099] = 1029, - [1100] = 634, - [1101] = 1101, - [1102] = 1031, + [1098] = 108, + [1099] = 1090, + [1100] = 1040, + [1101] = 1044, + [1102] = 1040, [1103] = 1103, - [1104] = 1029, - [1105] = 1089, + [1104] = 1104, + [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 1103, - [1109] = 1098, - [1110] = 1101, + [1108] = 1051, + [1109] = 1053, + [1110] = 1110, [1111] = 1111, - [1112] = 1111, - [1113] = 1092, - [1114] = 1093, - [1115] = 1095, - [1116] = 1096, - [1117] = 1107, - [1118] = 601, - [1119] = 638, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1114, + [1117] = 662, + [1118] = 606, + [1119] = 1048, [1120] = 1120, [1121] = 1121, - [1122] = 1122, - [1123] = 1123, - [1124] = 1120, + [1122] = 1120, + [1123] = 1121, + [1124] = 1124, [1125] = 1125, - [1126] = 1126, - [1127] = 1127, - [1128] = 1128, - [1129] = 1123, - [1130] = 1125, - [1131] = 1122, - [1132] = 1132, - [1133] = 1126, - [1134] = 1121, - [1135] = 1127, - [1136] = 1128, - [1137] = 1132, + [1126] = 1106, + [1127] = 1113, + [1128] = 1048, + [1129] = 1052, + [1130] = 1105, + [1131] = 1112, + [1132] = 1115, + [1133] = 1104, + [1134] = 1124, + [1135] = 1047, + [1136] = 1125, + [1137] = 659, [1138] = 1138, - [1139] = 1138, - [1140] = 1138, - [1141] = 1138, - [1142] = 1138, - [1143] = 1138, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, + [1142] = 1142, + [1143] = 1143, [1144] = 1144, - [1145] = 1145, + [1145] = 1142, [1146] = 1146, - [1147] = 1145, - [1148] = 1146, - [1149] = 1149, - [1150] = 1149, - [1151] = 1145, - [1152] = 1145, - [1153] = 1149, - [1154] = 1146, - [1155] = 1149, - [1156] = 1146, - [1157] = 1157, - [1158] = 1158, - [1159] = 1158, - [1160] = 1160, - [1161] = 1157, - [1162] = 1158, - [1163] = 1158, - [1164] = 1157, - [1165] = 1157, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 1169, - [1170] = 1170, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1173, - [1176] = 1174, + [1147] = 1146, + [1148] = 1138, + [1149] = 1143, + [1150] = 1139, + [1151] = 1151, + [1152] = 1144, + [1153] = 1141, + [1154] = 1151, + [1155] = 1140, + [1156] = 1156, + [1157] = 1156, + [1158] = 1156, + [1159] = 1156, + [1160] = 1156, + [1161] = 1156, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1163, + [1167] = 1164, + [1168] = 1165, + [1169] = 1163, + [1170] = 1165, + [1171] = 1164, + [1172] = 1164, + [1173] = 1165, + [1174] = 1163, + [1175] = 1175, + [1176] = 1176, [1177] = 1177, - [1178] = 1167, - [1179] = 1173, - [1180] = 1166, - [1181] = 1173, + [1178] = 1177, + [1179] = 1175, + [1180] = 1175, + [1181] = 1177, [1182] = 1177, - [1183] = 1177, - [1184] = 1167, - [1185] = 1177, - [1186] = 1167, - [1187] = 1166, - [1188] = 1166, - [1189] = 1174, - [1190] = 1174, - [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 1196, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, + [1183] = 1175, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1184, + [1190] = 1190, + [1191] = 1185, + [1192] = 1186, + [1193] = 1187, + [1194] = 1187, + [1195] = 1190, + [1196] = 1190, + [1197] = 1186, + [1198] = 1184, + [1199] = 1187, [1200] = 1200, [1201] = 1201, [1202] = 1202, [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1208, + [1204] = 1184, + [1205] = 1190, + [1206] = 1185, + [1207] = 1186, + [1208] = 1185, [1209] = 1209, [1210] = 1210, - [1211] = 1210, - [1212] = 1210, + [1211] = 1211, + [1212] = 1212, [1213] = 1213, - [1214] = 1210, + [1214] = 1214, [1215] = 1215, [1216] = 1216, - [1217] = 1210, + [1217] = 1217, [1218] = 1218, [1219] = 1219, - [1220] = 1210, + [1220] = 1220, [1221] = 1221, - [1222] = 1222, - [1223] = 1223, + [1222] = 1220, + [1223] = 1220, [1224] = 1224, [1225] = 1225, [1226] = 1226, [1227] = 1227, [1228] = 1228, [1229] = 1229, - [1230] = 1230, + [1230] = 1220, [1231] = 1231, [1232] = 1232, [1233] = 1233, - [1234] = 1222, - [1235] = 640, + [1234] = 1234, + [1235] = 1220, [1236] = 1236, - [1237] = 614, - [1238] = 1206, + [1237] = 1237, + [1238] = 1238, [1239] = 1239, - [1240] = 1240, + [1240] = 1220, [1241] = 1241, - [1242] = 1229, + [1242] = 1242, [1243] = 1243, - [1244] = 1240, + [1244] = 1244, [1245] = 1245, - [1246] = 1246, - [1247] = 1218, - [1248] = 1207, - [1249] = 1219, + [1246] = 613, + [1247] = 1245, + [1248] = 1248, + [1249] = 1249, [1250] = 1250, [1251] = 1251, - [1252] = 1252, + [1252] = 1228, [1253] = 1253, - [1254] = 1254, - [1255] = 608, - [1256] = 593, - [1257] = 1257, - [1258] = 610, - [1259] = 611, + [1254] = 1243, + [1255] = 1255, + [1256] = 1256, + [1257] = 1233, + [1258] = 1258, + [1259] = 1259, [1260] = 1260, [1261] = 1261, [1262] = 1262, - [1263] = 621, - [1264] = 622, - [1265] = 623, + [1263] = 1229, + [1264] = 1234, + [1265] = 1226, [1266] = 1266, - [1267] = 1267, - [1268] = 1261, - [1269] = 624, - [1270] = 592, + [1267] = 655, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, [1271] = 1271, [1272] = 1272, - [1273] = 1273, - [1274] = 614, - [1275] = 593, - [1276] = 1276, + [1273] = 621, + [1274] = 621, + [1275] = 622, + [1276] = 631, [1277] = 1277, - [1278] = 1278, + [1278] = 622, [1279] = 1279, - [1280] = 1280, - [1281] = 610, + [1280] = 631, + [1281] = 632, [1282] = 1282, [1283] = 1283, - [1284] = 1284, + [1284] = 632, [1285] = 1285, - [1286] = 1284, + [1286] = 633, [1287] = 1287, - [1288] = 1260, - [1289] = 1273, - [1290] = 611, - [1291] = 1291, + [1288] = 635, + [1289] = 1283, + [1290] = 1290, + [1291] = 613, [1292] = 1292, - [1293] = 1293, - [1294] = 621, - [1295] = 1279, - [1296] = 1262, + [1293] = 1287, + [1294] = 633, + [1295] = 635, + [1296] = 617, [1297] = 1297, - [1298] = 1271, - [1299] = 622, - [1300] = 623, - [1301] = 1301, - [1302] = 624, - [1303] = 1260, + [1298] = 1298, + [1299] = 1299, + [1300] = 1300, + [1301] = 655, + [1302] = 1302, + [1303] = 1303, [1304] = 1304, - [1305] = 1305, - [1306] = 1267, - [1307] = 1282, - [1308] = 592, - [1309] = 1309, - [1310] = 1293, + [1305] = 649, + [1306] = 1283, + [1307] = 1307, + [1308] = 1308, + [1309] = 1283, + [1310] = 649, [1311] = 1311, - [1312] = 608, - [1313] = 1279, - [1314] = 1266, - [1315] = 1279, - [1316] = 640, + [1312] = 617, + [1313] = 1290, + [1314] = 1298, + [1315] = 1298, + [1316] = 1316, [1317] = 1317, - [1318] = 1260, - [1319] = 1287, + [1318] = 1318, + [1319] = 1319, [1320] = 1320, - [1321] = 1321, - [1322] = 1322, - [1323] = 1323, - [1324] = 1253, - [1325] = 1325, + [1321] = 1298, + [1322] = 1271, + [1323] = 1311, + [1324] = 1308, + [1325] = 601, [1326] = 1326, - [1327] = 1327, + [1327] = 1285, [1328] = 1328, - [1329] = 1329, - [1330] = 1330, - [1331] = 1331, - [1332] = 1330, - [1333] = 1326, - [1334] = 1331, - [1335] = 1335, + [1329] = 601, + [1330] = 1326, + [1331] = 1277, + [1332] = 1332, + [1333] = 1333, + [1334] = 1334, + [1335] = 1282, [1336] = 1336, [1337] = 1337, - [1338] = 1338, - [1339] = 1330, - [1340] = 1251, + [1338] = 1232, + [1339] = 1339, + [1340] = 1340, [1341] = 1341, [1342] = 1342, - [1343] = 1322, - [1344] = 1204, + [1343] = 1343, + [1344] = 1344, [1345] = 1345, - [1346] = 1227, + [1346] = 1328, [1347] = 1347, - [1348] = 1348, - [1349] = 1328, - [1350] = 1328, - [1351] = 1329, - [1352] = 1329, + [1348] = 1340, + [1349] = 1349, + [1350] = 1341, + [1351] = 1351, + [1352] = 1352, [1353] = 1353, [1354] = 1354, [1355] = 1355, [1356] = 1356, - [1357] = 1330, + [1357] = 1357, [1358] = 1358, [1359] = 1359, [1360] = 1360, - [1361] = 1328, + [1361] = 1351, [1362] = 1362, - [1363] = 1329, - [1364] = 1331, + [1363] = 1355, + [1364] = 1349, [1365] = 1365, - [1366] = 1241, - [1367] = 1353, - [1368] = 1362, - [1369] = 1331, + [1366] = 1366, + [1367] = 1347, + [1368] = 1337, + [1369] = 1369, [1370] = 1370, [1371] = 1371, [1372] = 1372, - [1373] = 1345, - [1374] = 1336, - [1375] = 1375, + [1373] = 1373, + [1374] = 1374, + [1375] = 1365, [1376] = 1376, - [1377] = 1377, - [1378] = 1378, - [1379] = 1224, + [1377] = 1365, + [1378] = 1339, + [1379] = 1248, [1380] = 1380, [1381] = 1381, - [1382] = 1347, + [1382] = 1382, [1383] = 1383, [1384] = 1384, - [1385] = 1385, - [1386] = 1378, - [1387] = 1376, - [1388] = 1381, + [1385] = 1340, + [1386] = 1347, + [1387] = 1341, + [1388] = 1388, [1389] = 1389, - [1390] = 1390, - [1391] = 1391, - [1392] = 1360, - [1393] = 1323, + [1390] = 1372, + [1391] = 1376, + [1392] = 1392, + [1393] = 1393, [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 1397, - [1398] = 1398, - [1399] = 1399, + [1397] = 1365, + [1398] = 1373, + [1399] = 1343, [1400] = 1400, - [1401] = 1401, - [1402] = 1402, - [1403] = 411, - [1404] = 1404, - [1405] = 1405, - [1406] = 1402, + [1401] = 1340, + [1402] = 1341, + [1403] = 1403, + [1404] = 1352, + [1405] = 1250, + [1406] = 1406, [1407] = 1407, - [1408] = 1408, - [1409] = 1409, + [1408] = 1227, + [1409] = 1381, [1410] = 1410, - [1411] = 1411, - [1412] = 1412, + [1411] = 1396, + [1412] = 1251, [1413] = 1413, - [1414] = 1414, + [1414] = 1347, [1415] = 1415, [1416] = 1416, [1417] = 1417, [1418] = 1418, [1419] = 1419, - [1420] = 1416, + [1420] = 1420, [1421] = 1421, [1422] = 1422, [1423] = 1423, [1424] = 1424, [1425] = 1425, - [1426] = 1426, - [1427] = 1427, - [1428] = 1424, - [1429] = 1429, + [1426] = 1421, + [1427] = 1424, + [1428] = 1428, + [1429] = 1425, [1430] = 1430, - [1431] = 1431, - [1432] = 1432, + [1431] = 1423, + [1432] = 1418, [1433] = 1433, [1434] = 1434, [1435] = 1435, [1436] = 1436, - [1437] = 1405, - [1438] = 1432, + [1437] = 1437, + [1438] = 1419, [1439] = 1439, [1440] = 1440, - [1441] = 1422, + [1441] = 1441, [1442] = 1442, [1443] = 1443, - [1444] = 1424, - [1445] = 1432, + [1444] = 1444, + [1445] = 1445, [1446] = 1446, - [1447] = 1447, + [1447] = 1436, [1448] = 1448, [1449] = 1449, [1450] = 1450, - [1451] = 1430, - [1452] = 1419, + [1451] = 1451, + [1452] = 1424, [1453] = 1453, - [1454] = 1454, - [1455] = 1436, - [1456] = 1456, - [1457] = 1454, - [1458] = 1402, + [1454] = 1440, + [1455] = 1441, + [1456] = 1450, + [1457] = 1430, + [1458] = 1458, [1459] = 1459, - [1460] = 1460, - [1461] = 1449, + [1460] = 1417, + [1461] = 1423, [1462] = 1462, [1463] = 1463, - [1464] = 1418, - [1465] = 1436, + [1464] = 1464, + [1465] = 417, [1466] = 1466, - [1467] = 1422, - [1468] = 1468, + [1467] = 1467, + [1468] = 1415, [1469] = 1469, [1470] = 1470, - [1471] = 1399, + [1471] = 1428, [1472] = 1472, - [1473] = 1401, - [1474] = 1474, - [1475] = 1475, - [1476] = 1466, - [1477] = 1477, - [1478] = 1404, - [1479] = 1462, - [1480] = 1405, - [1481] = 1472, + [1473] = 1433, + [1474] = 1434, + [1475] = 1430, + [1476] = 1436, + [1477] = 1458, + [1478] = 1478, + [1479] = 1479, + [1480] = 1480, + [1481] = 1464, [1482] = 1482, - [1483] = 1429, - [1484] = 1413, - [1485] = 1460, - [1486] = 1486, - [1487] = 1418, + [1483] = 1483, + [1484] = 1484, + [1485] = 1436, + [1486] = 1437, + [1487] = 1487, [1488] = 1488, [1489] = 1489, - [1490] = 1450, - [1491] = 1409, - [1492] = 1400, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, [1493] = 1493, - [1494] = 1411, + [1494] = 1494, [1495] = 1495, - [1496] = 1424, - [1497] = 1497, - [1498] = 1440, - [1499] = 1449, - [1500] = 1500, + [1496] = 1466, + [1497] = 1433, + [1498] = 1434, + [1499] = 1499, + [1500] = 1437, [1501] = 1501, - [1502] = 1502, + [1502] = 1484, [1503] = 1503, [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1503, + [1505] = 1420, + [1506] = 1488, + [1507] = 1507, [1508] = 1508, - [1509] = 1504, + [1509] = 1421, [1510] = 1510, - [1511] = 1511, + [1511] = 1507, [1512] = 1512, - [1513] = 1513, + [1513] = 1472, [1514] = 1514, [1515] = 1515, [1516] = 1516, @@ -4027,20 +4062,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1518] = 1518, [1519] = 1519, [1520] = 1520, - [1521] = 616, - [1522] = 617, - [1523] = 1506, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, [1524] = 1524, [1525] = 1525, [1526] = 1526, - [1527] = 1511, + [1527] = 1527, [1528] = 1528, [1529] = 1529, [1530] = 1530, [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 1512, + [1534] = 1534, [1535] = 1535, [1536] = 1536, [1537] = 1537, @@ -4049,221 +4084,221 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1540] = 1540, [1541] = 1541, [1542] = 1542, - [1543] = 1543, + [1543] = 1514, [1544] = 1544, [1545] = 1545, [1546] = 1546, [1547] = 1547, - [1548] = 1389, - [1549] = 1511, - [1550] = 1512, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, [1551] = 1551, [1552] = 1552, [1553] = 1553, [1554] = 1554, - [1555] = 1519, + [1555] = 1555, [1556] = 1556, - [1557] = 1542, + [1557] = 1557, [1558] = 1558, [1559] = 1559, - [1560] = 1560, - [1561] = 1561, + [1560] = 1556, + [1561] = 1520, [1562] = 1562, [1563] = 1563, [1564] = 1564, [1565] = 1565, [1566] = 1566, [1567] = 1567, - [1568] = 1568, + [1568] = 661, [1569] = 1569, [1570] = 1570, [1571] = 1571, [1572] = 1572, - [1573] = 1501, - [1574] = 1502, + [1573] = 1573, + [1574] = 1574, [1575] = 1575, [1576] = 1576, [1577] = 1577, [1578] = 1578, [1579] = 1579, [1580] = 1580, - [1581] = 1581, - [1582] = 1582, - [1583] = 1529, - [1584] = 1539, - [1585] = 1540, - [1586] = 1518, - [1587] = 1587, - [1588] = 1588, + [1581] = 1545, + [1582] = 1523, + [1583] = 1525, + [1584] = 1536, + [1585] = 1537, + [1586] = 1538, + [1587] = 1569, + [1588] = 1580, [1589] = 1589, [1590] = 1590, [1591] = 1591, [1592] = 1592, - [1593] = 1552, - [1594] = 1559, - [1595] = 1561, - [1596] = 1562, - [1597] = 1565, - [1598] = 1568, - [1599] = 1569, - [1600] = 1570, - [1601] = 1572, - [1602] = 1575, - [1603] = 1576, - [1604] = 1577, - [1605] = 1605, + [1593] = 1593, + [1594] = 1515, + [1595] = 1595, + [1596] = 1570, + [1597] = 1597, + [1598] = 1564, + [1599] = 1599, + [1600] = 1600, + [1601] = 1601, + [1602] = 1602, + [1603] = 1603, + [1604] = 1604, + [1605] = 1541, [1606] = 1606, - [1607] = 1537, - [1608] = 1551, + [1607] = 1607, + [1608] = 1604, [1609] = 1609, [1610] = 1610, - [1611] = 1611, - [1612] = 1612, - [1613] = 1613, + [1611] = 1575, + [1612] = 1576, + [1613] = 1577, [1614] = 1614, - [1615] = 1558, - [1616] = 1564, - [1617] = 1571, - [1618] = 1578, - [1619] = 1579, - [1620] = 1620, - [1621] = 1589, - [1622] = 1622, + [1615] = 1615, + [1616] = 1616, + [1617] = 1614, + [1618] = 1615, + [1619] = 1524, + [1620] = 1520, + [1621] = 1519, + [1622] = 1521, [1623] = 1623, [1624] = 1624, [1625] = 1625, [1626] = 1626, - [1627] = 1605, - [1628] = 1622, - [1629] = 1623, - [1630] = 1630, + [1627] = 1539, + [1628] = 1628, + [1629] = 1629, + [1630] = 1616, [1631] = 1631, - [1632] = 1624, + [1632] = 1632, [1633] = 1633, - [1634] = 1634, - [1635] = 1635, - [1636] = 1636, - [1637] = 1637, + [1634] = 1562, + [1635] = 1565, + [1636] = 1522, + [1637] = 1589, [1638] = 1638, [1639] = 1639, [1640] = 1640, [1641] = 1641, [1642] = 1642, - [1643] = 1524, - [1644] = 1515, - [1645] = 1530, + [1643] = 1643, + [1644] = 1599, + [1645] = 1645, [1646] = 1646, [1647] = 1647, [1648] = 1648, - [1649] = 1649, + [1649] = 1542, [1650] = 1650, - [1651] = 1651, + [1651] = 1593, [1652] = 1652, - [1653] = 1653, + [1653] = 1554, [1654] = 1654, - [1655] = 1655, - [1656] = 1554, - [1657] = 1517, + [1655] = 1652, + [1656] = 1656, + [1657] = 1657, [1658] = 1658, [1659] = 1659, - [1660] = 1660, - [1661] = 1661, + [1660] = 1521, + [1661] = 1552, [1662] = 1662, - [1663] = 1560, + [1663] = 1663, [1664] = 1664, - [1665] = 1531, + [1665] = 1662, [1666] = 1666, [1667] = 1667, - [1668] = 1520, - [1669] = 1669, - [1670] = 1563, - [1671] = 1532, - [1672] = 1533, + [1668] = 1528, + [1669] = 1654, + [1670] = 1670, + [1671] = 1671, + [1672] = 1567, [1673] = 1673, [1674] = 1674, - [1675] = 1536, - [1676] = 1676, + [1675] = 1527, + [1676] = 1578, [1677] = 1677, - [1678] = 1678, - [1679] = 1626, + [1678] = 1656, + [1679] = 1679, [1680] = 1680, - [1681] = 1681, - [1682] = 1682, - [1683] = 1683, - [1684] = 1684, - [1685] = 1685, - [1686] = 1686, + [1681] = 1407, + [1682] = 1591, + [1683] = 1639, + [1684] = 1640, + [1685] = 1646, + [1686] = 1579, [1687] = 1687, - [1688] = 1688, - [1689] = 1689, - [1690] = 1556, - [1691] = 1646, + [1688] = 1590, + [1689] = 1610, + [1690] = 1595, + [1691] = 1632, [1692] = 1692, - [1693] = 1647, - [1694] = 1580, - [1695] = 1695, - [1696] = 1566, - [1697] = 1535, + [1693] = 1520, + [1694] = 1529, + [1695] = 1633, + [1696] = 1638, + [1697] = 1697, [1698] = 1698, - [1699] = 1699, - [1700] = 1700, - [1701] = 1650, - [1702] = 1702, - [1703] = 1703, - [1704] = 1630, - [1705] = 1631, - [1706] = 1633, - [1707] = 1634, + [1699] = 1607, + [1700] = 1657, + [1701] = 1680, + [1702] = 1521, + [1703] = 1597, + [1704] = 1518, + [1705] = 1530, + [1706] = 1549, + [1707] = 1641, [1708] = 1708, - [1709] = 1587, - [1710] = 1553, - [1711] = 1635, - [1712] = 1609, - [1713] = 1588, - [1714] = 1567, - [1715] = 1610, + [1709] = 1517, + [1710] = 1544, + [1711] = 1551, + [1712] = 1558, + [1713] = 1603, + [1714] = 1714, + [1715] = 625, [1716] = 1716, - [1717] = 1651, - [1718] = 1611, - [1719] = 1636, - [1720] = 1637, - [1721] = 1638, - [1722] = 1722, - [1723] = 1652, - [1724] = 1724, - [1725] = 1653, - [1726] = 1581, - [1727] = 1727, - [1728] = 1728, + [1717] = 1624, + [1718] = 1606, + [1719] = 1663, + [1720] = 1720, + [1721] = 1664, + [1722] = 1658, + [1723] = 1723, + [1724] = 1602, + [1725] = 1725, + [1726] = 1726, + [1727] = 1650, + [1728] = 1645, [1729] = 1729, - [1730] = 1582, + [1730] = 1600, [1731] = 1731, [1732] = 1732, - [1733] = 1511, + [1733] = 1659, [1734] = 1734, - [1735] = 1639, - [1736] = 1512, - [1737] = 639, - [1738] = 1510, - [1739] = 1612, - [1740] = 1613, - [1741] = 1614, - [1742] = 1640, - [1743] = 1641, - [1744] = 1642, - [1745] = 1590, - [1746] = 1684, + [1735] = 1735, + [1736] = 1736, + [1737] = 1737, + [1738] = 1738, + [1739] = 1739, + [1740] = 1573, + [1741] = 1601, + [1742] = 1742, + [1743] = 1743, + [1744] = 1625, + [1745] = 1563, + [1746] = 1592, [1747] = 1747, - [1748] = 1748, - [1749] = 1749, - [1750] = 1748, + [1748] = 626, + [1749] = 1574, + [1750] = 1750, [1751] = 1751, [1752] = 1752, [1753] = 1753, [1754] = 1754, [1755] = 1755, [1756] = 1756, - [1757] = 1757, + [1757] = 1559, [1758] = 1758, [1759] = 1759, [1760] = 1760, @@ -4273,109 +4308,119 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1764] = 1764, [1765] = 1765, [1766] = 1766, - [1767] = 1342, + [1767] = 1767, [1768] = 1768, [1769] = 1769, [1770] = 1770, - [1771] = 1756, + [1771] = 1771, [1772] = 1772, [1773] = 1773, [1774] = 1774, [1775] = 1775, - [1776] = 1762, - [1777] = 1756, - [1778] = 1763, - [1779] = 1763, - [1780] = 1768, - [1781] = 1781, + [1776] = 1774, + [1777] = 1777, + [1778] = 1778, + [1779] = 1779, + [1780] = 1780, + [1781] = 1774, [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 1769, + [1783] = 1768, + [1784] = 1771, + [1785] = 1771, [1786] = 1786, - [1787] = 1770, - [1788] = 1788, - [1789] = 1789, - [1790] = 1762, - [1791] = 1791, - [1792] = 1792, + [1787] = 1763, + [1788] = 1786, + [1789] = 1768, + [1790] = 1790, + [1791] = 1762, + [1792] = 1766, [1793] = 1793, - [1794] = 1758, - [1795] = 1764, + [1794] = 1794, + [1795] = 1793, [1796] = 1796, [1797] = 1797, - [1798] = 1756, + [1798] = 1393, [1799] = 1799, [1800] = 1800, [1801] = 1801, - [1802] = 1762, - [1803] = 1763, + [1802] = 1802, + [1803] = 1790, [1804] = 1804, [1805] = 1805, - [1806] = 1806, - [1807] = 1807, - [1808] = 1770, - [1809] = 1756, - [1810] = 1768, - [1811] = 1804, - [1812] = 1760, - [1813] = 1782, - [1814] = 1799, - [1815] = 1762, - [1816] = 1763, - [1817] = 1804, - [1818] = 1768, - [1819] = 1768, - [1820] = 1781, - [1821] = 1782, - [1822] = 1770, - [1823] = 1781, - [1824] = 1782, - [1825] = 1825, - [1826] = 1804, - [1827] = 1781, - [1828] = 1828, - [1829] = 1769, - [1830] = 1756, + [1806] = 1786, + [1807] = 1768, + [1808] = 1763, + [1809] = 1809, + [1810] = 1778, + [1811] = 1811, + [1812] = 1778, + [1813] = 1768, + [1814] = 1775, + [1815] = 1815, + [1816] = 1816, + [1817] = 1800, + [1818] = 1818, + [1819] = 1819, + [1820] = 1790, + [1821] = 1821, + [1822] = 1778, + [1823] = 1766, + [1824] = 1824, + [1825] = 1763, + [1826] = 1826, + [1827] = 1827, + [1828] = 1778, + [1829] = 1829, + [1830] = 1830, [1831] = 1831, - [1832] = 1769, - [1833] = 1833, - [1834] = 1782, + [1832] = 1763, + [1833] = 1768, + [1834] = 1762, [1835] = 1835, - [1836] = 1836, - [1837] = 1837, - [1838] = 1831, - [1839] = 1839, - [1840] = 1840, - [1841] = 1749, + [1836] = 1790, + [1837] = 1762, + [1838] = 1838, + [1839] = 1802, + [1840] = 1766, + [1841] = 1766, [1842] = 1842, - [1843] = 1789, - [1844] = 1844, - [1845] = 1765, - [1846] = 1799, + [1843] = 1843, + [1844] = 1793, + [1845] = 1845, + [1846] = 1846, [1847] = 1847, [1848] = 1848, - [1849] = 1763, + [1849] = 1849, [1850] = 1850, - [1851] = 1768, - [1852] = 1835, - [1853] = 1853, - [1854] = 1854, + [1851] = 1793, + [1852] = 1774, + [1853] = 1761, + [1854] = 1794, [1855] = 1855, - [1856] = 1781, - [1857] = 1762, - [1858] = 1858, - [1859] = 1782, + [1856] = 1856, + [1857] = 1845, + [1858] = 1763, + [1859] = 1824, [1860] = 1860, - [1861] = 1799, - [1862] = 1862, + [1861] = 1843, + [1862] = 1765, [1863] = 1863, [1864] = 1864, - [1865] = 1754, - [1866] = 1866, - [1867] = 1858, - [1868] = 1847, - [1869] = 1781, + [1865] = 1790, + [1866] = 1805, + [1867] = 1778, + [1868] = 1868, + [1869] = 1869, + [1870] = 1771, + [1871] = 1790, + [1872] = 1872, + [1873] = 1873, + [1874] = 1762, + [1875] = 1766, + [1876] = 1786, + [1877] = 1848, + [1878] = 1847, + [1879] = 1762, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -6652,7 +6697,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 124: - ACCEPT_TOKEN(sym_null); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 125: if (lookahead == 'r') ADVANCE(157); @@ -6670,13 +6715,13 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(161); END_STATE(); case 130: - ACCEPT_TOKEN(sym_this); + ACCEPT_TOKEN(anon_sym_this); END_STATE(); case 131: if (lookahead == 'w') ADVANCE(162); END_STATE(); case 132: - ACCEPT_TOKEN(sym_true); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 133: if (lookahead == 'o') ADVANCE(163); @@ -6736,7 +6781,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(173); END_STATE(); case 152: - ACCEPT_TOKEN(sym_false); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 153: if (lookahead == 'l') ADVANCE(174); @@ -6757,7 +6802,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(179); END_STATE(); case 159: - ACCEPT_TOKEN(sym_super); + ACCEPT_TOKEN(anon_sym_super); END_STATE(); case 160: if (lookahead == 'h') ADVANCE(180); @@ -6892,39 +6937,39 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [4] = {.lex_state = 5, .external_lex_state = 2}, [5] = {.lex_state = 5, .external_lex_state = 2}, [6] = {.lex_state = 5, .external_lex_state = 2}, - [7] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, - [8] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, - [9] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [10] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [7] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, + [8] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 3}, + [9] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 3}, + [10] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 3}, [11] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [12] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [13] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [14] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [15] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, - [16] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, + [15] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 3}, + [16] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 3}, [17] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [18] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [18] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [19] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [20] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [21] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [22] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [23] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [24] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [25] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [26] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [27] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [24] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 3}, + [25] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 3}, + [26] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [27] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [28] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [29] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [29] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [30] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [31] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, - [32] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, - [33] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, - [34] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, - [35] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, - [36] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, - [37] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, - [38] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, - [39] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [31] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [32] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 3}, + [33] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 3}, + [34] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 3}, + [35] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [36] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 3}, + [37] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 3}, + [38] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 3}, + [39] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, [40] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [41] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [42] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, @@ -6936,14 +6981,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [48] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [49] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [50] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [51] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, + [51] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [52] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [53] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [54] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [55] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [56] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [57] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [58] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [58] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 3}, [59] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [60] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [61] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, @@ -6956,136 +7001,136 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [68] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [69] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [70] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [71] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [72] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [71] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 3}, + [72] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [73] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, [74] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, - [75] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, - [76] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, - [77] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, - [78] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, - [79] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, - [80] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 2}, - [81] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 2}, - [82] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 2}, - [83] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 2}, - [84] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 2}, - [85] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 2}, - [86] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [87] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [88] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [89] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [90] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [91] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [92] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [93] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [94] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [95] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [96] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [97] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [98] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [99] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [100] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, - [101] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, - [102] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [75] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 3}, + [76] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 3}, + [77] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [78] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [79] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 3}, + [80] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 3}, + [81] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 3}, + [82] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 3}, + [83] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 3}, + [84] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 3}, + [85] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 3}, + [86] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 5}, + [87] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 5}, + [88] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 5}, + [89] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 5}, + [90] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [91] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [92] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [93] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [94] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [95] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [96] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [97] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 5}, + [98] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, + [99] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 5}, + [100] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [101] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [102] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, [103] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, - [104] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, - [105] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [106] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [107] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [108] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [109] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [110] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [111] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [112] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, - [113] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, - [114] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, - [115] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [116] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [117] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [118] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [119] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [120] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [121] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [122] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [123] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [124] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [125] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [126] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [127] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [128] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [104] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [105] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [106] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [107] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [108] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [109] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [110] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [111] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [112] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [113] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [114] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [115] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [116] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [117] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [118] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [119] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [120] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [121] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 7}, + [122] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [123] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [124] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [125] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [126] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [127] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [128] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, [129] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [130] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [131] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [132] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [133] = {.lex_state = 3, .external_lex_state = 3}, - [134] = {.lex_state = 3, .external_lex_state = 3}, - [135] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [136] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, - [137] = {.lex_state = 3, .external_lex_state = 3}, - [138] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [139] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [140] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [141] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [142] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 7}, - [143] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [144] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [145] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [146] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [147] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [148] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [149] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [150] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [151] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [152] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [153] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [154] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [155] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [132] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, + [133] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [134] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [135] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [136] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [137] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [138] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [139] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 6}, + [140] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [141] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [142] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [143] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [144] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [145] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [146] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [147] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [148] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [149] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [150] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [151] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [152] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [153] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [154] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [155] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, [156] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [157] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 7}, + [157] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [158] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [159] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [160] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [161] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [162] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [159] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [160] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [161] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [162] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, [163] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [164] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [165] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, - [166] = {.lex_state = 3, .external_lex_state = 3}, - [167] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [168] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [169] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [170] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [164] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [165] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [166] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [167] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [168] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [169] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [170] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, [171] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [172] = {.lex_state = 3, .external_lex_state = 3}, - [173] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [174] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [175] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [176] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [177] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [178] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [179] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [172] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [173] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [174] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [175] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [176] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [177] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [178] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [179] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [180] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [181] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [182] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [181] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [182] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, [183] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [184] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [185] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [186] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [187] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [188] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [189] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [190] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [191] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [192] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 7}, - [193] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [194] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [195] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [196] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [197] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [198] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [199] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [200] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [187] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [188] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [189] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [190] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [191] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [192] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [193] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [194] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [195] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [196] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [197] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [198] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [199] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [200] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [201] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [202] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [203] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, @@ -7093,155 +7138,155 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [205] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [206] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [207] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [208] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [208] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, [209] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [210] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 7}, - [211] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [210] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [211] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, [212] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [213] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, - [214] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [215] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [216] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, - [217] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [218] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [219] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [220] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [221] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [222] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [223] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [224] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [225] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [226] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [227] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [228] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [229] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [230] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [231] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [232] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [233] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [234] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [235] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [236] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [237] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [238] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [239] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [240] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [241] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [242] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [243] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [244] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [245] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [246] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [247] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [248] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [249] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [250] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [251] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [252] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [253] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [254] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [255] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [256] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [257] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [258] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [259] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [260] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [261] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [262] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [263] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [264] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [265] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [266] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [267] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [268] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [269] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [270] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [271] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [272] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [273] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [274] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [275] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [276] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [277] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [278] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [279] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [280] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [281] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [282] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [283] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [284] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [285] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [286] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [287] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [288] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [289] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [290] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [291] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [292] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [293] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [294] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [295] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [296] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [297] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [298] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [299] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [300] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [301] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [302] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [303] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [304] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [305] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [306] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [307] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [308] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [309] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [310] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [311] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [312] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [313] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [314] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [315] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [316] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [317] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [318] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [319] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [320] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [321] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [322] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [323] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [324] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [325] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [326] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [327] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [328] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [329] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [330] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [331] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [332] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [333] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [334] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [335] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [336] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [337] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [338] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [339] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [340] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [341] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [342] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [343] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [344] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [345] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [346] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [347] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [348] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [349] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [350] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [351] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [352] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [353] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [354] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [355] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, - [356] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [213] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [214] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [215] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [216] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [217] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [218] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [219] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [220] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [221] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [222] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [223] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [224] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [225] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [226] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [227] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [228] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [229] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [230] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [231] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [232] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [233] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [234] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [235] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [236] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [237] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [238] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [239] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [240] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [241] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [242] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [243] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [244] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [245] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [246] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [247] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [248] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [249] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [250] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [251] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [252] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [253] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [254] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [255] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [256] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [257] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [258] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [259] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [260] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [261] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [262] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [263] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [264] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [265] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [266] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [267] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [268] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [269] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [270] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [271] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [272] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [273] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [274] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [275] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [276] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [277] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [278] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [279] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [280] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [281] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [282] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [283] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [284] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [285] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [286] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [287] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [288] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [289] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [290] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [291] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [292] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [293] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [294] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [295] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [296] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [297] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [298] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [299] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [300] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [301] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [302] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [303] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [304] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [305] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [306] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [307] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [308] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [309] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [310] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [311] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [312] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [313] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [314] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [315] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [316] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [317] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [318] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [319] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [320] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [321] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [322] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [323] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [324] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [325] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [326] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [327] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [328] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [329] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [330] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [331] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [332] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [333] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [334] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [335] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [336] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [337] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [338] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [339] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [340] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [341] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [342] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [343] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [344] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [345] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [346] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [347] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [348] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [349] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [350] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [351] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [352] = {.lex_state = 3, .external_lex_state = 3}, + [353] = {.lex_state = 3, .external_lex_state = 3}, + [354] = {.lex_state = 3, .external_lex_state = 3}, + [355] = {.lex_state = 3, .external_lex_state = 3}, + [356] = {.lex_state = 3, .external_lex_state = 3}, [357] = {.lex_state = 3, .external_lex_state = 3}, [358] = {.lex_state = 3, .external_lex_state = 3}, [359] = {.lex_state = 3, .external_lex_state = 3}, @@ -7253,57 +7298,57 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [365] = {.lex_state = 3, .external_lex_state = 3}, [366] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, [367] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, - [368] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, - [369] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 10}, + [368] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [369] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, [370] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, - [371] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, + [371] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, [372] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, - [373] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, - [374] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 10}, + [373] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, + [374] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 10}, [375] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, - [376] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, - [377] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, - [378] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, - [379] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, - [380] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, - [381] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 10}, + [376] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, + [377] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 10}, + [378] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, + [379] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 10}, + [380] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, + [381] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, [382] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, - [383] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [383] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, [384] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 10}, - [385] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 10}, - [386] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [385] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [386] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 10}, [387] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, - [388] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, - [389] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [388] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [389] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, [390] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, - [391] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, - [392] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, - [393] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [391] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [392] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [393] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, [394] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, - [395] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, - [396] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, - [397] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, + [395] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, + [396] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [397] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, [398] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, [399] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, - [400] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, - [401] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [400] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [401] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, [402] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, [403] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, [404] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, [405] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, - [406] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, - [407] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, - [408] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [406] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [407] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [408] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, [409] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, [410] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, - [411] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, - [412] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [411] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [412] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, [413] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, - [414] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, - [415] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [414] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, + [415] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, [416] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, - [417] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, - [418] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [417] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [418] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, [419] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, [420] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, [421] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, @@ -7375,24 +7420,24 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [487] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, [488] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, [489] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, - [490] = {.lex_state = 3, .external_lex_state = 3}, + [490] = {.lex_state = 3, .external_lex_state = 4}, [491] = {.lex_state = 3, .external_lex_state = 4}, - [492] = {.lex_state = 3, .external_lex_state = 3}, - [493] = {.lex_state = 3, .external_lex_state = 4}, - [494] = {.lex_state = 3, .external_lex_state = 4}, + [492] = {.lex_state = 3, .external_lex_state = 4}, + [493] = {.lex_state = 3, .external_lex_state = 3}, + [494] = {.lex_state = 3, .external_lex_state = 3}, [495] = {.lex_state = 3, .external_lex_state = 4}, - [496] = {.lex_state = 3, .external_lex_state = 4}, + [496] = {.lex_state = 3, .external_lex_state = 3}, [497] = {.lex_state = 3, .external_lex_state = 4}, [498] = {.lex_state = 3, .external_lex_state = 4}, - [499] = {.lex_state = 3, .external_lex_state = 3}, + [499] = {.lex_state = 3, .external_lex_state = 4}, [500] = {.lex_state = 3, .external_lex_state = 4}, - [501] = {.lex_state = 3, .external_lex_state = 4}, + [501] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, [502] = {.lex_state = 3, .external_lex_state = 4}, [503] = {.lex_state = 3, .external_lex_state = 4}, [504] = {.lex_state = 3, .external_lex_state = 4}, - [505] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [505] = {.lex_state = 3, .external_lex_state = 4}, [506] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [507] = {.lex_state = 3, .external_lex_state = 4}, + [507] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [508] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [509] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [510] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, @@ -7403,49 +7448,49 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [515] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [516] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [517] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [518] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [518] = {.lex_state = 3, .external_lex_state = 4}, [519] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [520] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [520] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, [521] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [522] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [523] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [524] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [524] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [525] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [526] = {.lex_state = 3, .external_lex_state = 3}, + [526] = {.lex_state = 3, .external_lex_state = 4}, [527] = {.lex_state = 3, .external_lex_state = 3}, [528] = {.lex_state = 3, .external_lex_state = 3}, [529] = {.lex_state = 3, .external_lex_state = 3}, [530] = {.lex_state = 3, .external_lex_state = 3}, - [531] = {.lex_state = 3, .external_lex_state = 3}, + [531] = {.lex_state = 3, .external_lex_state = 4}, [532] = {.lex_state = 3, .external_lex_state = 4}, [533] = {.lex_state = 3, .external_lex_state = 4}, [534] = {.lex_state = 3, .external_lex_state = 3}, [535] = {.lex_state = 3, .external_lex_state = 3}, - [536] = {.lex_state = 3, .external_lex_state = 4}, + [536] = {.lex_state = 3, .external_lex_state = 3}, [537] = {.lex_state = 3, .external_lex_state = 3}, [538] = {.lex_state = 3, .external_lex_state = 3}, - [539] = {.lex_state = 3, .external_lex_state = 4}, - [540] = {.lex_state = 3, .external_lex_state = 4}, + [539] = {.lex_state = 3, .external_lex_state = 3}, + [540] = {.lex_state = 3, .external_lex_state = 3}, [541] = {.lex_state = 3, .external_lex_state = 3}, [542] = {.lex_state = 3, .external_lex_state = 3}, [543] = {.lex_state = 3, .external_lex_state = 3}, - [544] = {.lex_state = 3, .external_lex_state = 3}, + [544] = {.lex_state = 3, .external_lex_state = 4}, [545] = {.lex_state = 3, .external_lex_state = 3}, [546] = {.lex_state = 3, .external_lex_state = 3}, [547] = {.lex_state = 3, .external_lex_state = 3}, [548] = {.lex_state = 3, .external_lex_state = 3}, - [549] = {.lex_state = 3, .external_lex_state = 4}, + [549] = {.lex_state = 3, .external_lex_state = 3}, [550] = {.lex_state = 3, .external_lex_state = 3}, - [551] = {.lex_state = 3, .external_lex_state = 3}, - [552] = {.lex_state = 3, .external_lex_state = 3}, + [551] = {.lex_state = 3, .external_lex_state = 4}, + [552] = {.lex_state = 3, .external_lex_state = 4}, [553] = {.lex_state = 3, .external_lex_state = 4}, [554] = {.lex_state = 3, .external_lex_state = 4}, [555] = {.lex_state = 3, .external_lex_state = 4}, [556] = {.lex_state = 3, .external_lex_state = 4}, [557] = {.lex_state = 3, .external_lex_state = 4}, - [558] = {.lex_state = 3, .external_lex_state = 4}, - [559] = {.lex_state = 3, .external_lex_state = 4}, - [560] = {.lex_state = 3, .external_lex_state = 3}, + [558] = {.lex_state = 3, .external_lex_state = 3}, + [559] = {.lex_state = 3, .external_lex_state = 3}, + [560] = {.lex_state = 3, .external_lex_state = 4}, [561] = {.lex_state = 3, .external_lex_state = 4}, [562] = {.lex_state = 3, .external_lex_state = 4}, [563] = {.lex_state = 3, .external_lex_state = 4}, @@ -7466,29 +7511,29 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [578] = {.lex_state = 3, .external_lex_state = 4}, [579] = {.lex_state = 3, .external_lex_state = 4}, [580] = {.lex_state = 3, .external_lex_state = 4}, - [581] = {.lex_state = 124, .external_lex_state = 4}, - [582] = {.lex_state = 124, .external_lex_state = 3}, - [583] = {.lex_state = 124, .external_lex_state = 4}, - [584] = {.lex_state = 124, .external_lex_state = 3}, - [585] = {.lex_state = 124, .external_lex_state = 4}, - [586] = {.lex_state = 124, .external_lex_state = 3}, + [581] = {.lex_state = 125, .external_lex_state = 2}, + [582] = {.lex_state = 125, .external_lex_state = 2}, + [583] = {.lex_state = 125, .external_lex_state = 2}, + [584] = {.lex_state = 125, .external_lex_state = 2}, + [585] = {.lex_state = 125, .external_lex_state = 2}, + [586] = {.lex_state = 124, .external_lex_state = 4}, [587] = {.lex_state = 124, .external_lex_state = 4}, - [588] = {.lex_state = 124, .external_lex_state = 4}, - [589] = {.lex_state = 124, .external_lex_state = 4}, - [590] = {.lex_state = 124, .external_lex_state = 4}, - [591] = {.lex_state = 124, .external_lex_state = 4}, - [592] = {.lex_state = 124, .external_lex_state = 4}, + [588] = {.lex_state = 125, .external_lex_state = 2}, + [589] = {.lex_state = 125, .external_lex_state = 2}, + [590] = {.lex_state = 125, .external_lex_state = 2}, + [591] = {.lex_state = 124, .external_lex_state = 3}, + [592] = {.lex_state = 124, .external_lex_state = 3}, [593] = {.lex_state = 124, .external_lex_state = 4}, [594] = {.lex_state = 124, .external_lex_state = 4}, [595] = {.lex_state = 124, .external_lex_state = 4}, - [596] = {.lex_state = 124, .external_lex_state = 4}, + [596] = {.lex_state = 124, .external_lex_state = 3}, [597] = {.lex_state = 124, .external_lex_state = 4}, - [598] = {.lex_state = 7, .external_lex_state = 4}, + [598] = {.lex_state = 124, .external_lex_state = 4}, [599] = {.lex_state = 124, .external_lex_state = 4}, [600] = {.lex_state = 124, .external_lex_state = 4}, [601] = {.lex_state = 124, .external_lex_state = 4}, [602] = {.lex_state = 124, .external_lex_state = 4}, - [603] = {.lex_state = 124, .external_lex_state = 4}, + [603] = {.lex_state = 7, .external_lex_state = 4}, [604] = {.lex_state = 124, .external_lex_state = 4}, [605] = {.lex_state = 124, .external_lex_state = 4}, [606] = {.lex_state = 124, .external_lex_state = 4}, @@ -7542,7 +7587,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [654] = {.lex_state = 124, .external_lex_state = 4}, [655] = {.lex_state = 124, .external_lex_state = 4}, [656] = {.lex_state = 124, .external_lex_state = 4}, - [657] = {.lex_state = 124, .external_lex_state = 3}, + [657] = {.lex_state = 124, .external_lex_state = 4}, [658] = {.lex_state = 124, .external_lex_state = 4}, [659] = {.lex_state = 124, .external_lex_state = 4}, [660] = {.lex_state = 124, .external_lex_state = 4}, @@ -7568,25 +7613,25 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [680] = {.lex_state = 124, .external_lex_state = 4}, [681] = {.lex_state = 124, .external_lex_state = 3}, [682] = {.lex_state = 124, .external_lex_state = 3}, - [683] = {.lex_state = 124, .external_lex_state = 3}, - [684] = {.lex_state = 124, .external_lex_state = 3}, - [685] = {.lex_state = 124, .external_lex_state = 3}, - [686] = {.lex_state = 124, .external_lex_state = 3}, - [687] = {.lex_state = 124, .external_lex_state = 3}, - [688] = {.lex_state = 124, .external_lex_state = 3}, - [689] = {.lex_state = 124, .external_lex_state = 3}, + [683] = {.lex_state = 124, .external_lex_state = 4}, + [684] = {.lex_state = 124, .external_lex_state = 4}, + [685] = {.lex_state = 124, .external_lex_state = 4}, + [686] = {.lex_state = 124, .external_lex_state = 4}, + [687] = {.lex_state = 124, .external_lex_state = 4}, + [688] = {.lex_state = 124, .external_lex_state = 4}, + [689] = {.lex_state = 124, .external_lex_state = 4}, [690] = {.lex_state = 124, .external_lex_state = 4}, - [691] = {.lex_state = 124, .external_lex_state = 3}, - [692] = {.lex_state = 124, .external_lex_state = 3}, - [693] = {.lex_state = 124, .external_lex_state = 3}, - [694] = {.lex_state = 124, .external_lex_state = 3}, - [695] = {.lex_state = 124, .external_lex_state = 3}, + [691] = {.lex_state = 124, .external_lex_state = 4}, + [692] = {.lex_state = 124, .external_lex_state = 4}, + [693] = {.lex_state = 124, .external_lex_state = 4}, + [694] = {.lex_state = 124, .external_lex_state = 4}, + [695] = {.lex_state = 124, .external_lex_state = 4}, [696] = {.lex_state = 124, .external_lex_state = 3}, [697] = {.lex_state = 124, .external_lex_state = 3}, [698] = {.lex_state = 124, .external_lex_state = 3}, [699] = {.lex_state = 124, .external_lex_state = 3}, [700] = {.lex_state = 124, .external_lex_state = 3}, - [701] = {.lex_state = 7, .external_lex_state = 3}, + [701] = {.lex_state = 124, .external_lex_state = 3}, [702] = {.lex_state = 124, .external_lex_state = 3}, [703] = {.lex_state = 124, .external_lex_state = 3}, [704] = {.lex_state = 124, .external_lex_state = 3}, @@ -7605,20 +7650,20 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [717] = {.lex_state = 124, .external_lex_state = 3}, [718] = {.lex_state = 124, .external_lex_state = 3}, [719] = {.lex_state = 124, .external_lex_state = 3}, - [720] = {.lex_state = 124, .external_lex_state = 3}, + [720] = {.lex_state = 124, .external_lex_state = 4}, [721] = {.lex_state = 124, .external_lex_state = 3}, [722] = {.lex_state = 124, .external_lex_state = 3}, [723] = {.lex_state = 124, .external_lex_state = 3}, - [724] = {.lex_state = 124, .external_lex_state = 3}, + [724] = {.lex_state = 124, .external_lex_state = 4}, [725] = {.lex_state = 124, .external_lex_state = 3}, [726] = {.lex_state = 124, .external_lex_state = 3}, [727] = {.lex_state = 124, .external_lex_state = 3}, [728] = {.lex_state = 124, .external_lex_state = 3}, [729] = {.lex_state = 124, .external_lex_state = 3}, [730] = {.lex_state = 124, .external_lex_state = 4}, - [731] = {.lex_state = 124, .external_lex_state = 4}, + [731] = {.lex_state = 124, .external_lex_state = 3}, [732] = {.lex_state = 124, .external_lex_state = 3}, - [733] = {.lex_state = 124, .external_lex_state = 4}, + [733] = {.lex_state = 124, .external_lex_state = 3}, [734] = {.lex_state = 124, .external_lex_state = 3}, [735] = {.lex_state = 124, .external_lex_state = 3}, [736] = {.lex_state = 124, .external_lex_state = 3}, @@ -7632,25 +7677,25 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [744] = {.lex_state = 124, .external_lex_state = 3}, [745] = {.lex_state = 124, .external_lex_state = 3}, [746] = {.lex_state = 124, .external_lex_state = 3}, - [747] = {.lex_state = 124, .external_lex_state = 3}, + [747] = {.lex_state = 7, .external_lex_state = 3}, [748] = {.lex_state = 124, .external_lex_state = 3}, - [749] = {.lex_state = 124, .external_lex_state = 3}, + [749] = {.lex_state = 7, .external_lex_state = 3}, [750] = {.lex_state = 124, .external_lex_state = 3}, [751] = {.lex_state = 124, .external_lex_state = 3}, [752] = {.lex_state = 124, .external_lex_state = 3}, [753] = {.lex_state = 124, .external_lex_state = 3}, - [754] = {.lex_state = 124, .external_lex_state = 3}, - [755] = {.lex_state = 124, .external_lex_state = 3}, - [756] = {.lex_state = 124, .external_lex_state = 3}, + [754] = {.lex_state = 124, .external_lex_state = 4}, + [755] = {.lex_state = 124, .external_lex_state = 4}, + [756] = {.lex_state = 124, .external_lex_state = 4}, [757] = {.lex_state = 124, .external_lex_state = 3}, [758] = {.lex_state = 124, .external_lex_state = 3}, [759] = {.lex_state = 124, .external_lex_state = 3}, [760] = {.lex_state = 124, .external_lex_state = 3}, - [761] = {.lex_state = 124, .external_lex_state = 4}, + [761] = {.lex_state = 124, .external_lex_state = 3}, [762] = {.lex_state = 124, .external_lex_state = 3}, [763] = {.lex_state = 124, .external_lex_state = 3}, [764] = {.lex_state = 124, .external_lex_state = 3}, - [765] = {.lex_state = 124, .external_lex_state = 4}, + [765] = {.lex_state = 124, .external_lex_state = 3}, [766] = {.lex_state = 124, .external_lex_state = 3}, [767] = {.lex_state = 124, .external_lex_state = 3}, [768] = {.lex_state = 124, .external_lex_state = 3}, @@ -7680,7 +7725,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [792] = {.lex_state = 124, .external_lex_state = 3}, [793] = {.lex_state = 124, .external_lex_state = 3}, [794] = {.lex_state = 124, .external_lex_state = 3}, - [795] = {.lex_state = 7, .external_lex_state = 3}, + [795] = {.lex_state = 124, .external_lex_state = 3}, [796] = {.lex_state = 124, .external_lex_state = 3}, [797] = {.lex_state = 124, .external_lex_state = 3}, [798] = {.lex_state = 124, .external_lex_state = 3}, @@ -7689,7 +7734,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [801] = {.lex_state = 124, .external_lex_state = 3}, [802] = {.lex_state = 124, .external_lex_state = 3}, [803] = {.lex_state = 124, .external_lex_state = 3}, - [804] = {.lex_state = 124, .external_lex_state = 4}, + [804] = {.lex_state = 124, .external_lex_state = 3}, [805] = {.lex_state = 124, .external_lex_state = 3}, [806] = {.lex_state = 124, .external_lex_state = 3}, [807] = {.lex_state = 124, .external_lex_state = 3}, @@ -7697,50 +7742,50 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [809] = {.lex_state = 124, .external_lex_state = 3}, [810] = {.lex_state = 124, .external_lex_state = 3}, [811] = {.lex_state = 124, .external_lex_state = 3}, - [812] = {.lex_state = 124, .external_lex_state = 4}, + [812] = {.lex_state = 124, .external_lex_state = 3}, [813] = {.lex_state = 124, .external_lex_state = 3}, [814] = {.lex_state = 124, .external_lex_state = 3}, [815] = {.lex_state = 124, .external_lex_state = 3}, [816] = {.lex_state = 124, .external_lex_state = 3}, - [817] = {.lex_state = 124, .external_lex_state = 4}, + [817] = {.lex_state = 124, .external_lex_state = 3}, [818] = {.lex_state = 124, .external_lex_state = 3}, - [819] = {.lex_state = 124, .external_lex_state = 4}, - [820] = {.lex_state = 124, .external_lex_state = 4}, + [819] = {.lex_state = 124, .external_lex_state = 3}, + [820] = {.lex_state = 124, .external_lex_state = 3}, [821] = {.lex_state = 124, .external_lex_state = 3}, [822] = {.lex_state = 124, .external_lex_state = 3}, [823] = {.lex_state = 124, .external_lex_state = 3}, - [824] = {.lex_state = 124, .external_lex_state = 4}, - [825] = {.lex_state = 124, .external_lex_state = 4}, + [824] = {.lex_state = 124, .external_lex_state = 3}, + [825] = {.lex_state = 124, .external_lex_state = 3}, [826] = {.lex_state = 124, .external_lex_state = 3}, - [827] = {.lex_state = 124, .external_lex_state = 4}, - [828] = {.lex_state = 5, .external_lex_state = 2}, - [829] = {.lex_state = 124, .external_lex_state = 4}, + [827] = {.lex_state = 124, .external_lex_state = 3}, + [828] = {.lex_state = 124, .external_lex_state = 3}, + [829] = {.lex_state = 124, .external_lex_state = 3}, [830] = {.lex_state = 124, .external_lex_state = 4}, [831] = {.lex_state = 124, .external_lex_state = 4}, - [832] = {.lex_state = 124, .external_lex_state = 4}, + [832] = {.lex_state = 124, .external_lex_state = 3}, [833] = {.lex_state = 124, .external_lex_state = 4}, - [834] = {.lex_state = 124, .external_lex_state = 4}, - [835] = {.lex_state = 124, .external_lex_state = 4}, - [836] = {.lex_state = 124, .external_lex_state = 4}, - [837] = {.lex_state = 124, .external_lex_state = 4}, + [834] = {.lex_state = 124, .external_lex_state = 3}, + [835] = {.lex_state = 124, .external_lex_state = 3}, + [836] = {.lex_state = 124, .external_lex_state = 3}, + [837] = {.lex_state = 124, .external_lex_state = 3}, [838] = {.lex_state = 124, .external_lex_state = 4}, [839] = {.lex_state = 124, .external_lex_state = 4}, - [840] = {.lex_state = 124, .external_lex_state = 4}, - [841] = {.lex_state = 124, .external_lex_state = 4}, - [842] = {.lex_state = 124, .external_lex_state = 4}, - [843] = {.lex_state = 124, .external_lex_state = 4}, + [840] = {.lex_state = 124, .external_lex_state = 3}, + [841] = {.lex_state = 124, .external_lex_state = 3}, + [842] = {.lex_state = 124, .external_lex_state = 3}, + [843] = {.lex_state = 124, .external_lex_state = 3}, [844] = {.lex_state = 124, .external_lex_state = 4}, [845] = {.lex_state = 124, .external_lex_state = 4}, [846] = {.lex_state = 124, .external_lex_state = 4}, [847] = {.lex_state = 124, .external_lex_state = 4}, - [848] = {.lex_state = 124, .external_lex_state = 3}, + [848] = {.lex_state = 124, .external_lex_state = 4}, [849] = {.lex_state = 124, .external_lex_state = 4}, [850] = {.lex_state = 124, .external_lex_state = 4}, - [851] = {.lex_state = 124, .external_lex_state = 4}, + [851] = {.lex_state = 124, .external_lex_state = 3}, [852] = {.lex_state = 124, .external_lex_state = 4}, [853] = {.lex_state = 124, .external_lex_state = 4}, [854] = {.lex_state = 124, .external_lex_state = 4}, - [855] = {.lex_state = 124, .external_lex_state = 3}, + [855] = {.lex_state = 5, .external_lex_state = 2}, [856] = {.lex_state = 5, .external_lex_state = 2}, [857] = {.lex_state = 124, .external_lex_state = 4}, [858] = {.lex_state = 124, .external_lex_state = 4}, @@ -7750,16 +7795,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [862] = {.lex_state = 124, .external_lex_state = 4}, [863] = {.lex_state = 124, .external_lex_state = 4}, [864] = {.lex_state = 124, .external_lex_state = 4}, - [865] = {.lex_state = 5, .external_lex_state = 2}, + [865] = {.lex_state = 124, .external_lex_state = 4}, [866] = {.lex_state = 124, .external_lex_state = 4}, [867] = {.lex_state = 124, .external_lex_state = 4}, - [868] = {.lex_state = 5, .external_lex_state = 2}, + [868] = {.lex_state = 124, .external_lex_state = 4}, [869] = {.lex_state = 124, .external_lex_state = 4}, - [870] = {.lex_state = 5, .external_lex_state = 2}, - [871] = {.lex_state = 5, .external_lex_state = 2}, + [870] = {.lex_state = 124, .external_lex_state = 4}, + [871] = {.lex_state = 124, .external_lex_state = 4}, [872] = {.lex_state = 124, .external_lex_state = 4}, [873] = {.lex_state = 124, .external_lex_state = 4}, - [874] = {.lex_state = 124, .external_lex_state = 4}, + [874] = {.lex_state = 124, .external_lex_state = 3}, [875] = {.lex_state = 124, .external_lex_state = 4}, [876] = {.lex_state = 124, .external_lex_state = 4}, [877] = {.lex_state = 124, .external_lex_state = 4}, @@ -7773,33 +7818,33 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [885] = {.lex_state = 124, .external_lex_state = 4}, [886] = {.lex_state = 124, .external_lex_state = 4}, [887] = {.lex_state = 124, .external_lex_state = 4}, - [888] = {.lex_state = 7, .external_lex_state = 4}, - [889] = {.lex_state = 124, .external_lex_state = 3}, + [888] = {.lex_state = 124, .external_lex_state = 4}, + [889] = {.lex_state = 124, .external_lex_state = 4}, [890] = {.lex_state = 124, .external_lex_state = 4}, [891] = {.lex_state = 124, .external_lex_state = 4}, [892] = {.lex_state = 124, .external_lex_state = 4}, [893] = {.lex_state = 124, .external_lex_state = 4}, - [894] = {.lex_state = 124, .external_lex_state = 4}, + [894] = {.lex_state = 5, .external_lex_state = 2}, [895] = {.lex_state = 124, .external_lex_state = 4}, [896] = {.lex_state = 124, .external_lex_state = 4}, [897] = {.lex_state = 124, .external_lex_state = 4}, [898] = {.lex_state = 124, .external_lex_state = 4}, - [899] = {.lex_state = 124, .external_lex_state = 4}, + [899] = {.lex_state = 5, .external_lex_state = 2}, [900] = {.lex_state = 124, .external_lex_state = 4}, - [901] = {.lex_state = 124, .external_lex_state = 4}, + [901] = {.lex_state = 5, .external_lex_state = 2}, [902] = {.lex_state = 124, .external_lex_state = 4}, - [903] = {.lex_state = 124, .external_lex_state = 4}, + [903] = {.lex_state = 5, .external_lex_state = 2}, [904] = {.lex_state = 124, .external_lex_state = 4}, [905] = {.lex_state = 124, .external_lex_state = 4}, [906] = {.lex_state = 124, .external_lex_state = 4}, - [907] = {.lex_state = 124, .external_lex_state = 4}, + [907] = {.lex_state = 124, .external_lex_state = 3}, [908] = {.lex_state = 124, .external_lex_state = 4}, [909] = {.lex_state = 124, .external_lex_state = 4}, [910] = {.lex_state = 124, .external_lex_state = 4}, [911] = {.lex_state = 124, .external_lex_state = 4}, [912] = {.lex_state = 124, .external_lex_state = 4}, [913] = {.lex_state = 124, .external_lex_state = 4}, - [914] = {.lex_state = 124, .external_lex_state = 3}, + [914] = {.lex_state = 124, .external_lex_state = 4}, [915] = {.lex_state = 124, .external_lex_state = 4}, [916] = {.lex_state = 124, .external_lex_state = 4}, [917] = {.lex_state = 124, .external_lex_state = 4}, @@ -7854,7 +7899,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [966] = {.lex_state = 124, .external_lex_state = 4}, [967] = {.lex_state = 124, .external_lex_state = 4}, [968] = {.lex_state = 124, .external_lex_state = 4}, - [969] = {.lex_state = 5, .external_lex_state = 2}, + [969] = {.lex_state = 124, .external_lex_state = 4}, [970] = {.lex_state = 124, .external_lex_state = 4}, [971] = {.lex_state = 124, .external_lex_state = 4}, [972] = {.lex_state = 124, .external_lex_state = 4}, @@ -7866,84 +7911,84 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [978] = {.lex_state = 124, .external_lex_state = 4}, [979] = {.lex_state = 124, .external_lex_state = 4}, [980] = {.lex_state = 124, .external_lex_state = 4}, - [981] = {.lex_state = 5, .external_lex_state = 2}, - [982] = {.lex_state = 5, .external_lex_state = 2}, - [983] = {.lex_state = 5, .external_lex_state = 2}, - [984] = {.lex_state = 5, .external_lex_state = 2}, - [985] = {.lex_state = 5, .external_lex_state = 2}, - [986] = {.lex_state = 125, .external_lex_state = 2}, - [987] = {.lex_state = 125, .external_lex_state = 2}, - [988] = {.lex_state = 5, .external_lex_state = 2}, - [989] = {.lex_state = 5, .external_lex_state = 2}, - [990] = {.lex_state = 5, .external_lex_state = 2}, - [991] = {.lex_state = 5, .external_lex_state = 2}, - [992] = {.lex_state = 125, .external_lex_state = 2}, - [993] = {.lex_state = 125, .external_lex_state = 2}, - [994] = {.lex_state = 125, .external_lex_state = 2}, - [995] = {.lex_state = 125, .external_lex_state = 2}, - [996] = {.lex_state = 125, .external_lex_state = 2}, - [997] = {.lex_state = 125, .external_lex_state = 2}, - [998] = {.lex_state = 125, .external_lex_state = 2}, - [999] = {.lex_state = 125, .external_lex_state = 2}, + [981] = {.lex_state = 7, .external_lex_state = 4}, + [982] = {.lex_state = 124, .external_lex_state = 3}, + [983] = {.lex_state = 124, .external_lex_state = 4}, + [984] = {.lex_state = 124, .external_lex_state = 4}, + [985] = {.lex_state = 124, .external_lex_state = 4}, + [986] = {.lex_state = 124, .external_lex_state = 4}, + [987] = {.lex_state = 124, .external_lex_state = 4}, + [988] = {.lex_state = 124, .external_lex_state = 4}, + [989] = {.lex_state = 124, .external_lex_state = 4}, + [990] = {.lex_state = 124, .external_lex_state = 4}, + [991] = {.lex_state = 124, .external_lex_state = 4}, + [992] = {.lex_state = 124, .external_lex_state = 4}, + [993] = {.lex_state = 5, .external_lex_state = 2}, + [994] = {.lex_state = 124, .external_lex_state = 4}, + [995] = {.lex_state = 124, .external_lex_state = 4}, + [996] = {.lex_state = 124, .external_lex_state = 4}, + [997] = {.lex_state = 124, .external_lex_state = 4}, + [998] = {.lex_state = 124, .external_lex_state = 4}, + [999] = {.lex_state = 5, .external_lex_state = 2}, [1000] = {.lex_state = 125, .external_lex_state = 2}, - [1001] = {.lex_state = 125, .external_lex_state = 2}, - [1002] = {.lex_state = 125, .external_lex_state = 2}, - [1003] = {.lex_state = 125, .external_lex_state = 2}, - [1004] = {.lex_state = 125, .external_lex_state = 2}, - [1005] = {.lex_state = 125, .external_lex_state = 2}, + [1001] = {.lex_state = 5, .external_lex_state = 2}, + [1002] = {.lex_state = 5, .external_lex_state = 2}, + [1003] = {.lex_state = 5, .external_lex_state = 2}, + [1004] = {.lex_state = 5, .external_lex_state = 2}, + [1005] = {.lex_state = 5, .external_lex_state = 2}, [1006] = {.lex_state = 125, .external_lex_state = 2}, - [1007] = {.lex_state = 125, .external_lex_state = 2}, - [1008] = {.lex_state = 125, .external_lex_state = 2}, - [1009] = {.lex_state = 125, .external_lex_state = 5}, + [1007] = {.lex_state = 5, .external_lex_state = 2}, + [1008] = {.lex_state = 5, .external_lex_state = 2}, + [1009] = {.lex_state = 5, .external_lex_state = 2}, [1010] = {.lex_state = 125, .external_lex_state = 2}, [1011] = {.lex_state = 125, .external_lex_state = 2}, [1012] = {.lex_state = 125, .external_lex_state = 2}, [1013] = {.lex_state = 125, .external_lex_state = 2}, - [1014] = {.lex_state = 5, .external_lex_state = 2}, + [1014] = {.lex_state = 125, .external_lex_state = 2}, [1015] = {.lex_state = 125, .external_lex_state = 2}, [1016] = {.lex_state = 125, .external_lex_state = 2}, - [1017] = {.lex_state = 125, .external_lex_state = 5}, - [1018] = {.lex_state = 125, .external_lex_state = 5}, - [1019] = {.lex_state = 5, .external_lex_state = 2}, + [1017] = {.lex_state = 125, .external_lex_state = 2}, + [1018] = {.lex_state = 125, .external_lex_state = 2}, + [1019] = {.lex_state = 125, .external_lex_state = 2}, [1020] = {.lex_state = 125, .external_lex_state = 2}, [1021] = {.lex_state = 125, .external_lex_state = 2}, - [1022] = {.lex_state = 125, .external_lex_state = 5}, - [1023] = {.lex_state = 125, .external_lex_state = 5}, + [1022] = {.lex_state = 125, .external_lex_state = 2}, + [1023] = {.lex_state = 125, .external_lex_state = 2}, [1024] = {.lex_state = 125, .external_lex_state = 2}, - [1025] = {.lex_state = 5, .external_lex_state = 2}, - [1026] = {.lex_state = 125, .external_lex_state = 5}, + [1025] = {.lex_state = 125, .external_lex_state = 2}, + [1026] = {.lex_state = 125, .external_lex_state = 2}, [1027] = {.lex_state = 125, .external_lex_state = 2}, - [1028] = {.lex_state = 125, .external_lex_state = 5}, + [1028] = {.lex_state = 125, .external_lex_state = 2}, [1029] = {.lex_state = 125, .external_lex_state = 5}, - [1030] = {.lex_state = 125, .external_lex_state = 5}, - [1031] = {.lex_state = 125, .external_lex_state = 5}, - [1032] = {.lex_state = 125, .external_lex_state = 5}, - [1033] = {.lex_state = 125, .external_lex_state = 5}, - [1034] = {.lex_state = 9, .external_lex_state = 2}, + [1030] = {.lex_state = 125, .external_lex_state = 2}, + [1031] = {.lex_state = 125, .external_lex_state = 2}, + [1032] = {.lex_state = 5, .external_lex_state = 2}, + [1033] = {.lex_state = 125, .external_lex_state = 2}, + [1034] = {.lex_state = 125, .external_lex_state = 2}, [1035] = {.lex_state = 125, .external_lex_state = 2}, - [1036] = {.lex_state = 125, .external_lex_state = 2}, + [1036] = {.lex_state = 5, .external_lex_state = 2}, [1037] = {.lex_state = 5, .external_lex_state = 2}, - [1038] = {.lex_state = 125, .external_lex_state = 2}, - [1039] = {.lex_state = 5, .external_lex_state = 2}, - [1040] = {.lex_state = 5, .external_lex_state = 2}, - [1041] = {.lex_state = 5, .external_lex_state = 2}, - [1042] = {.lex_state = 5, .external_lex_state = 5}, - [1043] = {.lex_state = 9, .external_lex_state = 2}, - [1044] = {.lex_state = 5, .external_lex_state = 2}, - [1045] = {.lex_state = 5, .external_lex_state = 2}, - [1046] = {.lex_state = 5, .external_lex_state = 2}, - [1047] = {.lex_state = 5, .external_lex_state = 5}, - [1048] = {.lex_state = 5, .external_lex_state = 2}, - [1049] = {.lex_state = 5, .external_lex_state = 2}, - [1050] = {.lex_state = 5, .external_lex_state = 2}, - [1051] = {.lex_state = 5, .external_lex_state = 2}, - [1052] = {.lex_state = 5, .external_lex_state = 2}, - [1053] = {.lex_state = 5, .external_lex_state = 2}, - [1054] = {.lex_state = 5, .external_lex_state = 2}, - [1055] = {.lex_state = 5, .external_lex_state = 2}, + [1038] = {.lex_state = 125, .external_lex_state = 5}, + [1039] = {.lex_state = 125, .external_lex_state = 5}, + [1040] = {.lex_state = 125, .external_lex_state = 5}, + [1041] = {.lex_state = 125, .external_lex_state = 2}, + [1042] = {.lex_state = 125, .external_lex_state = 5}, + [1043] = {.lex_state = 125, .external_lex_state = 2}, + [1044] = {.lex_state = 125, .external_lex_state = 5}, + [1045] = {.lex_state = 125, .external_lex_state = 2}, + [1046] = {.lex_state = 125, .external_lex_state = 2}, + [1047] = {.lex_state = 125, .external_lex_state = 5}, + [1048] = {.lex_state = 125, .external_lex_state = 5}, + [1049] = {.lex_state = 9, .external_lex_state = 2}, + [1050] = {.lex_state = 125, .external_lex_state = 2}, + [1051] = {.lex_state = 125, .external_lex_state = 5}, + [1052] = {.lex_state = 125, .external_lex_state = 5}, + [1053] = {.lex_state = 125, .external_lex_state = 5}, + [1054] = {.lex_state = 125, .external_lex_state = 5}, + [1055] = {.lex_state = 125, .external_lex_state = 2}, [1056] = {.lex_state = 5, .external_lex_state = 2}, [1057] = {.lex_state = 5, .external_lex_state = 2}, - [1058] = {.lex_state = 5, .external_lex_state = 2}, + [1058] = {.lex_state = 125, .external_lex_state = 2}, [1059] = {.lex_state = 5, .external_lex_state = 2}, [1060] = {.lex_state = 5, .external_lex_state = 2}, [1061] = {.lex_state = 5, .external_lex_state = 2}, @@ -7952,59 +7997,59 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1064] = {.lex_state = 5, .external_lex_state = 2}, [1065] = {.lex_state = 5, .external_lex_state = 2}, [1066] = {.lex_state = 5, .external_lex_state = 2}, - [1067] = {.lex_state = 125, .external_lex_state = 2}, + [1067] = {.lex_state = 5, .external_lex_state = 2}, [1068] = {.lex_state = 5, .external_lex_state = 2}, [1069] = {.lex_state = 5, .external_lex_state = 2}, [1070] = {.lex_state = 5, .external_lex_state = 2}, [1071] = {.lex_state = 5, .external_lex_state = 2}, - [1072] = {.lex_state = 125, .external_lex_state = 2}, + [1072] = {.lex_state = 5, .external_lex_state = 2}, [1073] = {.lex_state = 5, .external_lex_state = 2}, - [1074] = {.lex_state = 125, .external_lex_state = 2}, + [1074] = {.lex_state = 5, .external_lex_state = 2}, [1075] = {.lex_state = 5, .external_lex_state = 2}, - [1076] = {.lex_state = 125, .external_lex_state = 2}, - [1077] = {.lex_state = 125, .external_lex_state = 2}, + [1076] = {.lex_state = 5, .external_lex_state = 2}, + [1077] = {.lex_state = 5, .external_lex_state = 5}, [1078] = {.lex_state = 5, .external_lex_state = 2}, - [1079] = {.lex_state = 125, .external_lex_state = 2}, - [1080] = {.lex_state = 5, .external_lex_state = 2}, + [1079] = {.lex_state = 9, .external_lex_state = 2}, + [1080] = {.lex_state = 5, .external_lex_state = 5}, [1081] = {.lex_state = 5, .external_lex_state = 2}, - [1082] = {.lex_state = 125, .external_lex_state = 2}, - [1083] = {.lex_state = 125, .external_lex_state = 2}, - [1084] = {.lex_state = 125, .external_lex_state = 2}, + [1082] = {.lex_state = 5, .external_lex_state = 2}, + [1083] = {.lex_state = 5, .external_lex_state = 2}, + [1084] = {.lex_state = 5, .external_lex_state = 2}, [1085] = {.lex_state = 5, .external_lex_state = 2}, - [1086] = {.lex_state = 125, .external_lex_state = 2}, - [1087] = {.lex_state = 125, .external_lex_state = 2}, - [1088] = {.lex_state = 125, .external_lex_state = 2}, - [1089] = {.lex_state = 125, .external_lex_state = 2}, + [1086] = {.lex_state = 5, .external_lex_state = 2}, + [1087] = {.lex_state = 5, .external_lex_state = 2}, + [1088] = {.lex_state = 5, .external_lex_state = 2}, + [1089] = {.lex_state = 5, .external_lex_state = 2}, [1090] = {.lex_state = 125, .external_lex_state = 2}, - [1091] = {.lex_state = 125, .external_lex_state = 2}, - [1092] = {.lex_state = 125, .external_lex_state = 2}, - [1093] = {.lex_state = 125, .external_lex_state = 2}, + [1091] = {.lex_state = 5, .external_lex_state = 2}, + [1092] = {.lex_state = 5, .external_lex_state = 2}, + [1093] = {.lex_state = 5, .external_lex_state = 2}, [1094] = {.lex_state = 5, .external_lex_state = 2}, [1095] = {.lex_state = 125, .external_lex_state = 2}, - [1096] = {.lex_state = 125, .external_lex_state = 2}, - [1097] = {.lex_state = 5, .external_lex_state = 2}, - [1098] = {.lex_state = 125, .external_lex_state = 2}, + [1096] = {.lex_state = 5, .external_lex_state = 2}, + [1097] = {.lex_state = 125, .external_lex_state = 2}, + [1098] = {.lex_state = 5, .external_lex_state = 2}, [1099] = {.lex_state = 125, .external_lex_state = 2}, - [1100] = {.lex_state = 5, .external_lex_state = 2}, + [1100] = {.lex_state = 125, .external_lex_state = 2}, [1101] = {.lex_state = 125, .external_lex_state = 2}, [1102] = {.lex_state = 125, .external_lex_state = 2}, [1103] = {.lex_state = 125, .external_lex_state = 2}, [1104] = {.lex_state = 125, .external_lex_state = 2}, [1105] = {.lex_state = 125, .external_lex_state = 2}, - [1106] = {.lex_state = 5, .external_lex_state = 2}, - [1107] = {.lex_state = 125, .external_lex_state = 2}, + [1106] = {.lex_state = 125, .external_lex_state = 2}, + [1107] = {.lex_state = 5, .external_lex_state = 2}, [1108] = {.lex_state = 125, .external_lex_state = 2}, [1109] = {.lex_state = 125, .external_lex_state = 2}, - [1110] = {.lex_state = 125, .external_lex_state = 2}, - [1111] = {.lex_state = 125, .external_lex_state = 2}, + [1110] = {.lex_state = 5, .external_lex_state = 2}, + [1111] = {.lex_state = 5, .external_lex_state = 2}, [1112] = {.lex_state = 125, .external_lex_state = 2}, [1113] = {.lex_state = 125, .external_lex_state = 2}, [1114] = {.lex_state = 125, .external_lex_state = 2}, [1115] = {.lex_state = 125, .external_lex_state = 2}, [1116] = {.lex_state = 125, .external_lex_state = 2}, - [1117] = {.lex_state = 125, .external_lex_state = 2}, + [1117] = {.lex_state = 5, .external_lex_state = 2}, [1118] = {.lex_state = 5, .external_lex_state = 2}, - [1119] = {.lex_state = 5, .external_lex_state = 2}, + [1119] = {.lex_state = 125, .external_lex_state = 2}, [1120] = {.lex_state = 125, .external_lex_state = 2}, [1121] = {.lex_state = 125, .external_lex_state = 2}, [1122] = {.lex_state = 125, .external_lex_state = 2}, @@ -8022,46 +8067,46 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1134] = {.lex_state = 125, .external_lex_state = 2}, [1135] = {.lex_state = 125, .external_lex_state = 2}, [1136] = {.lex_state = 125, .external_lex_state = 2}, - [1137] = {.lex_state = 125, .external_lex_state = 2}, - [1138] = {.lex_state = 3, .external_lex_state = 2}, - [1139] = {.lex_state = 3, .external_lex_state = 2}, - [1140] = {.lex_state = 3, .external_lex_state = 2}, - [1141] = {.lex_state = 3, .external_lex_state = 2}, - [1142] = {.lex_state = 3, .external_lex_state = 2}, - [1143] = {.lex_state = 3, .external_lex_state = 2}, - [1144] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1145] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1146] = {.lex_state = 9, .external_lex_state = 6}, - [1147] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1148] = {.lex_state = 9, .external_lex_state = 6}, - [1149] = {.lex_state = 9, .external_lex_state = 6}, - [1150] = {.lex_state = 9, .external_lex_state = 6}, - [1151] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1152] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1153] = {.lex_state = 9, .external_lex_state = 6}, - [1154] = {.lex_state = 9, .external_lex_state = 6}, - [1155] = {.lex_state = 9, .external_lex_state = 6}, - [1156] = {.lex_state = 9, .external_lex_state = 6}, - [1157] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1158] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1159] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1160] = {.lex_state = 9, .external_lex_state = 6}, - [1161] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1162] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1163] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1137] = {.lex_state = 5, .external_lex_state = 2}, + [1138] = {.lex_state = 125, .external_lex_state = 2}, + [1139] = {.lex_state = 125, .external_lex_state = 2}, + [1140] = {.lex_state = 125, .external_lex_state = 2}, + [1141] = {.lex_state = 125, .external_lex_state = 2}, + [1142] = {.lex_state = 125, .external_lex_state = 2}, + [1143] = {.lex_state = 125, .external_lex_state = 2}, + [1144] = {.lex_state = 125, .external_lex_state = 2}, + [1145] = {.lex_state = 125, .external_lex_state = 2}, + [1146] = {.lex_state = 125, .external_lex_state = 2}, + [1147] = {.lex_state = 125, .external_lex_state = 2}, + [1148] = {.lex_state = 125, .external_lex_state = 2}, + [1149] = {.lex_state = 125, .external_lex_state = 2}, + [1150] = {.lex_state = 125, .external_lex_state = 2}, + [1151] = {.lex_state = 125, .external_lex_state = 2}, + [1152] = {.lex_state = 125, .external_lex_state = 2}, + [1153] = {.lex_state = 125, .external_lex_state = 2}, + [1154] = {.lex_state = 125, .external_lex_state = 2}, + [1155] = {.lex_state = 125, .external_lex_state = 2}, + [1156] = {.lex_state = 3, .external_lex_state = 2}, + [1157] = {.lex_state = 3, .external_lex_state = 2}, + [1158] = {.lex_state = 3, .external_lex_state = 2}, + [1159] = {.lex_state = 3, .external_lex_state = 2}, + [1160] = {.lex_state = 3, .external_lex_state = 2}, + [1161] = {.lex_state = 3, .external_lex_state = 2}, + [1162] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1163] = {.lex_state = 9, .external_lex_state = 6}, [1164] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1165] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1166] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1165] = {.lex_state = 9, .external_lex_state = 6}, + [1166] = {.lex_state = 9, .external_lex_state = 6}, [1167] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1168] = {.lex_state = 125, .external_lex_state = 2}, - [1169] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1170] = {.lex_state = 125, .external_lex_state = 2}, + [1168] = {.lex_state = 9, .external_lex_state = 6}, + [1169] = {.lex_state = 9, .external_lex_state = 6}, + [1170] = {.lex_state = 9, .external_lex_state = 6}, [1171] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1172] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1173] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1174] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1172] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1173] = {.lex_state = 9, .external_lex_state = 6}, + [1174] = {.lex_state = 9, .external_lex_state = 6}, [1175] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1176] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1176] = {.lex_state = 9, .external_lex_state = 6}, [1177] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1178] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1179] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, @@ -8073,247 +8118,247 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1185] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1186] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1187] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1188] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1188] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1189] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1190] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1191] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1192] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1193] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1194] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1195] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1196] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1197] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1198] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1199] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1200] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1201] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1202] = {.lex_state = 125, .external_lex_state = 5}, + [1191] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1192] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1193] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1194] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1195] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1196] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1197] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1198] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1199] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1200] = {.lex_state = 125, .external_lex_state = 2}, + [1201] = {.lex_state = 125, .external_lex_state = 2}, + [1202] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1203] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1204] = {.lex_state = 125, .external_lex_state = 2}, - [1205] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1206] = {.lex_state = 125, .external_lex_state = 2}, - [1207] = {.lex_state = 125, .external_lex_state = 2}, - [1208] = {.lex_state = 125, .external_lex_state = 5}, - [1209] = {.lex_state = 125, .external_lex_state = 5}, - [1210] = {.lex_state = 125, .external_lex_state = 2}, - [1211] = {.lex_state = 125, .external_lex_state = 2}, - [1212] = {.lex_state = 125, .external_lex_state = 2}, + [1204] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1205] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1206] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1207] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1208] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1209] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1210] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1211] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1212] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1213] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1214] = {.lex_state = 125, .external_lex_state = 2}, - [1215] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1216] = {.lex_state = 125, .external_lex_state = 5}, - [1217] = {.lex_state = 125, .external_lex_state = 2}, - [1218] = {.lex_state = 125, .external_lex_state = 2}, - [1219] = {.lex_state = 125, .external_lex_state = 2}, + [1214] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1215] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1216] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1217] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1218] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1219] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1220] = {.lex_state = 125, .external_lex_state = 2}, [1221] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1222] = {.lex_state = 125, .external_lex_state = 2}, - [1223] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1224] = {.lex_state = 125, .external_lex_state = 2}, - [1225] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1226] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1227] = {.lex_state = 125, .external_lex_state = 5}, - [1228] = {.lex_state = 125, .external_lex_state = 5}, - [1229] = {.lex_state = 16, .external_lex_state = 7}, - [1230] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1231] = {.lex_state = 125, .external_lex_state = 5}, - [1232] = {.lex_state = 125, .external_lex_state = 5}, - [1233] = {.lex_state = 16, .external_lex_state = 7}, - [1234] = {.lex_state = 125, .external_lex_state = 5}, + [1223] = {.lex_state = 125, .external_lex_state = 2}, + [1224] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1225] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1226] = {.lex_state = 125, .external_lex_state = 2}, + [1227] = {.lex_state = 125, .external_lex_state = 2}, + [1228] = {.lex_state = 125, .external_lex_state = 2}, + [1229] = {.lex_state = 125, .external_lex_state = 2}, + [1230] = {.lex_state = 125, .external_lex_state = 2}, + [1231] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1232] = {.lex_state = 125, .external_lex_state = 2}, + [1233] = {.lex_state = 125, .external_lex_state = 2}, + [1234] = {.lex_state = 125, .external_lex_state = 2}, [1235] = {.lex_state = 125, .external_lex_state = 2}, - [1236] = {.lex_state = 125, .external_lex_state = 2}, - [1237] = {.lex_state = 125, .external_lex_state = 2}, + [1236] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1237] = {.lex_state = 125, .external_lex_state = 5}, [1238] = {.lex_state = 125, .external_lex_state = 5}, - [1239] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1240] = {.lex_state = 16, .external_lex_state = 7}, + [1239] = {.lex_state = 125, .external_lex_state = 5}, + [1240] = {.lex_state = 125, .external_lex_state = 2}, [1241] = {.lex_state = 125, .external_lex_state = 5}, - [1242] = {.lex_state = 16, .external_lex_state = 7}, - [1243] = {.lex_state = 125, .external_lex_state = 2}, - [1244] = {.lex_state = 16, .external_lex_state = 7}, - [1245] = {.lex_state = 125, .external_lex_state = 5}, + [1242] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1243] = {.lex_state = 16, .external_lex_state = 7}, + [1244] = {.lex_state = 125, .external_lex_state = 5}, + [1245] = {.lex_state = 16, .external_lex_state = 7}, [1246] = {.lex_state = 125, .external_lex_state = 2}, - [1247] = {.lex_state = 125, .external_lex_state = 5}, + [1247] = {.lex_state = 16, .external_lex_state = 7}, [1248] = {.lex_state = 125, .external_lex_state = 5}, - [1249] = {.lex_state = 125, .external_lex_state = 5}, - [1250] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1249] = {.lex_state = 16, .external_lex_state = 7}, + [1250] = {.lex_state = 125, .external_lex_state = 5}, [1251] = {.lex_state = 125, .external_lex_state = 5}, - [1252] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1252] = {.lex_state = 125, .external_lex_state = 5}, [1253] = {.lex_state = 125, .external_lex_state = 2}, - [1254] = {.lex_state = 9, .external_lex_state = 6}, - [1255] = {.lex_state = 9, .external_lex_state = 6}, - [1256] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1257] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1258] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1254] = {.lex_state = 16, .external_lex_state = 7}, + [1255] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1256] = {.lex_state = 125, .external_lex_state = 2}, + [1257] = {.lex_state = 125, .external_lex_state = 5}, + [1258] = {.lex_state = 125, .external_lex_state = 2}, [1259] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1260] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1261] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, - [1262] = {.lex_state = 125, .external_lex_state = 2}, - [1263] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1264] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1265] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1266] = {.lex_state = 9, .external_lex_state = 6}, + [1261] = {.lex_state = 125, .external_lex_state = 5}, + [1262] = {.lex_state = 125, .external_lex_state = 5}, + [1263] = {.lex_state = 125, .external_lex_state = 5}, + [1264] = {.lex_state = 125, .external_lex_state = 5}, + [1265] = {.lex_state = 125, .external_lex_state = 5}, + [1266] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1267] = {.lex_state = 125, .external_lex_state = 2}, - [1268] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, - [1269] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1270] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1271] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, - [1272] = {.lex_state = 9, .external_lex_state = 6}, - [1273] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, - [1274] = {.lex_state = 125, .external_lex_state = 5}, + [1268] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1269] = {.lex_state = 125, .external_lex_state = 5}, + [1270] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1271] = {.lex_state = 125, .external_lex_state = 2}, + [1272] = {.lex_state = 125, .external_lex_state = 5}, + [1273] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1274] = {.lex_state = 9, .external_lex_state = 6}, [1275] = {.lex_state = 9, .external_lex_state = 6}, - [1276] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1277] = {.lex_state = 125, .external_lex_state = 2}, - [1278] = {.lex_state = 9, .external_lex_state = 6}, - [1279] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1280] = {.lex_state = 125, .external_lex_state = 2}, - [1281] = {.lex_state = 9, .external_lex_state = 6}, - [1282] = {.lex_state = 125, .external_lex_state = 2}, - [1283] = {.lex_state = 125, .external_lex_state = 5}, - [1284] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, - [1285] = {.lex_state = 125, .external_lex_state = 5}, - [1286] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, - [1287] = {.lex_state = 9, .external_lex_state = 6}, + [1276] = {.lex_state = 9, .external_lex_state = 6}, + [1277] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1278] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1279] = {.lex_state = 125, .external_lex_state = 5}, + [1280] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1281] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1282] = {.lex_state = 9, .external_lex_state = 6}, + [1283] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1284] = {.lex_state = 9, .external_lex_state = 6}, + [1285] = {.lex_state = 125, .external_lex_state = 2}, + [1286] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1287] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, [1288] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1289] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, - [1290] = {.lex_state = 9, .external_lex_state = 6}, - [1291] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1292] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1293] = {.lex_state = 125, .external_lex_state = 2}, + [1289] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1290] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1291] = {.lex_state = 125, .external_lex_state = 5}, + [1292] = {.lex_state = 125, .external_lex_state = 2}, + [1293] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, [1294] = {.lex_state = 9, .external_lex_state = 6}, - [1295] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1296] = {.lex_state = 125, .external_lex_state = 2}, - [1297] = {.lex_state = 125, .external_lex_state = 2}, - [1298] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1295] = {.lex_state = 9, .external_lex_state = 6}, + [1296] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1297] = {.lex_state = 125, .external_lex_state = 5}, + [1298] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1299] = {.lex_state = 9, .external_lex_state = 6}, - [1300] = {.lex_state = 9, .external_lex_state = 6}, - [1301] = {.lex_state = 9, .external_lex_state = 6}, + [1300] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1301] = {.lex_state = 125, .external_lex_state = 5}, [1302] = {.lex_state = 9, .external_lex_state = 6}, - [1303] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1304] = {.lex_state = 125, .external_lex_state = 5}, + [1303] = {.lex_state = 9, .external_lex_state = 6}, + [1304] = {.lex_state = 9, .external_lex_state = 6}, [1305] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1306] = {.lex_state = 125, .external_lex_state = 2}, - [1307] = {.lex_state = 125, .external_lex_state = 2}, - [1308] = {.lex_state = 9, .external_lex_state = 6}, - [1309] = {.lex_state = 9, .external_lex_state = 6}, - [1310] = {.lex_state = 125, .external_lex_state = 2}, - [1311] = {.lex_state = 125, .external_lex_state = 5}, - [1312] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1313] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1306] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1307] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1308] = {.lex_state = 125, .external_lex_state = 2}, + [1309] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1310] = {.lex_state = 9, .external_lex_state = 6}, + [1311] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1312] = {.lex_state = 9, .external_lex_state = 6}, + [1313] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, [1314] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1315] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1316] = {.lex_state = 125, .external_lex_state = 5}, - [1317] = {.lex_state = 9, .external_lex_state = 6}, + [1316] = {.lex_state = 9, .external_lex_state = 6}, + [1317] = {.lex_state = 125, .external_lex_state = 2}, [1318] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1319] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1320] = {.lex_state = 10, .external_lex_state = 2}, - [1321] = {.lex_state = 125, .external_lex_state = 5}, + [1320] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1321] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1322] = {.lex_state = 125, .external_lex_state = 2}, - [1323] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1323] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, [1324] = {.lex_state = 125, .external_lex_state = 2}, - [1325] = {.lex_state = 125, .external_lex_state = 5}, - [1326] = {.lex_state = 3, .external_lex_state = 2}, + [1325] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1326] = {.lex_state = 9, .external_lex_state = 6}, [1327] = {.lex_state = 125, .external_lex_state = 2}, - [1328] = {.lex_state = 12, .external_lex_state = 8}, - [1329] = {.lex_state = 20, .external_lex_state = 8}, - [1330] = {.lex_state = 12, .external_lex_state = 8}, - [1331] = {.lex_state = 20, .external_lex_state = 8}, - [1332] = {.lex_state = 12, .external_lex_state = 8}, - [1333] = {.lex_state = 3, .external_lex_state = 2}, - [1334] = {.lex_state = 20, .external_lex_state = 8}, - [1335] = {.lex_state = 125, .external_lex_state = 5}, - [1336] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1337] = {.lex_state = 125, .external_lex_state = 2}, - [1338] = {.lex_state = 125, .external_lex_state = 2}, - [1339] = {.lex_state = 12, .external_lex_state = 8}, - [1340] = {.lex_state = 125, .external_lex_state = 2}, - [1341] = {.lex_state = 125, .external_lex_state = 5}, + [1328] = {.lex_state = 125, .external_lex_state = 2}, + [1329] = {.lex_state = 9, .external_lex_state = 6}, + [1330] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1331] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1332] = {.lex_state = 9, .external_lex_state = 6}, + [1333] = {.lex_state = 125, .external_lex_state = 5}, + [1334] = {.lex_state = 125, .external_lex_state = 2}, + [1335] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1336] = {.lex_state = 20, .external_lex_state = 8}, + [1337] = {.lex_state = 3, .external_lex_state = 2}, + [1338] = {.lex_state = 125, .external_lex_state = 5}, + [1339] = {.lex_state = 125, .external_lex_state = 2}, + [1340] = {.lex_state = 12, .external_lex_state = 8}, + [1341] = {.lex_state = 20, .external_lex_state = 8}, [1342] = {.lex_state = 125, .external_lex_state = 5}, - [1343] = {.lex_state = 125, .external_lex_state = 2}, + [1343] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1344] = {.lex_state = 125, .external_lex_state = 5}, [1345] = {.lex_state = 125, .external_lex_state = 2}, [1346] = {.lex_state = 125, .external_lex_state = 2}, - [1347] = {.lex_state = 125, .external_lex_state = 2}, - [1348] = {.lex_state = 18, .external_lex_state = 2}, - [1349] = {.lex_state = 12, .external_lex_state = 8}, - [1350] = {.lex_state = 12, .external_lex_state = 8}, - [1351] = {.lex_state = 20, .external_lex_state = 8}, - [1352] = {.lex_state = 20, .external_lex_state = 8}, + [1347] = {.lex_state = 12, .external_lex_state = 8}, + [1348] = {.lex_state = 12, .external_lex_state = 8}, + [1349] = {.lex_state = 125, .external_lex_state = 2}, + [1350] = {.lex_state = 20, .external_lex_state = 8}, + [1351] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1352] = {.lex_state = 125, .external_lex_state = 2}, [1353] = {.lex_state = 125, .external_lex_state = 2}, [1354] = {.lex_state = 125, .external_lex_state = 2}, - [1355] = {.lex_state = 18, .external_lex_state = 2}, - [1356] = {.lex_state = 10, .external_lex_state = 2}, - [1357] = {.lex_state = 12, .external_lex_state = 8}, + [1355] = {.lex_state = 125, .external_lex_state = 2}, + [1356] = {.lex_state = 125, .external_lex_state = 5}, + [1357] = {.lex_state = 125, .external_lex_state = 5}, [1358] = {.lex_state = 125, .external_lex_state = 5}, - [1359] = {.lex_state = 125, .external_lex_state = 5}, - [1360] = {.lex_state = 125, .external_lex_state = 2}, - [1361] = {.lex_state = 12, .external_lex_state = 8}, - [1362] = {.lex_state = 125, .external_lex_state = 2}, - [1363] = {.lex_state = 20, .external_lex_state = 8}, - [1364] = {.lex_state = 20, .external_lex_state = 8}, - [1365] = {.lex_state = 125, .external_lex_state = 5}, + [1359] = {.lex_state = 125, .external_lex_state = 2}, + [1360] = {.lex_state = 10, .external_lex_state = 2}, + [1361] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1362] = {.lex_state = 18, .external_lex_state = 2}, + [1363] = {.lex_state = 125, .external_lex_state = 2}, + [1364] = {.lex_state = 125, .external_lex_state = 2}, + [1365] = {.lex_state = 20, .external_lex_state = 8}, [1366] = {.lex_state = 125, .external_lex_state = 2}, - [1367] = {.lex_state = 125, .external_lex_state = 2}, - [1368] = {.lex_state = 125, .external_lex_state = 2}, - [1369] = {.lex_state = 20, .external_lex_state = 8}, - [1370] = {.lex_state = 125, .external_lex_state = 2}, + [1367] = {.lex_state = 12, .external_lex_state = 8}, + [1368] = {.lex_state = 3, .external_lex_state = 2}, + [1369] = {.lex_state = 10, .external_lex_state = 2}, + [1370] = {.lex_state = 18, .external_lex_state = 2}, [1371] = {.lex_state = 125, .external_lex_state = 2}, - [1372] = {.lex_state = 125, .external_lex_state = 5}, + [1372] = {.lex_state = 125, .external_lex_state = 2}, [1373] = {.lex_state = 125, .external_lex_state = 2}, - [1374] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1375] = {.lex_state = 16, .external_lex_state = 7}, + [1374] = {.lex_state = 125, .external_lex_state = 5}, + [1375] = {.lex_state = 20, .external_lex_state = 8}, [1376] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1377] = {.lex_state = 125, .external_lex_state = 2}, - [1378] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1379] = {.lex_state = 125, .external_lex_state = 5}, + [1377] = {.lex_state = 20, .external_lex_state = 8}, + [1378] = {.lex_state = 125, .external_lex_state = 2}, + [1379] = {.lex_state = 125, .external_lex_state = 2}, [1380] = {.lex_state = 125, .external_lex_state = 5}, - [1381] = {.lex_state = 125, .external_lex_state = 2}, - [1382] = {.lex_state = 125, .external_lex_state = 2}, + [1381] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1382] = {.lex_state = 125, .external_lex_state = 5}, [1383] = {.lex_state = 125, .external_lex_state = 2}, - [1384] = {.lex_state = 10, .external_lex_state = 2}, - [1385] = {.lex_state = 125, .external_lex_state = 5}, - [1386] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1387] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1388] = {.lex_state = 125, .external_lex_state = 2}, + [1384] = {.lex_state = 125, .external_lex_state = 2}, + [1385] = {.lex_state = 12, .external_lex_state = 8}, + [1386] = {.lex_state = 12, .external_lex_state = 8}, + [1387] = {.lex_state = 20, .external_lex_state = 8}, + [1388] = {.lex_state = 16, .external_lex_state = 7}, [1389] = {.lex_state = 125, .external_lex_state = 5}, - [1390] = {.lex_state = 125, .external_lex_state = 5}, - [1391] = {.lex_state = 125, .external_lex_state = 5}, - [1392] = {.lex_state = 125, .external_lex_state = 2}, - [1393] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1394] = {.lex_state = 125, .external_lex_state = 2}, - [1395] = {.lex_state = 12, .external_lex_state = 8}, - [1396] = {.lex_state = 20, .external_lex_state = 8}, - [1397] = {.lex_state = 125, .external_lex_state = 2}, - [1398] = {.lex_state = 18, .external_lex_state = 2}, + [1390] = {.lex_state = 125, .external_lex_state = 2}, + [1391] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1392] = {.lex_state = 125, .external_lex_state = 5}, + [1393] = {.lex_state = 125, .external_lex_state = 5}, + [1394] = {.lex_state = 10, .external_lex_state = 2}, + [1395] = {.lex_state = 125, .external_lex_state = 5}, + [1396] = {.lex_state = 125, .external_lex_state = 2}, + [1397] = {.lex_state = 20, .external_lex_state = 8}, + [1398] = {.lex_state = 125, .external_lex_state = 2}, [1399] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1400] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1401] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1402] = {.lex_state = 125, .external_lex_state = 2}, - [1403] = {.lex_state = 125, .external_lex_state = 2}, - [1404] = {.lex_state = 3, .external_lex_state = 2}, + [1400] = {.lex_state = 125, .external_lex_state = 5}, + [1401] = {.lex_state = 12, .external_lex_state = 8}, + [1402] = {.lex_state = 20, .external_lex_state = 8}, + [1403] = {.lex_state = 12, .external_lex_state = 8}, + [1404] = {.lex_state = 125, .external_lex_state = 2}, [1405] = {.lex_state = 125, .external_lex_state = 2}, [1406] = {.lex_state = 125, .external_lex_state = 2}, - [1407] = {.lex_state = 125, .external_lex_state = 2}, + [1407] = {.lex_state = 125, .external_lex_state = 5}, [1408] = {.lex_state = 125, .external_lex_state = 5}, - [1409] = {.lex_state = 125, .external_lex_state = 2}, - [1410] = {.lex_state = 125, .external_lex_state = 2}, + [1409] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1410] = {.lex_state = 18, .external_lex_state = 2}, [1411] = {.lex_state = 125, .external_lex_state = 2}, [1412] = {.lex_state = 125, .external_lex_state = 2}, [1413] = {.lex_state = 125, .external_lex_state = 2}, - [1414] = {.lex_state = 125, .external_lex_state = 2}, - [1415] = {.lex_state = 125, .external_lex_state = 5}, + [1414] = {.lex_state = 12, .external_lex_state = 8}, + [1415] = {.lex_state = 125, .external_lex_state = 2}, [1416] = {.lex_state = 125, .external_lex_state = 2}, [1417] = {.lex_state = 125, .external_lex_state = 2}, [1418] = {.lex_state = 125, .external_lex_state = 2}, [1419] = {.lex_state = 125, .external_lex_state = 2}, [1420] = {.lex_state = 125, .external_lex_state = 2}, [1421] = {.lex_state = 125, .external_lex_state = 2}, - [1422] = {.lex_state = 125, .external_lex_state = 2}, + [1422] = {.lex_state = 125, .external_lex_state = 5}, [1423] = {.lex_state = 125, .external_lex_state = 2}, - [1424] = {.lex_state = 6, .external_lex_state = 2}, - [1425] = {.lex_state = 125, .external_lex_state = 5}, + [1424] = {.lex_state = 125, .external_lex_state = 2}, + [1425] = {.lex_state = 125, .external_lex_state = 2}, [1426] = {.lex_state = 125, .external_lex_state = 2}, [1427] = {.lex_state = 125, .external_lex_state = 2}, - [1428] = {.lex_state = 6, .external_lex_state = 2}, + [1428] = {.lex_state = 3, .external_lex_state = 2}, [1429] = {.lex_state = 125, .external_lex_state = 2}, [1430] = {.lex_state = 125, .external_lex_state = 2}, [1431] = {.lex_state = 125, .external_lex_state = 2}, @@ -8321,84 +8366,84 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1433] = {.lex_state = 125, .external_lex_state = 2}, [1434] = {.lex_state = 125, .external_lex_state = 2}, [1435] = {.lex_state = 125, .external_lex_state = 2}, - [1436] = {.lex_state = 125, .external_lex_state = 2}, + [1436] = {.lex_state = 6, .external_lex_state = 2}, [1437] = {.lex_state = 125, .external_lex_state = 2}, [1438] = {.lex_state = 125, .external_lex_state = 2}, - [1439] = {.lex_state = 125, .external_lex_state = 5}, + [1439] = {.lex_state = 125, .external_lex_state = 2}, [1440] = {.lex_state = 125, .external_lex_state = 2}, [1441] = {.lex_state = 125, .external_lex_state = 2}, [1442] = {.lex_state = 125, .external_lex_state = 2}, [1443] = {.lex_state = 125, .external_lex_state = 2}, - [1444] = {.lex_state = 6, .external_lex_state = 2}, - [1445] = {.lex_state = 125, .external_lex_state = 2}, - [1446] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, - [1447] = {.lex_state = 125, .external_lex_state = 5}, + [1444] = {.lex_state = 125, .external_lex_state = 2}, + [1445] = {.lex_state = 125, .external_lex_state = 5}, + [1446] = {.lex_state = 125, .external_lex_state = 2}, + [1447] = {.lex_state = 6, .external_lex_state = 2}, [1448] = {.lex_state = 125, .external_lex_state = 2}, [1449] = {.lex_state = 125, .external_lex_state = 2}, [1450] = {.lex_state = 125, .external_lex_state = 2}, [1451] = {.lex_state = 125, .external_lex_state = 2}, [1452] = {.lex_state = 125, .external_lex_state = 2}, - [1453] = {.lex_state = 125, .external_lex_state = 5}, + [1453] = {.lex_state = 125, .external_lex_state = 2}, [1454] = {.lex_state = 125, .external_lex_state = 2}, [1455] = {.lex_state = 125, .external_lex_state = 2}, - [1456] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1456] = {.lex_state = 125, .external_lex_state = 2}, [1457] = {.lex_state = 125, .external_lex_state = 2}, [1458] = {.lex_state = 125, .external_lex_state = 2}, - [1459] = {.lex_state = 125, .external_lex_state = 2}, + [1459] = {.lex_state = 125, .external_lex_state = 5}, [1460] = {.lex_state = 125, .external_lex_state = 2}, [1461] = {.lex_state = 125, .external_lex_state = 2}, - [1462] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1463] = {.lex_state = 125, .external_lex_state = 2}, - [1464] = {.lex_state = 125, .external_lex_state = 2}, + [1462] = {.lex_state = 125, .external_lex_state = 5}, + [1463] = {.lex_state = 125, .external_lex_state = 5}, + [1464] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1465] = {.lex_state = 125, .external_lex_state = 2}, [1466] = {.lex_state = 125, .external_lex_state = 2}, [1467] = {.lex_state = 125, .external_lex_state = 2}, - [1468] = {.lex_state = 125, .external_lex_state = 5}, + [1468] = {.lex_state = 125, .external_lex_state = 2}, [1469] = {.lex_state = 125, .external_lex_state = 5}, - [1470] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1471] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1472] = {.lex_state = 125, .external_lex_state = 2}, - [1473] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1470] = {.lex_state = 125, .external_lex_state = 5}, + [1471] = {.lex_state = 3, .external_lex_state = 2}, + [1472] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1473] = {.lex_state = 125, .external_lex_state = 2}, [1474] = {.lex_state = 125, .external_lex_state = 2}, [1475] = {.lex_state = 125, .external_lex_state = 2}, - [1476] = {.lex_state = 125, .external_lex_state = 2}, + [1476] = {.lex_state = 6, .external_lex_state = 2}, [1477] = {.lex_state = 125, .external_lex_state = 2}, - [1478] = {.lex_state = 3, .external_lex_state = 2}, - [1479] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1478] = {.lex_state = 125, .external_lex_state = 5}, + [1479] = {.lex_state = 125, .external_lex_state = 5}, [1480] = {.lex_state = 125, .external_lex_state = 2}, - [1481] = {.lex_state = 125, .external_lex_state = 2}, - [1482] = {.lex_state = 125, .external_lex_state = 5}, + [1481] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1482] = {.lex_state = 125, .external_lex_state = 2}, [1483] = {.lex_state = 125, .external_lex_state = 2}, - [1484] = {.lex_state = 125, .external_lex_state = 2}, - [1485] = {.lex_state = 125, .external_lex_state = 2}, + [1484] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1485] = {.lex_state = 6, .external_lex_state = 2}, [1486] = {.lex_state = 125, .external_lex_state = 2}, - [1487] = {.lex_state = 125, .external_lex_state = 2}, + [1487] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1488] = {.lex_state = 125, .external_lex_state = 2}, - [1489] = {.lex_state = 125, .external_lex_state = 2}, - [1490] = {.lex_state = 125, .external_lex_state = 2}, + [1489] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1490] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, [1491] = {.lex_state = 125, .external_lex_state = 2}, - [1492] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1493] = {.lex_state = 125, .external_lex_state = 5}, + [1492] = {.lex_state = 125, .external_lex_state = 2}, + [1493] = {.lex_state = 125, .external_lex_state = 2}, [1494] = {.lex_state = 125, .external_lex_state = 2}, - [1495] = {.lex_state = 125, .external_lex_state = 5}, - [1496] = {.lex_state = 6, .external_lex_state = 2}, - [1497] = {.lex_state = 125, .external_lex_state = 5}, + [1495] = {.lex_state = 125, .external_lex_state = 2}, + [1496] = {.lex_state = 125, .external_lex_state = 2}, + [1497] = {.lex_state = 125, .external_lex_state = 2}, [1498] = {.lex_state = 125, .external_lex_state = 2}, [1499] = {.lex_state = 125, .external_lex_state = 2}, - [1500] = {.lex_state = 125, .external_lex_state = 5}, - [1501] = {.lex_state = 125, .external_lex_state = 2}, - [1502] = {.lex_state = 125, .external_lex_state = 2}, - [1503] = {.lex_state = 125, .external_lex_state = 2}, + [1500] = {.lex_state = 125, .external_lex_state = 2}, + [1501] = {.lex_state = 125, .external_lex_state = 5}, + [1502] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1503] = {.lex_state = 125, .external_lex_state = 5}, [1504] = {.lex_state = 125, .external_lex_state = 2}, - [1505] = {.lex_state = 125, .external_lex_state = 5}, + [1505] = {.lex_state = 125, .external_lex_state = 2}, [1506] = {.lex_state = 125, .external_lex_state = 2}, - [1507] = {.lex_state = 125, .external_lex_state = 2}, + [1507] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1508] = {.lex_state = 125, .external_lex_state = 2}, [1509] = {.lex_state = 125, .external_lex_state = 2}, [1510] = {.lex_state = 125, .external_lex_state = 2}, - [1511] = {.lex_state = 125, .external_lex_state = 2}, - [1512] = {.lex_state = 6, .external_lex_state = 2}, - [1513] = {.lex_state = 125, .external_lex_state = 5}, + [1511] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1512] = {.lex_state = 125, .external_lex_state = 5}, + [1513] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1514] = {.lex_state = 125, .external_lex_state = 2}, [1515] = {.lex_state = 125, .external_lex_state = 2}, [1516] = {.lex_state = 125, .external_lex_state = 2}, @@ -8406,12 +8451,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1518] = {.lex_state = 125, .external_lex_state = 2}, [1519] = {.lex_state = 125, .external_lex_state = 2}, [1520] = {.lex_state = 125, .external_lex_state = 2}, - [1521] = {.lex_state = 125, .external_lex_state = 5}, - [1522] = {.lex_state = 125, .external_lex_state = 5}, + [1521] = {.lex_state = 6, .external_lex_state = 2}, + [1522] = {.lex_state = 125, .external_lex_state = 2}, [1523] = {.lex_state = 125, .external_lex_state = 2}, [1524] = {.lex_state = 125, .external_lex_state = 2}, [1525] = {.lex_state = 125, .external_lex_state = 2}, - [1526] = {.lex_state = 125, .external_lex_state = 5}, + [1526] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1527] = {.lex_state = 125, .external_lex_state = 2}, [1528] = {.lex_state = 125, .external_lex_state = 2}, [1529] = {.lex_state = 125, .external_lex_state = 2}, @@ -8419,7 +8464,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1531] = {.lex_state = 125, .external_lex_state = 2}, [1532] = {.lex_state = 125, .external_lex_state = 2}, [1533] = {.lex_state = 125, .external_lex_state = 2}, - [1534] = {.lex_state = 6, .external_lex_state = 2}, + [1534] = {.lex_state = 125, .external_lex_state = 5}, [1535] = {.lex_state = 125, .external_lex_state = 2}, [1536] = {.lex_state = 125, .external_lex_state = 2}, [1537] = {.lex_state = 125, .external_lex_state = 2}, @@ -8431,11 +8476,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1543] = {.lex_state = 125, .external_lex_state = 2}, [1544] = {.lex_state = 125, .external_lex_state = 2}, [1545] = {.lex_state = 125, .external_lex_state = 2}, - [1546] = {.lex_state = 125, .external_lex_state = 2}, + [1546] = {.lex_state = 125, .external_lex_state = 5}, [1547] = {.lex_state = 125, .external_lex_state = 2}, - [1548] = {.lex_state = 125, .external_lex_state = 2}, + [1548] = {.lex_state = 125, .external_lex_state = 5}, [1549] = {.lex_state = 125, .external_lex_state = 2}, - [1550] = {.lex_state = 6, .external_lex_state = 2}, + [1550] = {.lex_state = 125, .external_lex_state = 2}, [1551] = {.lex_state = 125, .external_lex_state = 2}, [1552] = {.lex_state = 125, .external_lex_state = 2}, [1553] = {.lex_state = 125, .external_lex_state = 2}, @@ -8453,11 +8498,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1565] = {.lex_state = 125, .external_lex_state = 2}, [1566] = {.lex_state = 125, .external_lex_state = 2}, [1567] = {.lex_state = 125, .external_lex_state = 2}, - [1568] = {.lex_state = 125, .external_lex_state = 2}, + [1568] = {.lex_state = 125, .external_lex_state = 5}, [1569] = {.lex_state = 125, .external_lex_state = 2}, [1570] = {.lex_state = 125, .external_lex_state = 2}, [1571] = {.lex_state = 125, .external_lex_state = 2}, - [1572] = {.lex_state = 125, .external_lex_state = 2}, + [1572] = {.lex_state = 125, .external_lex_state = 5}, [1573] = {.lex_state = 125, .external_lex_state = 2}, [1574] = {.lex_state = 125, .external_lex_state = 2}, [1575] = {.lex_state = 125, .external_lex_state = 2}, @@ -8494,7 +8539,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1606] = {.lex_state = 125, .external_lex_state = 2}, [1607] = {.lex_state = 125, .external_lex_state = 2}, [1608] = {.lex_state = 125, .external_lex_state = 2}, - [1609] = {.lex_state = 125, .external_lex_state = 2}, + [1609] = {.lex_state = 125, .external_lex_state = 5}, [1610] = {.lex_state = 125, .external_lex_state = 2}, [1611] = {.lex_state = 125, .external_lex_state = 2}, [1612] = {.lex_state = 125, .external_lex_state = 2}, @@ -8505,9 +8550,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1617] = {.lex_state = 125, .external_lex_state = 2}, [1618] = {.lex_state = 125, .external_lex_state = 2}, [1619] = {.lex_state = 125, .external_lex_state = 2}, - [1620] = {.lex_state = 125, .external_lex_state = 5}, + [1620] = {.lex_state = 125, .external_lex_state = 2}, [1621] = {.lex_state = 125, .external_lex_state = 2}, - [1622] = {.lex_state = 125, .external_lex_state = 2}, + [1622] = {.lex_state = 6, .external_lex_state = 2}, [1623] = {.lex_state = 125, .external_lex_state = 2}, [1624] = {.lex_state = 125, .external_lex_state = 2}, [1625] = {.lex_state = 125, .external_lex_state = 2}, @@ -8516,7 +8561,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1628] = {.lex_state = 125, .external_lex_state = 2}, [1629] = {.lex_state = 125, .external_lex_state = 2}, [1630] = {.lex_state = 125, .external_lex_state = 2}, - [1631] = {.lex_state = 125, .external_lex_state = 2}, + [1631] = {.lex_state = 125, .external_lex_state = 5}, [1632] = {.lex_state = 125, .external_lex_state = 2}, [1633] = {.lex_state = 125, .external_lex_state = 2}, [1634] = {.lex_state = 125, .external_lex_state = 2}, @@ -8527,8 +8572,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1639] = {.lex_state = 125, .external_lex_state = 2}, [1640] = {.lex_state = 125, .external_lex_state = 2}, [1641] = {.lex_state = 125, .external_lex_state = 2}, - [1642] = {.lex_state = 125, .external_lex_state = 2}, - [1643] = {.lex_state = 125, .external_lex_state = 2}, + [1642] = {.lex_state = 125, .external_lex_state = 5}, + [1643] = {.lex_state = 125, .external_lex_state = 5}, [1644] = {.lex_state = 125, .external_lex_state = 2}, [1645] = {.lex_state = 125, .external_lex_state = 2}, [1646] = {.lex_state = 125, .external_lex_state = 2}, @@ -8539,105 +8584,105 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1651] = {.lex_state = 125, .external_lex_state = 2}, [1652] = {.lex_state = 125, .external_lex_state = 2}, [1653] = {.lex_state = 125, .external_lex_state = 2}, - [1654] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1655] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1654] = {.lex_state = 125, .external_lex_state = 2}, + [1655] = {.lex_state = 125, .external_lex_state = 2}, [1656] = {.lex_state = 125, .external_lex_state = 2}, [1657] = {.lex_state = 125, .external_lex_state = 2}, [1658] = {.lex_state = 125, .external_lex_state = 2}, [1659] = {.lex_state = 125, .external_lex_state = 2}, - [1660] = {.lex_state = 125, .external_lex_state = 2}, + [1660] = {.lex_state = 6, .external_lex_state = 2}, [1661] = {.lex_state = 125, .external_lex_state = 2}, - [1662] = {.lex_state = 125, .external_lex_state = 5}, + [1662] = {.lex_state = 125, .external_lex_state = 2}, [1663] = {.lex_state = 125, .external_lex_state = 2}, - [1664] = {.lex_state = 125, .external_lex_state = 5}, + [1664] = {.lex_state = 125, .external_lex_state = 2}, [1665] = {.lex_state = 125, .external_lex_state = 2}, - [1666] = {.lex_state = 125, .external_lex_state = 5}, + [1666] = {.lex_state = 125, .external_lex_state = 2}, [1667] = {.lex_state = 125, .external_lex_state = 2}, [1668] = {.lex_state = 125, .external_lex_state = 2}, [1669] = {.lex_state = 125, .external_lex_state = 2}, - [1670] = {.lex_state = 125, .external_lex_state = 2}, + [1670] = {.lex_state = 125, .external_lex_state = 5}, [1671] = {.lex_state = 125, .external_lex_state = 2}, [1672] = {.lex_state = 125, .external_lex_state = 2}, [1673] = {.lex_state = 125, .external_lex_state = 5}, - [1674] = {.lex_state = 125, .external_lex_state = 5}, + [1674] = {.lex_state = 125, .external_lex_state = 2}, [1675] = {.lex_state = 125, .external_lex_state = 2}, [1676] = {.lex_state = 125, .external_lex_state = 2}, - [1677] = {.lex_state = 125, .external_lex_state = 2}, - [1678] = {.lex_state = 125, .external_lex_state = 5}, + [1677] = {.lex_state = 125, .external_lex_state = 5}, + [1678] = {.lex_state = 125, .external_lex_state = 2}, [1679] = {.lex_state = 125, .external_lex_state = 2}, [1680] = {.lex_state = 125, .external_lex_state = 2}, [1681] = {.lex_state = 125, .external_lex_state = 2}, [1682] = {.lex_state = 125, .external_lex_state = 2}, [1683] = {.lex_state = 125, .external_lex_state = 2}, [1684] = {.lex_state = 125, .external_lex_state = 2}, - [1685] = {.lex_state = 125, .external_lex_state = 5}, - [1686] = {.lex_state = 125, .external_lex_state = 5}, - [1687] = {.lex_state = 125, .external_lex_state = 2}, + [1685] = {.lex_state = 125, .external_lex_state = 2}, + [1686] = {.lex_state = 125, .external_lex_state = 2}, + [1687] = {.lex_state = 125, .external_lex_state = 5}, [1688] = {.lex_state = 125, .external_lex_state = 2}, - [1689] = {.lex_state = 125, .external_lex_state = 5}, + [1689] = {.lex_state = 125, .external_lex_state = 2}, [1690] = {.lex_state = 125, .external_lex_state = 2}, [1691] = {.lex_state = 125, .external_lex_state = 2}, [1692] = {.lex_state = 125, .external_lex_state = 2}, [1693] = {.lex_state = 125, .external_lex_state = 2}, [1694] = {.lex_state = 125, .external_lex_state = 2}, - [1695] = {.lex_state = 125, .external_lex_state = 5}, + [1695] = {.lex_state = 125, .external_lex_state = 2}, [1696] = {.lex_state = 125, .external_lex_state = 2}, [1697] = {.lex_state = 125, .external_lex_state = 2}, [1698] = {.lex_state = 125, .external_lex_state = 2}, [1699] = {.lex_state = 125, .external_lex_state = 2}, [1700] = {.lex_state = 125, .external_lex_state = 2}, [1701] = {.lex_state = 125, .external_lex_state = 2}, - [1702] = {.lex_state = 125, .external_lex_state = 5}, + [1702] = {.lex_state = 6, .external_lex_state = 2}, [1703] = {.lex_state = 125, .external_lex_state = 2}, [1704] = {.lex_state = 125, .external_lex_state = 2}, [1705] = {.lex_state = 125, .external_lex_state = 2}, [1706] = {.lex_state = 125, .external_lex_state = 2}, [1707] = {.lex_state = 125, .external_lex_state = 2}, - [1708] = {.lex_state = 125, .external_lex_state = 2}, + [1708] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1709] = {.lex_state = 125, .external_lex_state = 2}, [1710] = {.lex_state = 125, .external_lex_state = 2}, [1711] = {.lex_state = 125, .external_lex_state = 2}, [1712] = {.lex_state = 125, .external_lex_state = 2}, [1713] = {.lex_state = 125, .external_lex_state = 2}, - [1714] = {.lex_state = 125, .external_lex_state = 2}, - [1715] = {.lex_state = 125, .external_lex_state = 2}, + [1714] = {.lex_state = 125, .external_lex_state = 5}, + [1715] = {.lex_state = 125, .external_lex_state = 5}, [1716] = {.lex_state = 125, .external_lex_state = 2}, [1717] = {.lex_state = 125, .external_lex_state = 2}, [1718] = {.lex_state = 125, .external_lex_state = 2}, [1719] = {.lex_state = 125, .external_lex_state = 2}, - [1720] = {.lex_state = 125, .external_lex_state = 2}, + [1720] = {.lex_state = 125, .external_lex_state = 5}, [1721] = {.lex_state = 125, .external_lex_state = 2}, [1722] = {.lex_state = 125, .external_lex_state = 2}, - [1723] = {.lex_state = 125, .external_lex_state = 2}, - [1724] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1723] = {.lex_state = 125, .external_lex_state = 5}, + [1724] = {.lex_state = 125, .external_lex_state = 2}, [1725] = {.lex_state = 125, .external_lex_state = 2}, [1726] = {.lex_state = 125, .external_lex_state = 2}, - [1727] = {.lex_state = 125, .external_lex_state = 5}, + [1727] = {.lex_state = 125, .external_lex_state = 2}, [1728] = {.lex_state = 125, .external_lex_state = 2}, [1729] = {.lex_state = 125, .external_lex_state = 2}, [1730] = {.lex_state = 125, .external_lex_state = 2}, [1731] = {.lex_state = 125, .external_lex_state = 5}, - [1732] = {.lex_state = 125, .external_lex_state = 5}, + [1732] = {.lex_state = 125, .external_lex_state = 2}, [1733] = {.lex_state = 125, .external_lex_state = 2}, [1734] = {.lex_state = 125, .external_lex_state = 2}, [1735] = {.lex_state = 125, .external_lex_state = 2}, - [1736] = {.lex_state = 6, .external_lex_state = 2}, - [1737] = {.lex_state = 125, .external_lex_state = 5}, - [1738] = {.lex_state = 125, .external_lex_state = 2}, + [1736] = {.lex_state = 125, .external_lex_state = 2}, + [1737] = {.lex_state = 125, .external_lex_state = 2}, + [1738] = {.lex_state = 125, .external_lex_state = 5}, [1739] = {.lex_state = 125, .external_lex_state = 2}, [1740] = {.lex_state = 125, .external_lex_state = 2}, [1741] = {.lex_state = 125, .external_lex_state = 2}, [1742] = {.lex_state = 125, .external_lex_state = 2}, - [1743] = {.lex_state = 125, .external_lex_state = 2}, + [1743] = {.lex_state = 125, .external_lex_state = 5}, [1744] = {.lex_state = 125, .external_lex_state = 2}, [1745] = {.lex_state = 125, .external_lex_state = 2}, [1746] = {.lex_state = 125, .external_lex_state = 2}, [1747] = {.lex_state = 125, .external_lex_state = 2}, - [1748] = {.lex_state = 125, .external_lex_state = 2}, + [1748] = {.lex_state = 125, .external_lex_state = 5}, [1749] = {.lex_state = 125, .external_lex_state = 2}, [1750] = {.lex_state = 125, .external_lex_state = 2}, - [1751] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1752] = {.lex_state = 125, .external_lex_state = 2}, + [1751] = {.lex_state = 125, .external_lex_state = 5}, + [1752] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1753] = {.lex_state = 125, .external_lex_state = 2}, [1754] = {.lex_state = 125, .external_lex_state = 2}, [1755] = {.lex_state = 125, .external_lex_state = 2}, @@ -8654,98 +8699,98 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1766] = {.lex_state = 125, .external_lex_state = 2}, [1767] = {.lex_state = 125, .external_lex_state = 2}, [1768] = {.lex_state = 125, .external_lex_state = 2}, - [1769] = {.lex_state = 2, .external_lex_state = 9}, - [1770] = {.lex_state = 32, .external_lex_state = 2}, + [1769] = {.lex_state = 125, .external_lex_state = 2}, + [1770] = {.lex_state = 125, .external_lex_state = 2}, [1771] = {.lex_state = 125, .external_lex_state = 2}, - [1772] = {.lex_state = 125, .external_lex_state = 2}, + [1772] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1773] = {.lex_state = 125, .external_lex_state = 2}, [1774] = {.lex_state = 125, .external_lex_state = 2}, [1775] = {.lex_state = 125, .external_lex_state = 2}, [1776] = {.lex_state = 125, .external_lex_state = 2}, - [1777] = {.lex_state = 125, .external_lex_state = 2}, + [1777] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1778] = {.lex_state = 125, .external_lex_state = 2}, [1779] = {.lex_state = 125, .external_lex_state = 2}, [1780] = {.lex_state = 125, .external_lex_state = 2}, [1781] = {.lex_state = 125, .external_lex_state = 2}, [1782] = {.lex_state = 125, .external_lex_state = 2}, [1783] = {.lex_state = 125, .external_lex_state = 2}, - [1784] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1785] = {.lex_state = 2, .external_lex_state = 9}, - [1786] = {.lex_state = 125, .external_lex_state = 2}, - [1787] = {.lex_state = 32, .external_lex_state = 2}, - [1788] = {.lex_state = 125, .external_lex_state = 2}, + [1784] = {.lex_state = 125, .external_lex_state = 2}, + [1785] = {.lex_state = 125, .external_lex_state = 2}, + [1786] = {.lex_state = 32, .external_lex_state = 2}, + [1787] = {.lex_state = 125, .external_lex_state = 2}, + [1788] = {.lex_state = 32, .external_lex_state = 2}, [1789] = {.lex_state = 125, .external_lex_state = 2}, [1790] = {.lex_state = 125, .external_lex_state = 2}, - [1791] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1791] = {.lex_state = 125, .external_lex_state = 2}, [1792] = {.lex_state = 125, .external_lex_state = 2}, - [1793] = {.lex_state = 125, .external_lex_state = 2}, + [1793] = {.lex_state = 2, .external_lex_state = 9}, [1794] = {.lex_state = 125, .external_lex_state = 2}, - [1795] = {.lex_state = 125, .external_lex_state = 2}, + [1795] = {.lex_state = 2, .external_lex_state = 9}, [1796] = {.lex_state = 125, .external_lex_state = 2}, - [1797] = {.lex_state = 125, .external_lex_state = 2}, + [1797] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1798] = {.lex_state = 125, .external_lex_state = 2}, [1799] = {.lex_state = 125, .external_lex_state = 2}, [1800] = {.lex_state = 125, .external_lex_state = 2}, [1801] = {.lex_state = 125, .external_lex_state = 2}, [1802] = {.lex_state = 125, .external_lex_state = 2}, [1803] = {.lex_state = 125, .external_lex_state = 2}, - [1804] = {.lex_state = 125, .external_lex_state = 2}, + [1804] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1805] = {.lex_state = 125, .external_lex_state = 2}, - [1806] = {.lex_state = 125, .external_lex_state = 2}, + [1806] = {.lex_state = 32, .external_lex_state = 2}, [1807] = {.lex_state = 125, .external_lex_state = 2}, - [1808] = {.lex_state = 32, .external_lex_state = 2}, + [1808] = {.lex_state = 125, .external_lex_state = 2}, [1809] = {.lex_state = 125, .external_lex_state = 2}, [1810] = {.lex_state = 125, .external_lex_state = 2}, - [1811] = {.lex_state = 125, .external_lex_state = 2}, + [1811] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1812] = {.lex_state = 125, .external_lex_state = 2}, [1813] = {.lex_state = 125, .external_lex_state = 2}, [1814] = {.lex_state = 125, .external_lex_state = 2}, - [1815] = {.lex_state = 125, .external_lex_state = 2}, + [1815] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1816] = {.lex_state = 125, .external_lex_state = 2}, [1817] = {.lex_state = 125, .external_lex_state = 2}, [1818] = {.lex_state = 125, .external_lex_state = 2}, [1819] = {.lex_state = 125, .external_lex_state = 2}, [1820] = {.lex_state = 125, .external_lex_state = 2}, [1821] = {.lex_state = 125, .external_lex_state = 2}, - [1822] = {.lex_state = 32, .external_lex_state = 2}, + [1822] = {.lex_state = 125, .external_lex_state = 2}, [1823] = {.lex_state = 125, .external_lex_state = 2}, [1824] = {.lex_state = 125, .external_lex_state = 2}, - [1825] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1825] = {.lex_state = 125, .external_lex_state = 2}, [1826] = {.lex_state = 125, .external_lex_state = 2}, [1827] = {.lex_state = 125, .external_lex_state = 2}, [1828] = {.lex_state = 125, .external_lex_state = 2}, - [1829] = {.lex_state = 2, .external_lex_state = 9}, + [1829] = {.lex_state = 125, .external_lex_state = 2}, [1830] = {.lex_state = 125, .external_lex_state = 2}, - [1831] = {.lex_state = 125, .external_lex_state = 2}, - [1832] = {.lex_state = 2, .external_lex_state = 9}, + [1831] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1832] = {.lex_state = 125, .external_lex_state = 2}, [1833] = {.lex_state = 125, .external_lex_state = 2}, [1834] = {.lex_state = 125, .external_lex_state = 2}, [1835] = {.lex_state = 125, .external_lex_state = 2}, - [1836] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1836] = {.lex_state = 125, .external_lex_state = 2}, [1837] = {.lex_state = 125, .external_lex_state = 2}, [1838] = {.lex_state = 125, .external_lex_state = 2}, [1839] = {.lex_state = 125, .external_lex_state = 2}, [1840] = {.lex_state = 125, .external_lex_state = 2}, [1841] = {.lex_state = 125, .external_lex_state = 2}, - [1842] = {.lex_state = 125, .external_lex_state = 2}, + [1842] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1843] = {.lex_state = 125, .external_lex_state = 2}, - [1844] = {.lex_state = 125, .external_lex_state = 2}, + [1844] = {.lex_state = 2, .external_lex_state = 9}, [1845] = {.lex_state = 125, .external_lex_state = 2}, [1846] = {.lex_state = 125, .external_lex_state = 2}, [1847] = {.lex_state = 125, .external_lex_state = 2}, - [1848] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1848] = {.lex_state = 125, .external_lex_state = 2}, [1849] = {.lex_state = 125, .external_lex_state = 2}, [1850] = {.lex_state = 125, .external_lex_state = 2}, - [1851] = {.lex_state = 125, .external_lex_state = 2}, + [1851] = {.lex_state = 2, .external_lex_state = 9}, [1852] = {.lex_state = 125, .external_lex_state = 2}, [1853] = {.lex_state = 125, .external_lex_state = 2}, [1854] = {.lex_state = 125, .external_lex_state = 2}, - [1855] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1855] = {.lex_state = 125, .external_lex_state = 2}, [1856] = {.lex_state = 125, .external_lex_state = 2}, [1857] = {.lex_state = 125, .external_lex_state = 2}, [1858] = {.lex_state = 125, .external_lex_state = 2}, [1859] = {.lex_state = 125, .external_lex_state = 2}, - [1860] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1860] = {.lex_state = 125, .external_lex_state = 2}, [1861] = {.lex_state = 125, .external_lex_state = 2}, [1862] = {.lex_state = 125, .external_lex_state = 2}, [1863] = {.lex_state = 125, .external_lex_state = 2}, @@ -8755,6 +8800,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1867] = {.lex_state = 125, .external_lex_state = 2}, [1868] = {.lex_state = 125, .external_lex_state = 2}, [1869] = {.lex_state = 125, .external_lex_state = 2}, + [1870] = {.lex_state = 125, .external_lex_state = 2}, + [1871] = {.lex_state = 125, .external_lex_state = 2}, + [1872] = {.lex_state = 125, .external_lex_state = 2}, + [1873] = {.lex_state = 125, .external_lex_state = 2}, + [1874] = {.lex_state = 125, .external_lex_state = 2}, + [1875] = {.lex_state = 125, .external_lex_state = 2}, + [1876] = {.lex_state = 32, .external_lex_state = 2}, + [1877] = {.lex_state = 125, .external_lex_state = 2}, + [1878] = {.lex_state = 125, .external_lex_state = 2}, + [1879] = {.lex_state = 125, .external_lex_state = 2}, }; static const TSSymbol ts_reserved_words[14][MAX_RESERVED_WORD_SET_SIZE] = { @@ -8789,13 +8844,21 @@ static const TSSymbol ts_reserved_words[14][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_typeof, anon_sym_void, anon_sym_delete, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, }, [2] = { + anon_sym_else, + anon_sym_in, + anon_sym_catch, + anon_sym_finally, + anon_sym_extends, + anon_sym_instanceof, + }, + [3] = { anon_sym_default, anon_sym_with, anon_sym_var, @@ -8817,14 +8880,6 @@ static const TSSymbol ts_reserved_words[14][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_finally, anon_sym_extends, }, - [3] = { - anon_sym_else, - anon_sym_in, - anon_sym_catch, - anon_sym_finally, - anon_sym_extends, - anon_sym_instanceof, - }, [4] = { anon_sym_default, anon_sym_else, @@ -8836,11 +8891,6 @@ static const TSSymbol ts_reserved_words[14][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_instanceof, }, [5] = { - anon_sym_catch, - anon_sym_finally, - anon_sym_extends, - }, - [6] = { anon_sym_default, anon_sym_with, anon_sym_else, @@ -8862,7 +8912,7 @@ static const TSSymbol ts_reserved_words[14][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_extends, anon_sym_instanceof, }, - [7] = { + [6] = { anon_sym_default, anon_sym_with, anon_sym_var, @@ -8886,6 +8936,11 @@ static const TSSymbol ts_reserved_words[14][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_extends, anon_sym_instanceof, }, + [7] = { + anon_sym_catch, + anon_sym_finally, + anon_sym_extends, + }, [8] = { anon_sym_default, anon_sym_import, @@ -8913,11 +8968,11 @@ static const TSSymbol ts_reserved_words[14][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_typeof, anon_sym_void, anon_sym_delete, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, }, [9] = { anon_sym_export, @@ -8948,11 +9003,11 @@ static const TSSymbol ts_reserved_words[14][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_typeof, anon_sym_void, anon_sym_delete, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, }, [10] = { anon_sym_in, @@ -9002,11 +9057,11 @@ static const TSSymbol ts_reserved_words[14][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_typeof, anon_sym_void, anon_sym_delete, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, }, }; @@ -9121,11 +9176,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(1), [anon_sym_target] = ACTIONS(1), [anon_sym_meta] = ACTIONS(1), - [sym_this] = ACTIONS(1), - [sym_super] = ACTIONS(1), - [sym_true] = ACTIONS(1), - [sym_false] = ACTIONS(1), - [sym_null] = ACTIONS(1), + [anon_sym_this] = ACTIONS(1), + [anon_sym_super] = ACTIONS(1), + [anon_sym_true] = ACTIONS(1), + [anon_sym_false] = ACTIONS(1), + [anon_sym_null] = ACTIONS(1), [sym_undefined] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), [anon_sym_static] = ACTIONS(1), @@ -9139,72 +9194,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_jsx_text] = ACTIONS(1), }, [STATE(1)] = { - [sym_program] = STATE(1786), - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_program] = STATE(1816), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(1271), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -9253,107 +9313,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(2)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1853), - [sym_object_assignment_pattern] = STATE(1454), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1853), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1853), - [sym_spread_element] = STATE(1406), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(815), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [sym_rest_pattern] = STATE(1454), - [sym_method_definition] = STATE(1406), - [sym_pair] = STATE(1406), - [sym_pair_pattern] = STATE(1454), - [sym__property_name] = STATE(1407), - [sym_computed_property_name] = STATE(1407), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1014), - [aux_sym_object_repeat1] = STATE(1499), - [aux_sym_object_pattern_repeat1] = STATE(1476), - [sym_identifier] = ACTIONS(97), - [anon_sym_export] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1835), + [sym_object_assignment_pattern] = STATE(1505), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1835), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1835), + [sym_spread_element] = STATE(1509), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(836), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [sym_rest_pattern] = STATE(1505), + [sym_method_definition] = STATE(1509), + [sym_pair] = STATE(1509), + [sym_pair_pattern] = STATE(1505), + [sym__property_name] = STATE(1510), + [sym_computed_property_name] = STATE(1510), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(1032), + [aux_sym_object_repeat1] = STATE(1452), + [aux_sym_object_pattern_repeat1] = STATE(1429), + [sym_identifier] = ACTIONS(105), + [anon_sym_export] = ACTIONS(107), + [anon_sym_STAR] = ACTIONS(109), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(105), + [anon_sym_COMMA] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(113), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(107), + [anon_sym_let] = ACTIONS(115), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(109), + [anon_sym_await] = ACTIONS(117), [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), [anon_sym_for] = ACTIONS(35), @@ -9368,15 +9433,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(113), + [anon_sym_async] = ACTIONS(121), [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(77), @@ -9389,110 +9454,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(117), - [sym_private_property_identifier] = ACTIONS(119), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(121), - [aux_sym_method_definition_token1] = ACTIONS(123), - [anon_sym_get] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), + [sym_number] = ACTIONS(125), + [sym_private_property_identifier] = ACTIONS(127), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(129), + [aux_sym_method_definition_token1] = ACTIONS(131), + [anon_sym_get] = ACTIONS(133), + [anon_sym_set] = ACTIONS(133), [sym_html_comment] = ACTIONS(5), }, [STATE(3)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1853), - [sym_object_assignment_pattern] = STATE(1454), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1853), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1853), - [sym_spread_element] = STATE(1406), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(815), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [sym_rest_pattern] = STATE(1454), - [sym_method_definition] = STATE(1406), - [sym_pair] = STATE(1406), - [sym_pair_pattern] = STATE(1454), - [sym__property_name] = STATE(1407), - [sym_computed_property_name] = STATE(1407), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1014), - [aux_sym_object_repeat1] = STATE(1499), - [aux_sym_object_pattern_repeat1] = STATE(1476), - [sym_identifier] = ACTIONS(97), - [anon_sym_export] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1835), + [sym_object_assignment_pattern] = STATE(1505), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1835), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1835), + [sym_spread_element] = STATE(1509), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(836), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [sym_rest_pattern] = STATE(1505), + [sym_method_definition] = STATE(1509), + [sym_pair] = STATE(1509), + [sym_pair_pattern] = STATE(1505), + [sym__property_name] = STATE(1510), + [sym_computed_property_name] = STATE(1510), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(1032), + [aux_sym_object_repeat1] = STATE(1452), + [aux_sym_object_pattern_repeat1] = STATE(1429), + [sym_identifier] = ACTIONS(105), + [anon_sym_export] = ACTIONS(107), + [anon_sym_STAR] = ACTIONS(109), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(127), + [anon_sym_COMMA] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(135), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(107), + [anon_sym_let] = ACTIONS(115), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(109), + [anon_sym_await] = ACTIONS(117), [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), [anon_sym_for] = ACTIONS(35), @@ -9507,15 +9577,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(113), + [anon_sym_async] = ACTIONS(121), [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(77), @@ -9528,110 +9598,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(117), - [sym_private_property_identifier] = ACTIONS(119), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(121), - [aux_sym_method_definition_token1] = ACTIONS(123), - [anon_sym_get] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), + [sym_number] = ACTIONS(125), + [sym_private_property_identifier] = ACTIONS(127), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(129), + [aux_sym_method_definition_token1] = ACTIONS(131), + [anon_sym_get] = ACTIONS(133), + [anon_sym_set] = ACTIONS(133), [sym_html_comment] = ACTIONS(5), }, [STATE(4)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1853), - [sym_object_assignment_pattern] = STATE(1454), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1853), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1853), - [sym_spread_element] = STATE(1406), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(815), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [sym_rest_pattern] = STATE(1454), - [sym_method_definition] = STATE(1406), - [sym_pair] = STATE(1406), - [sym_pair_pattern] = STATE(1454), - [sym__property_name] = STATE(1407), - [sym_computed_property_name] = STATE(1407), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(1014), - [aux_sym_object_repeat1] = STATE(1499), - [aux_sym_object_pattern_repeat1] = STATE(1476), - [sym_identifier] = ACTIONS(97), - [anon_sym_export] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(26), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1835), + [sym_object_assignment_pattern] = STATE(1505), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1835), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1835), + [sym_spread_element] = STATE(1421), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(836), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [sym_rest_pattern] = STATE(1505), + [sym_method_definition] = STATE(1421), + [sym_pair] = STATE(1421), + [sym_pair_pattern] = STATE(1505), + [sym__property_name] = STATE(1510), + [sym_computed_property_name] = STATE(1510), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(1032), + [aux_sym_object_repeat1] = STATE(1424), + [aux_sym_object_pattern_repeat1] = STATE(1429), + [sym_identifier] = ACTIONS(137), + [anon_sym_export] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(109), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(141), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(107), + [anon_sym_let] = ACTIONS(143), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(109), + [anon_sym_await] = ACTIONS(145), [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), [anon_sym_for] = ACTIONS(35), @@ -9646,15 +9721,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(113), + [anon_sym_async] = ACTIONS(147), [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(77), @@ -9667,110 +9742,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(117), - [sym_private_property_identifier] = ACTIONS(119), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(121), - [aux_sym_method_definition_token1] = ACTIONS(123), - [anon_sym_get] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), + [sym_number] = ACTIONS(125), + [sym_private_property_identifier] = ACTIONS(127), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(149), + [aux_sym_method_definition_token1] = ACTIONS(131), + [anon_sym_get] = ACTIONS(151), + [anon_sym_set] = ACTIONS(151), [sym_html_comment] = ACTIONS(5), }, [STATE(5)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1853), - [sym_object_assignment_pattern] = STATE(1454), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1853), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1853), - [sym_spread_element] = STATE(1458), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(815), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [sym_rest_pattern] = STATE(1454), - [sym_method_definition] = STATE(1458), - [sym_pair] = STATE(1458), - [sym_pair_pattern] = STATE(1454), - [sym__property_name] = STATE(1407), - [sym_computed_property_name] = STATE(1407), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(1014), - [aux_sym_object_repeat1] = STATE(1461), - [aux_sym_object_pattern_repeat1] = STATE(1476), - [sym_identifier] = ACTIONS(131), - [anon_sym_export] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(101), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1835), + [sym_object_assignment_pattern] = STATE(1505), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1835), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1835), + [sym_spread_element] = STATE(1509), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(836), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [sym_rest_pattern] = STATE(1505), + [sym_method_definition] = STATE(1509), + [sym_pair] = STATE(1509), + [sym_pair_pattern] = STATE(1505), + [sym__property_name] = STATE(1510), + [sym_computed_property_name] = STATE(1510), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(1032), + [aux_sym_object_repeat1] = STATE(1452), + [aux_sym_object_pattern_repeat1] = STATE(1429), + [sym_identifier] = ACTIONS(105), + [anon_sym_export] = ACTIONS(107), + [anon_sym_STAR] = ACTIONS(109), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(137), + [anon_sym_let] = ACTIONS(115), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(139), + [anon_sym_await] = ACTIONS(117), [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), [anon_sym_for] = ACTIONS(35), @@ -9785,15 +9865,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(141), + [anon_sym_async] = ACTIONS(121), [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(77), @@ -9806,110 +9886,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(117), - [sym_private_property_identifier] = ACTIONS(119), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(143), - [aux_sym_method_definition_token1] = ACTIONS(123), - [anon_sym_get] = ACTIONS(145), - [anon_sym_set] = ACTIONS(145), + [sym_number] = ACTIONS(125), + [sym_private_property_identifier] = ACTIONS(127), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(129), + [aux_sym_method_definition_token1] = ACTIONS(131), + [anon_sym_get] = ACTIONS(133), + [anon_sym_set] = ACTIONS(133), [sym_html_comment] = ACTIONS(5), }, [STATE(6)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1853), - [sym_object_assignment_pattern] = STATE(1454), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1853), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1853), - [sym_spread_element] = STATE(1458), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(815), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [sym_rest_pattern] = STATE(1454), - [sym_method_definition] = STATE(1458), - [sym_pair] = STATE(1458), - [sym_pair_pattern] = STATE(1454), - [sym__property_name] = STATE(1407), - [sym_computed_property_name] = STATE(1407), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(1014), - [aux_sym_object_repeat1] = STATE(1461), - [aux_sym_object_pattern_repeat1] = STATE(1476), - [sym_identifier] = ACTIONS(147), - [anon_sym_export] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(101), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(26), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1835), + [sym_object_assignment_pattern] = STATE(1505), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1835), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1835), + [sym_spread_element] = STATE(1421), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(836), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [sym_rest_pattern] = STATE(1505), + [sym_method_definition] = STATE(1421), + [sym_pair] = STATE(1421), + [sym_pair_pattern] = STATE(1505), + [sym__property_name] = STATE(1510), + [sym_computed_property_name] = STATE(1510), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(1032), + [aux_sym_object_repeat1] = STATE(1424), + [aux_sym_object_pattern_repeat1] = STATE(1429), + [sym_identifier] = ACTIONS(155), + [anon_sym_export] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(109), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(141), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(151), + [anon_sym_let] = ACTIONS(159), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(153), + [anon_sym_await] = ACTIONS(161), [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), [anon_sym_for] = ACTIONS(35), @@ -9924,15 +10009,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(119), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(155), + [anon_sym_async] = ACTIONS(163), [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(77), @@ -9945,604 +10030,893 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(117), - [sym_private_property_identifier] = ACTIONS(119), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(157), - [aux_sym_method_definition_token1] = ACTIONS(123), - [anon_sym_get] = ACTIONS(159), - [anon_sym_set] = ACTIONS(159), + [sym_number] = ACTIONS(125), + [sym_private_property_identifier] = ACTIONS(127), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(165), + [aux_sym_method_definition_token1] = ACTIONS(131), + [anon_sym_get] = ACTIONS(167), + [anon_sym_set] = ACTIONS(167), [sym_html_comment] = ACTIONS(5), }, [STATE(7)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(692), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [aux_sym_object_repeat1] = STATE(1487), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_using] = ACTIONS(175), - [anon_sym_await] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1271), + [ts_builtin_sym_end] = ACTIONS(169), + [sym_identifier] = ACTIONS(171), + [anon_sym_export] = ACTIONS(174), + [anon_sym_default] = ACTIONS(177), + [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_RBRACE] = ACTIONS(169), + [anon_sym_import] = ACTIONS(182), + [anon_sym_with] = ACTIONS(185), + [anon_sym_var] = ACTIONS(188), + [anon_sym_let] = ACTIONS(191), + [anon_sym_const] = ACTIONS(194), + [anon_sym_using] = ACTIONS(197), + [anon_sym_await] = ACTIONS(200), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(206), + [anon_sym_for] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_SEMI] = ACTIONS(215), + [anon_sym_while] = ACTIONS(218), + [anon_sym_do] = ACTIONS(221), + [anon_sym_try] = ACTIONS(224), + [anon_sym_break] = ACTIONS(227), + [anon_sym_continue] = ACTIONS(230), + [anon_sym_debugger] = ACTIONS(233), + [anon_sym_return] = ACTIONS(236), + [anon_sym_throw] = ACTIONS(239), + [anon_sym_case] = ACTIONS(177), + [anon_sym_yield] = ACTIONS(242), + [anon_sym_LBRACK] = ACTIONS(245), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_SQUOTE] = ACTIONS(254), + [anon_sym_class] = ACTIONS(257), + [anon_sym_async] = ACTIONS(260), + [anon_sym_function] = ACTIONS(263), + [anon_sym_new] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(275), + [anon_sym_TILDE] = ACTIONS(275), + [anon_sym_typeof] = ACTIONS(269), + [anon_sym_void] = ACTIONS(269), + [anon_sym_delete] = ACTIONS(269), + [anon_sym_PLUS_PLUS] = ACTIONS(278), + [anon_sym_DASH_DASH] = ACTIONS(278), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(281), + [sym_number] = ACTIONS(284), + [sym_private_property_identifier] = ACTIONS(287), + [anon_sym_this] = ACTIONS(290), + [anon_sym_super] = ACTIONS(293), + [anon_sym_true] = ACTIONS(296), + [anon_sym_false] = ACTIONS(299), + [anon_sym_null] = ACTIONS(302), + [sym_undefined] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(308), + [anon_sym_static] = ACTIONS(311), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(311), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(8)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(700), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [aux_sym_object_repeat1] = STATE(1457), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_using] = ACTIONS(328), + [anon_sym_await] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), [anon_sym_yield] = ACTIONS(57), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(79), [anon_sym_typeof] = ACTIONS(75), [anon_sym_void] = ACTIONS(75), [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_DASH_DASH] = ACTIONS(363), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(366), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, - [STATE(8)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(692), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [aux_sym_object_repeat1] = STATE(1418), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_using] = ACTIONS(175), - [anon_sym_await] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), + [STATE(9)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(700), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [aux_sym_object_repeat1] = STATE(1475), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_using] = ACTIONS(328), + [anon_sym_await] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), [anon_sym_yield] = ACTIONS(57), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(79), [anon_sym_typeof] = ACTIONS(75), [anon_sym_void] = ACTIONS(75), [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_DASH_DASH] = ACTIONS(363), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(366), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(9)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(218), - [sym_identifier] = ACTIONS(220), - [anon_sym_export] = ACTIONS(223), - [anon_sym_default] = ACTIONS(226), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(218), - [anon_sym_import] = ACTIONS(231), - [anon_sym_with] = ACTIONS(234), - [anon_sym_var] = ACTIONS(237), - [anon_sym_let] = ACTIONS(240), - [anon_sym_const] = ACTIONS(243), - [anon_sym_using] = ACTIONS(246), - [anon_sym_await] = ACTIONS(249), - [anon_sym_if] = ACTIONS(252), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_for] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(264), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(270), - [anon_sym_try] = ACTIONS(273), - [anon_sym_break] = ACTIONS(276), - [anon_sym_continue] = ACTIONS(279), - [anon_sym_debugger] = ACTIONS(282), - [anon_sym_return] = ACTIONS(285), - [anon_sym_throw] = ACTIONS(288), - [anon_sym_case] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_DQUOTE] = ACTIONS(300), - [anon_sym_SQUOTE] = ACTIONS(303), - [anon_sym_class] = ACTIONS(306), - [anon_sym_async] = ACTIONS(309), - [anon_sym_function] = ACTIONS(312), - [anon_sym_new] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_typeof] = ACTIONS(318), - [anon_sym_void] = ACTIONS(318), - [anon_sym_delete] = ACTIONS(318), - [anon_sym_PLUS_PLUS] = ACTIONS(327), - [anon_sym_DASH_DASH] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(330), - [sym_number] = ACTIONS(333), - [sym_private_property_identifier] = ACTIONS(336), - [sym_this] = ACTIONS(339), - [sym_super] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_null] = ACTIONS(339), - [sym_undefined] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(345), - [anon_sym_static] = ACTIONS(348), - [anon_sym_get] = ACTIONS(348), - [anon_sym_set] = ACTIONS(348), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(10)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(692), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [aux_sym_object_repeat1] = STATE(1418), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_using] = ACTIONS(175), - [anon_sym_await] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(700), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [aux_sym_object_repeat1] = STATE(1457), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_using] = ACTIONS(328), + [anon_sym_await] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), [anon_sym_yield] = ACTIONS(57), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(79), [anon_sym_typeof] = ACTIONS(75), [anon_sym_void] = ACTIONS(75), [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_DASH_DASH] = ACTIONS(363), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(366), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(11)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_case] = ACTIONS(373), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(12)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_case] = ACTIONS(377), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(13)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(353), + [anon_sym_default] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_RBRACE] = ACTIONS(383), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10563,7 +10937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(51), [anon_sym_return] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), - [anon_sym_case] = ACTIONS(353), + [anon_sym_case] = ACTIONS(381), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), @@ -10587,89 +10961,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(12)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [STATE(14)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(357), + [anon_sym_default] = ACTIONS(385), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(359), + [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10690,7 +11069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(51), [anon_sym_return] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), - [anon_sym_case] = ACTIONS(357), + [anon_sym_case] = ACTIONS(385), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), @@ -10714,89 +11093,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(13)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [STATE(15)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_RPAREN] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(322), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_RBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(422), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym__ternary_qmark] = ACTIONS(322), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(16)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_RPAREN] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(322), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_RBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(422), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(484), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym__ternary_qmark] = ACTIONS(322), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(17)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(361), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(491), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10817,7 +11462,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(51), [anon_sym_return] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), - [anon_sym_case] = ACTIONS(361), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), @@ -10841,89 +11485,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(14)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(13), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(1267), + [STATE(18)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1271), + [ts_builtin_sym_end] = ACTIONS(493), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(365), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(367), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10944,7 +11592,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(51), [anon_sym_return] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), - [anon_sym_case] = ACTIONS(365), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), @@ -10968,340 +11615,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(15)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(169), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_RPAREN] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(169), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(402), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(416), - [anon_sym_DASH_DASH] = ACTIONS(416), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(16)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(169), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_RPAREN] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(169), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_RBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(402), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(456), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), - [sym__ternary_qmark] = ACTIONS(169), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(17)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(463), + [STATE(19)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(495), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11345,88 +11745,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(18)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [STATE(20)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1271), + [ts_builtin_sym_end] = ACTIONS(497), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(465), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11470,88 +11875,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(19)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1267), + [STATE(21)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1271), + [ts_builtin_sym_end] = ACTIONS(493), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(467), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11595,88 +12005,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(20)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(463), + [STATE(22)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(499), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11720,88 +12135,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(21)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(469), + [STATE(23)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11845,338 +12265,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(22)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(471), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_debugger] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_throw] = ACTIONS(55), + [STATE(24)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(700), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_using] = ACTIONS(328), + [anon_sym_await] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(506), [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(79), [anon_sym_typeof] = ACTIONS(75), [anon_sym_void] = ACTIONS(75), [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_DASH_DASH] = ACTIONS(363), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_BQUOTE] = ACTIONS(366), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, - [STATE(23)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_debugger] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_throw] = ACTIONS(55), + [STATE(25)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(700), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_using] = ACTIONS(328), + [anon_sym_await] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(510), [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(79), [anon_sym_typeof] = ACTIONS(75), [anon_sym_void] = ACTIONS(75), [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_DASH_DASH] = ACTIONS(363), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_BQUOTE] = ACTIONS(366), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, - [STATE(24)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [STATE(26)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(512), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12220,88 +12655,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(25)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(1267), + [STATE(27)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(26), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(514), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12345,88 +12785,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(26)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [STATE(28)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_RBRACE] = ACTIONS(516), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12470,88 +12915,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(27)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(26), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(1267), + [STATE(29)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(518), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12595,88 +13045,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(28)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(30), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(1267), + [STATE(30)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(31), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(31), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(483), + [anon_sym_RBRACE] = ACTIONS(520), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12720,213 +13175,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(29)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(692), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_using] = ACTIONS(175), - [anon_sym_await] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(57), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(213), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(30)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [STATE(31)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(522), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12970,1216 +13305,1136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(31)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(692), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_using] = ACTIONS(175), - [anon_sym_await] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(494), - [anon_sym_yield] = ACTIONS(57), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(213), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(32)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(496), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_RBRACK] = ACTIONS(496), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(498), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(456), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(484), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(33)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_of] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(500), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(456), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(524), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_RBRACK] = ACTIONS(524), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(529), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(484), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(34)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_using] = ACTIONS(502), - [anon_sym_await] = ACTIONS(377), - [anon_sym_of] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(506), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(402), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(416), - [anon_sym_DASH_DASH] = ACTIONS(416), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(531), + [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_RBRACK] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(529), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(484), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(35)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(169), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(456), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_using] = ACTIONS(533), + [anon_sym_await] = ACTIONS(397), + [anon_sym_of] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(537), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(422), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(36)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_RBRACK] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(498), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(456), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), - [sym__ternary_qmark] = ACTIONS(169), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(37)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(692), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(169), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(700), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), [anon_sym_yield] = ACTIONS(57), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(79), [anon_sym_typeof] = ACTIONS(75), [anon_sym_void] = ACTIONS(75), [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_DASH_DASH] = ACTIONS(363), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(366), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, - [STATE(38)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(514), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(402), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(416), - [anon_sym_DASH_DASH] = ACTIONS(416), + [STATE(37)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(540), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(543), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_RBRACK] = ACTIONS(540), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(422), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, - [STATE(39)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(692), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), - [anon_sym_of] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(526), - [anon_sym_EQ] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), + [STATE(38)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(700), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), + [anon_sym_of] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(552), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_EQ_GT] = ACTIONS(500), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(537), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_EQ_GT] = ACTIONS(558), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(572), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(366), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(39)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_of] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(558), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(484), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(40)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(1403), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(473), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -14192,9 +14447,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -14210,99 +14465,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [STATE(41)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(1755), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(481), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -14315,9 +14575,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -14333,83 +14593,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(42)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(424), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(465), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14456,99 +14721,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(43)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(448), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(465), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -14561,9 +14831,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -14579,83 +14849,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [STATE(44)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(463), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(417), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14702,83 +14977,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(45)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(464), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(456), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14825,99 +15105,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(46)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(466), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(481), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -14930,9 +15215,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -14948,99 +15233,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [STATE(47)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(479), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(1465), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -15053,9 +15343,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -15071,99 +15361,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [STATE(48)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(480), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(430), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -15176,9 +15471,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -15194,99 +15489,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [STATE(49)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(481), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(431), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -15299,9 +15599,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -15317,83 +15617,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [STATE(50)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(483), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(458), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15440,222 +15745,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(51)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(577), - [anon_sym_RBRACE] = ACTIONS(577), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(402), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(416), - [anon_sym_DASH_DASH] = ACTIONS(416), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym__ternary_qmark] = ACTIONS(169), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(52)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(452), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(464), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -15668,9 +15855,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -15686,99 +15873,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, - [STATE(53)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(444), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [STATE(52)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(486), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -15791,9 +15983,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -15809,99 +16001,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, - [STATE(54)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(473), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [STATE(53)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(438), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -15914,9 +16111,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -15932,99 +16129,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, - [STATE(55)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(429), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [STATE(54)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(456), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -16037,9 +16239,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -16055,99 +16257,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, - [STATE(56)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(432), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [STATE(55)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(458), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -16160,9 +16367,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -16178,99 +16385,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, - [STATE(57)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(411), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [STATE(56)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(464), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -16283,9 +16495,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -16301,99 +16513,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, - [STATE(58)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(444), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [STATE(57)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(422), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -16406,9 +16623,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -16424,99 +16641,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(58)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(700), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_using] = ACTIONS(328), + [anon_sym_await] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(363), + [anon_sym_DASH_DASH] = ACTIONS(363), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(366), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(59)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(424), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(425), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -16529,9 +16879,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -16547,99 +16897,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [STATE(60)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(448), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(426), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -16652,9 +17007,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -16670,99 +17025,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [STATE(61)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(463), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(430), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -16775,9 +17135,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -16793,99 +17153,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(62)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(464), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(1869), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -16898,9 +17263,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -16916,99 +17281,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [STATE(63)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(466), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(422), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -17021,9 +17391,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17039,99 +17409,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(64)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(479), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(423), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -17144,9 +17519,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17162,99 +17537,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(65)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(480), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(431), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -17267,9 +17647,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17285,99 +17665,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(66)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(481), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(425), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -17390,9 +17775,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17408,99 +17793,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(67)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(483), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(555), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(426), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(557), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(559), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(561), - [anon_sym_if] = ACTIONS(563), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(565), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(567), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -17513,9 +17903,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(573), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17531,83 +17921,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(68)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(452), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(486), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -17654,83 +18049,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(69)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(429), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(473), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -17777,83 +18177,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(70)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(432), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(438), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1271), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -17900,99 +18305,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(103), + [anon_sym_get] = ACTIONS(103), + [anon_sym_set] = ACTIONS(103), [sym_html_comment] = ACTIONS(5), }, [STATE(71)] = { - [sym_export_statement] = STATE(471), - [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), - [sym_import_statement] = STATE(471), - [sym_statement] = STATE(473), - [sym_expression_statement] = STATE(471), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_statement_block] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_for_in_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_with_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_debugger_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_empty_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1662), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_RBRACK] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(422), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym__ternary_qmark] = ACTIONS(322), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(72)] = { + [sym_export_statement] = STATE(441), + [sym_declaration] = STATE(441), + [sym_import] = STATE(1368), + [sym_import_statement] = STATE(441), + [sym_statement] = STATE(423), + [sym_expression_statement] = STATE(441), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_statement_block] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_for_in_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_try_statement] = STATE(441), + [sym_with_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_debugger_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_throw_statement] = STATE(441), + [sym_empty_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1631), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(579), + [anon_sym_export] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(587), [anon_sym_const] = ACTIONS(25), [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_await] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(595), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), @@ -18005,9 +18543,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -18023,1179 +18561,1101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(72)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(692), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_using] = ACTIONS(175), - [anon_sym_await] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(57), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(213), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [STATE(73)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_using] = ACTIONS(502), - [anon_sym_await] = ACTIONS(436), - [anon_sym_of] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_in] = ACTIONS(506), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(498), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(456), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(524), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(543), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_RBRACK] = ACTIONS(540), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(422), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(74)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(402), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(416), - [anon_sym_DASH_DASH] = ACTIONS(416), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_using] = ACTIONS(533), + [anon_sym_await] = ACTIONS(464), + [anon_sym_of] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_in] = ACTIONS(537), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(529), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(484), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(75)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_of] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(580), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(456), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_of] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(620), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(634), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(76)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(169), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(498), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(456), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(322), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(529), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(484), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(77)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_of] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(580), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(606), - [anon_sym_DASH_DASH] = ACTIONS(606), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_of] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(620), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(484), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(78)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_EQ] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(628), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(635), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(639), - [anon_sym_DASH_DASH] = ACTIONS(639), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(641), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(644), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(484), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(79)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_in] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(628), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(456), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(641), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_in] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(644), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_BANG] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(667), + [anon_sym_DASH_DASH] = ACTIONS(667), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(419), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(80)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(663), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym_RPAREN] = ACTIONS(648), - [anon_sym_in] = ACTIONS(652), - [anon_sym_COLON] = ACTIONS(648), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_RBRACK] = ACTIONS(648), - [anon_sym_LT] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [sym_optional_chain] = ACTIONS(648), - [anon_sym_new] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(648), - [anon_sym_STAR_STAR] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_QMARK_QMARK] = ACTIONS(648), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(666), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_RPAREN] = ACTIONS(676), + [anon_sym_in] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(684), + [anon_sym_GT] = ACTIONS(680), + [anon_sym_DOT] = ACTIONS(680), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [sym_optional_chain] = ACTIONS(676), + [anon_sym_new] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(680), + [anon_sym_GT_GT_GT] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(680), + [anon_sym_CARET] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(676), + [anon_sym_STAR_STAR] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_QMARK_QMARK] = ACTIONS(676), + [anon_sym_instanceof] = ACTIONS(680), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym__ternary_qmark] = ACTIONS(648), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym__ternary_qmark] = ACTIONS(676), [sym_html_comment] = ACTIONS(5), }, [STATE(81)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(802), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(777), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym_in] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_in] = ACTIONS(680), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(680), + [anon_sym_DOT] = ACTIONS(680), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [sym_optional_chain] = ACTIONS(648), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [sym_optional_chain] = ACTIONS(676), [anon_sym_new] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(680), + [anon_sym_GT_GT_GT] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(680), + [anon_sym_CARET] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_PERCENT] = ACTIONS(648), - [anon_sym_STAR_STAR] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_QMARK_QMARK] = ACTIONS(648), - [anon_sym_instanceof] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(676), + [anon_sym_STAR_STAR] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_QMARK_QMARK] = ACTIONS(676), + [anon_sym_instanceof] = ACTIONS(680), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(79), [anon_sym_typeof] = ACTIONS(75), @@ -19207,1713 +19667,1951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym__automatic_semicolon] = ACTIONS(648), - [sym__ternary_qmark] = ACTIONS(648), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), + [sym__automatic_semicolon] = ACTIONS(676), + [sym__ternary_qmark] = ACTIONS(676), [sym_html_comment] = ACTIONS(5), }, [STATE(82)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(796), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), - [anon_sym_of] = ACTIONS(652), + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(825), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), + [anon_sym_of] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym_in] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_in] = ACTIONS(680), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(680), + [anon_sym_DOT] = ACTIONS(680), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [sym_optional_chain] = ACTIONS(648), - [anon_sym_new] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(648), - [anon_sym_STAR_STAR] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_QMARK_QMARK] = ACTIONS(648), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [sym_optional_chain] = ACTIONS(676), + [anon_sym_new] = ACTIONS(560), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(680), + [anon_sym_GT_GT_GT] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(680), + [anon_sym_CARET] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(676), + [anon_sym_STAR_STAR] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_QMARK_QMARK] = ACTIONS(676), + [anon_sym_instanceof] = ACTIONS(680), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), - [sym__automatic_semicolon] = ACTIONS(648), - [sym__ternary_qmark] = ACTIONS(648), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [sym__automatic_semicolon] = ACTIONS(676), + [sym__ternary_qmark] = ACTIONS(676), [sym_html_comment] = ACTIONS(5), }, [STATE(83)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(913), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_of] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_in] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [sym_optional_chain] = ACTIONS(648), - [anon_sym_new] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(648), - [anon_sym_STAR_STAR] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_QMARK_QMARK] = ACTIONS(648), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(944), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_of] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_in] = ACTIONS(680), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(684), + [anon_sym_GT] = ACTIONS(680), + [anon_sym_DOT] = ACTIONS(680), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [sym_optional_chain] = ACTIONS(676), + [anon_sym_new] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(680), + [anon_sym_GT_GT_GT] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(680), + [anon_sym_CARET] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(676), + [anon_sym_STAR_STAR] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_QMARK_QMARK] = ACTIONS(676), + [anon_sym_instanceof] = ACTIONS(680), + [anon_sym_BANG] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), - [sym__ternary_qmark] = ACTIONS(648), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [sym__ternary_qmark] = ACTIONS(676), [sym_html_comment] = ACTIONS(5), }, [STATE(84)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(966), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_in] = ACTIONS(652), - [anon_sym_COLON] = ACTIONS(648), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [sym_optional_chain] = ACTIONS(648), - [anon_sym_new] = ACTIONS(447), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(648), - [anon_sym_STAR_STAR] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_QMARK_QMARK] = ACTIONS(648), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(984), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_in] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(684), + [anon_sym_GT] = ACTIONS(680), + [anon_sym_DOT] = ACTIONS(680), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [sym_optional_chain] = ACTIONS(676), + [anon_sym_new] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(680), + [anon_sym_GT_GT_GT] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(680), + [anon_sym_CARET] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(676), + [anon_sym_STAR_STAR] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_QMARK_QMARK] = ACTIONS(676), + [anon_sym_instanceof] = ACTIONS(680), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), - [sym__ternary_qmark] = ACTIONS(648), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym__ternary_qmark] = ACTIONS(676), [sym_html_comment] = ACTIONS(5), }, [STATE(85)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(918), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_in] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [sym_optional_chain] = ACTIONS(648), - [anon_sym_new] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(648), - [anon_sym_STAR_STAR] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_QMARK_QMARK] = ACTIONS(648), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(635), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(935), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_in] = ACTIONS(680), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(684), + [anon_sym_GT] = ACTIONS(680), + [anon_sym_DOT] = ACTIONS(680), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [sym_optional_chain] = ACTIONS(676), + [anon_sym_new] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(680), + [anon_sym_GT_GT_GT] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(680), + [anon_sym_CARET] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(676), + [anon_sym_STAR_STAR] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_QMARK_QMARK] = ACTIONS(676), + [anon_sym_instanceof] = ACTIONS(680), + [anon_sym_BANG] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), - [sym__ternary_qmark] = ACTIONS(648), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), + [sym__ternary_qmark] = ACTIONS(676), [sym_html_comment] = ACTIONS(5), }, [STATE(86)] = { - [ts_builtin_sym_end] = ACTIONS(690), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_LBRACE] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_RBRACE] = ACTIONS(690), - [anon_sym_import] = ACTIONS(692), - [anon_sym_with] = ACTIONS(692), - [anon_sym_var] = ACTIONS(692), - [anon_sym_let] = ACTIONS(692), - [anon_sym_const] = ACTIONS(692), - [anon_sym_using] = ACTIONS(692), - [anon_sym_await] = ACTIONS(692), - [anon_sym_of] = ACTIONS(692), - [anon_sym_else] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_switch] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_in] = ACTIONS(692), - [anon_sym_while] = ACTIONS(692), - [anon_sym_do] = ACTIONS(692), - [anon_sym_try] = ACTIONS(692), - [anon_sym_break] = ACTIONS(692), - [anon_sym_continue] = ACTIONS(692), - [anon_sym_debugger] = ACTIONS(692), - [anon_sym_return] = ACTIONS(692), - [anon_sym_throw] = ACTIONS(692), - [anon_sym_case] = ACTIONS(692), - [anon_sym_yield] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(692), - [anon_sym_DQUOTE] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(690), - [anon_sym_class] = ACTIONS(692), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(692), - [sym_optional_chain] = ACTIONS(690), - [anon_sym_new] = ACTIONS(692), - [anon_sym_AMP_AMP] = ACTIONS(690), - [anon_sym_PIPE_PIPE] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(692), - [anon_sym_GT_GT_GT] = ACTIONS(690), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_STAR_STAR] = ACTIONS(690), - [anon_sym_LT_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_EQ_EQ_EQ] = ACTIONS(690), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ_EQ] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(690), - [anon_sym_QMARK_QMARK] = ACTIONS(690), - [anon_sym_instanceof] = ACTIONS(692), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(690), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(690), - [anon_sym_DASH_DASH] = ACTIONS(690), + [sym_declaration] = STATE(460), + [sym_import] = STATE(1368), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(907), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(718), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(690), - [sym_number] = ACTIONS(690), - [sym_private_property_identifier] = ACTIONS(690), - [sym_this] = ACTIONS(692), - [sym_super] = ACTIONS(692), - [sym_true] = ACTIONS(692), - [sym_false] = ACTIONS(692), - [sym_null] = ACTIONS(692), - [sym_undefined] = ACTIONS(692), - [anon_sym_AT] = ACTIONS(690), - [anon_sym_static] = ACTIONS(692), - [anon_sym_get] = ACTIONS(692), - [anon_sym_set] = ACTIONS(692), - [sym__automatic_semicolon] = ACTIONS(690), - [sym__ternary_qmark] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, [STATE(87)] = { - [ts_builtin_sym_end] = ACTIONS(694), - [sym_identifier] = ACTIONS(696), - [anon_sym_export] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_default] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_with] = ACTIONS(696), - [anon_sym_var] = ACTIONS(696), - [anon_sym_let] = ACTIONS(696), - [anon_sym_const] = ACTIONS(696), - [anon_sym_using] = ACTIONS(696), - [anon_sym_await] = ACTIONS(696), - [anon_sym_of] = ACTIONS(696), - [anon_sym_else] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_switch] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_in] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [anon_sym_do] = ACTIONS(696), - [anon_sym_try] = ACTIONS(696), - [anon_sym_break] = ACTIONS(696), - [anon_sym_continue] = ACTIONS(696), - [anon_sym_debugger] = ACTIONS(696), - [anon_sym_return] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_case] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_DOT] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_class] = ACTIONS(696), - [anon_sym_async] = ACTIONS(696), - [anon_sym_function] = ACTIONS(696), - [sym_optional_chain] = ACTIONS(694), - [anon_sym_new] = ACTIONS(696), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(696), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(696), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_typeof] = ACTIONS(696), - [anon_sym_void] = ACTIONS(696), - [anon_sym_delete] = ACTIONS(696), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(694), + [sym_declaration] = STATE(482), + [sym_import] = STATE(1368), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(982), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(718), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(694), - [sym_number] = ACTIONS(694), - [sym_private_property_identifier] = ACTIONS(694), - [sym_this] = ACTIONS(696), - [sym_super] = ACTIONS(696), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_null] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_static] = ACTIONS(696), - [anon_sym_get] = ACTIONS(696), - [anon_sym_set] = ACTIONS(696), - [sym__automatic_semicolon] = ACTIONS(694), - [sym__ternary_qmark] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, [STATE(88)] = { - [ts_builtin_sym_end] = ACTIONS(694), - [sym_identifier] = ACTIONS(696), - [anon_sym_export] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_default] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_with] = ACTIONS(696), - [anon_sym_var] = ACTIONS(696), - [anon_sym_let] = ACTIONS(696), - [anon_sym_const] = ACTIONS(696), - [anon_sym_using] = ACTIONS(696), - [anon_sym_await] = ACTIONS(696), - [anon_sym_of] = ACTIONS(696), - [anon_sym_else] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_switch] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_in] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [anon_sym_do] = ACTIONS(696), - [anon_sym_try] = ACTIONS(696), - [anon_sym_break] = ACTIONS(696), - [anon_sym_continue] = ACTIONS(696), - [anon_sym_debugger] = ACTIONS(696), - [anon_sym_return] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_case] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_DOT] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_class] = ACTIONS(696), - [anon_sym_async] = ACTIONS(696), - [anon_sym_function] = ACTIONS(696), - [sym_optional_chain] = ACTIONS(694), - [anon_sym_new] = ACTIONS(696), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(696), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(696), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_instanceof] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_typeof] = ACTIONS(696), - [anon_sym_void] = ACTIONS(696), - [anon_sym_delete] = ACTIONS(696), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(694), + [sym_declaration] = STATE(460), + [sym_import] = STATE(1368), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(907), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1378), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(718), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(724), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(694), - [sym_number] = ACTIONS(694), - [sym_private_property_identifier] = ACTIONS(694), - [sym_this] = ACTIONS(696), - [sym_super] = ACTIONS(696), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_null] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_static] = ACTIONS(696), - [anon_sym_get] = ACTIONS(696), - [anon_sym_set] = ACTIONS(696), - [sym__automatic_semicolon] = ACTIONS(698), - [sym__ternary_qmark] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, [STATE(89)] = { - [ts_builtin_sym_end] = ACTIONS(700), - [sym_identifier] = ACTIONS(702), - [anon_sym_export] = ACTIONS(702), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(700), - [anon_sym_RBRACE] = ACTIONS(700), - [anon_sym_import] = ACTIONS(702), - [anon_sym_with] = ACTIONS(702), - [anon_sym_var] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_using] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_of] = ACTIONS(702), - [anon_sym_else] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_switch] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(700), - [anon_sym_in] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [anon_sym_do] = ACTIONS(702), - [anon_sym_try] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_debugger] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_throw] = ACTIONS(702), - [anon_sym_case] = ACTIONS(702), - [anon_sym_yield] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LT] = ACTIONS(702), - [anon_sym_GT] = ACTIONS(702), - [anon_sym_DOT] = ACTIONS(702), - [anon_sym_DQUOTE] = ACTIONS(700), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_function] = ACTIONS(702), - [sym_optional_chain] = ACTIONS(700), - [anon_sym_new] = ACTIONS(702), - [anon_sym_AMP_AMP] = ACTIONS(700), - [anon_sym_PIPE_PIPE] = ACTIONS(700), - [anon_sym_GT_GT] = ACTIONS(702), - [anon_sym_GT_GT_GT] = ACTIONS(700), - [anon_sym_LT_LT] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_CARET] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_SLASH] = ACTIONS(702), - [anon_sym_PERCENT] = ACTIONS(700), - [anon_sym_STAR_STAR] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(700), - [anon_sym_EQ_EQ] = ACTIONS(702), - [anon_sym_EQ_EQ_EQ] = ACTIONS(700), - [anon_sym_BANG_EQ] = ACTIONS(702), - [anon_sym_BANG_EQ_EQ] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(700), - [anon_sym_QMARK_QMARK] = ACTIONS(700), - [anon_sym_instanceof] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(702), - [anon_sym_void] = ACTIONS(702), - [anon_sym_delete] = ACTIONS(702), - [anon_sym_PLUS_PLUS] = ACTIONS(700), - [anon_sym_DASH_DASH] = ACTIONS(700), + [sym_declaration] = STATE(482), + [sym_import] = STATE(1368), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(982), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_class_declaration] = STATE(487), + [sym_function_expression] = STATE(744), + [sym_function_declaration] = STATE(487), + [sym_generator_function] = STATE(744), + [sym_generator_function_declaration] = STATE(487), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1378), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(718), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(724), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(700), - [sym_number] = ACTIONS(700), - [sym_private_property_identifier] = ACTIONS(700), - [sym_this] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_true] = ACTIONS(702), - [sym_false] = ACTIONS(702), - [sym_null] = ACTIONS(702), - [sym_undefined] = ACTIONS(702), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_static] = ACTIONS(702), - [anon_sym_get] = ACTIONS(702), - [anon_sym_set] = ACTIONS(702), - [sym__automatic_semicolon] = ACTIONS(700), - [sym__ternary_qmark] = ACTIONS(700), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, [STATE(90)] = { - [ts_builtin_sym_end] = ACTIONS(704), - [sym_identifier] = ACTIONS(706), - [anon_sym_export] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_default] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(704), - [anon_sym_COMMA] = ACTIONS(704), - [anon_sym_RBRACE] = ACTIONS(704), - [anon_sym_import] = ACTIONS(706), - [anon_sym_with] = ACTIONS(706), - [anon_sym_var] = ACTIONS(706), - [anon_sym_let] = ACTIONS(706), - [anon_sym_const] = ACTIONS(706), - [anon_sym_using] = ACTIONS(706), - [anon_sym_await] = ACTIONS(706), - [anon_sym_of] = ACTIONS(706), - [anon_sym_else] = ACTIONS(706), - [anon_sym_if] = ACTIONS(706), - [anon_sym_switch] = ACTIONS(706), - [anon_sym_for] = ACTIONS(706), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_SEMI] = ACTIONS(704), - [anon_sym_in] = ACTIONS(706), - [anon_sym_while] = ACTIONS(706), - [anon_sym_do] = ACTIONS(706), - [anon_sym_try] = ACTIONS(706), - [anon_sym_break] = ACTIONS(706), - [anon_sym_continue] = ACTIONS(706), - [anon_sym_debugger] = ACTIONS(706), - [anon_sym_return] = ACTIONS(706), - [anon_sym_throw] = ACTIONS(706), - [anon_sym_case] = ACTIONS(706), - [anon_sym_yield] = ACTIONS(706), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1308), + [sym_assignment_pattern] = STATE(1418), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1308), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1308), + [sym_spread_element] = STATE(1419), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [sym_pattern] = STATE(1349), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_repeat1] = STATE(1454), + [aux_sym_array_pattern_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(730), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(728), + [anon_sym_await] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(706), - [anon_sym_DOT] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_SQUOTE] = ACTIONS(704), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(706), - [anon_sym_function] = ACTIONS(706), - [sym_optional_chain] = ACTIONS(704), - [anon_sym_new] = ACTIONS(706), - [anon_sym_AMP_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_GT_GT_GT] = ACTIONS(704), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_SLASH] = ACTIONS(706), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_STAR_STAR] = ACTIONS(704), - [anon_sym_LT_EQ] = ACTIONS(704), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_EQ_EQ_EQ] = ACTIONS(704), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ_EQ] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(704), - [anon_sym_QMARK_QMARK] = ACTIONS(704), - [anon_sym_instanceof] = ACTIONS(706), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(704), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(704), - [anon_sym_DASH_DASH] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(738), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(704), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(704), - [sym_this] = ACTIONS(706), - [sym_super] = ACTIONS(706), - [sym_true] = ACTIONS(706), - [sym_false] = ACTIONS(706), - [sym_null] = ACTIONS(706), - [sym_undefined] = ACTIONS(706), - [anon_sym_AT] = ACTIONS(704), - [anon_sym_static] = ACTIONS(706), - [anon_sym_get] = ACTIONS(706), - [anon_sym_set] = ACTIONS(706), - [sym__automatic_semicolon] = ACTIONS(704), - [sym__ternary_qmark] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, [STATE(91)] = { - [ts_builtin_sym_end] = ACTIONS(708), - [sym_identifier] = ACTIONS(710), - [anon_sym_export] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_default] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_COMMA] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(708), - [anon_sym_import] = ACTIONS(710), - [anon_sym_with] = ACTIONS(710), - [anon_sym_var] = ACTIONS(710), - [anon_sym_let] = ACTIONS(710), - [anon_sym_const] = ACTIONS(710), - [anon_sym_using] = ACTIONS(710), - [anon_sym_await] = ACTIONS(710), - [anon_sym_of] = ACTIONS(710), - [anon_sym_else] = ACTIONS(710), - [anon_sym_if] = ACTIONS(710), - [anon_sym_switch] = ACTIONS(710), - [anon_sym_for] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(708), - [anon_sym_in] = ACTIONS(710), - [anon_sym_while] = ACTIONS(710), - [anon_sym_do] = ACTIONS(710), - [anon_sym_try] = ACTIONS(710), - [anon_sym_break] = ACTIONS(710), - [anon_sym_continue] = ACTIONS(710), - [anon_sym_debugger] = ACTIONS(710), - [anon_sym_return] = ACTIONS(710), - [anon_sym_throw] = ACTIONS(710), - [anon_sym_case] = ACTIONS(710), - [anon_sym_yield] = ACTIONS(710), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LT] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(710), - [anon_sym_DOT] = ACTIONS(710), - [anon_sym_DQUOTE] = ACTIONS(708), - [anon_sym_SQUOTE] = ACTIONS(708), - [anon_sym_class] = ACTIONS(710), - [anon_sym_async] = ACTIONS(710), - [anon_sym_function] = ACTIONS(710), - [sym_optional_chain] = ACTIONS(708), - [anon_sym_new] = ACTIONS(710), - [anon_sym_AMP_AMP] = ACTIONS(708), - [anon_sym_PIPE_PIPE] = ACTIONS(708), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_GT_GT_GT] = ACTIONS(708), - [anon_sym_LT_LT] = ACTIONS(708), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(708), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(710), - [anon_sym_PERCENT] = ACTIONS(708), - [anon_sym_STAR_STAR] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(708), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ_EQ] = ACTIONS(708), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ_EQ] = ACTIONS(708), - [anon_sym_GT_EQ] = ACTIONS(708), - [anon_sym_QMARK_QMARK] = ACTIONS(708), - [anon_sym_instanceof] = ACTIONS(710), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(708), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(883), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1308), + [sym_assignment_pattern] = STATE(1418), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1308), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1308), + [sym_spread_element] = STATE(1419), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [sym_pattern] = STATE(1349), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_repeat1] = STATE(1454), + [aux_sym_array_pattern_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(730), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(728), + [anon_sym_await] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(738), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(708), - [sym_number] = ACTIONS(708), - [sym_private_property_identifier] = ACTIONS(708), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(710), - [sym_true] = ACTIONS(710), - [sym_false] = ACTIONS(710), - [sym_null] = ACTIONS(710), - [sym_undefined] = ACTIONS(710), - [anon_sym_AT] = ACTIONS(708), - [anon_sym_static] = ACTIONS(710), - [anon_sym_get] = ACTIONS(710), - [anon_sym_set] = ACTIONS(710), - [sym__automatic_semicolon] = ACTIONS(712), - [sym__ternary_qmark] = ACTIONS(708), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, [STATE(92)] = { - [ts_builtin_sym_end] = ACTIONS(708), - [sym_identifier] = ACTIONS(710), - [anon_sym_export] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(714), - [anon_sym_default] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_COMMA] = ACTIONS(716), - [anon_sym_RBRACE] = ACTIONS(708), - [anon_sym_import] = ACTIONS(710), - [anon_sym_with] = ACTIONS(710), - [anon_sym_var] = ACTIONS(710), - [anon_sym_let] = ACTIONS(710), - [anon_sym_const] = ACTIONS(710), - [anon_sym_using] = ACTIONS(710), - [anon_sym_await] = ACTIONS(710), - [anon_sym_else] = ACTIONS(710), - [anon_sym_if] = ACTIONS(710), - [anon_sym_switch] = ACTIONS(710), - [anon_sym_for] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(708), - [anon_sym_in] = ACTIONS(714), - [anon_sym_while] = ACTIONS(710), - [anon_sym_do] = ACTIONS(710), - [anon_sym_try] = ACTIONS(710), - [anon_sym_break] = ACTIONS(710), - [anon_sym_continue] = ACTIONS(710), - [anon_sym_debugger] = ACTIONS(710), - [anon_sym_return] = ACTIONS(710), - [anon_sym_throw] = ACTIONS(710), - [anon_sym_case] = ACTIONS(710), - [anon_sym_yield] = ACTIONS(710), - [anon_sym_EQ] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LT] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_DOT] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(708), - [anon_sym_SQUOTE] = ACTIONS(708), - [anon_sym_class] = ACTIONS(710), - [anon_sym_async] = ACTIONS(710), - [anon_sym_function] = ACTIONS(710), - [sym_optional_chain] = ACTIONS(716), - [anon_sym_new] = ACTIONS(710), - [anon_sym_AMP_AMP] = ACTIONS(716), - [anon_sym_PIPE_PIPE] = ACTIONS(716), - [anon_sym_GT_GT] = ACTIONS(714), - [anon_sym_GT_GT_GT] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_PIPE] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(710), - [anon_sym_PERCENT] = ACTIONS(716), - [anon_sym_STAR_STAR] = ACTIONS(716), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_EQ_EQ] = ACTIONS(714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(716), - [anon_sym_BANG_EQ] = ACTIONS(714), - [anon_sym_BANG_EQ_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_QMARK_QMARK] = ACTIONS(716), - [anon_sym_instanceof] = ACTIONS(714), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(708), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(863), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1308), + [sym_assignment_pattern] = STATE(1418), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1308), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1308), + [sym_spread_element] = STATE(1438), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [sym_pattern] = STATE(1349), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_repeat1] = STATE(1440), + [aux_sym_array_pattern_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(730), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(728), + [anon_sym_await] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(738), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(708), - [sym_number] = ACTIONS(708), - [sym_private_property_identifier] = ACTIONS(708), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(710), - [sym_true] = ACTIONS(710), - [sym_false] = ACTIONS(710), - [sym_null] = ACTIONS(710), - [sym_undefined] = ACTIONS(710), - [anon_sym_AT] = ACTIONS(708), - [anon_sym_static] = ACTIONS(710), - [anon_sym_get] = ACTIONS(710), - [anon_sym_set] = ACTIONS(710), - [sym__automatic_semicolon] = ACTIONS(720), - [sym__ternary_qmark] = ACTIONS(716), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, [STATE(93)] = { - [ts_builtin_sym_end] = ACTIONS(722), - [sym_identifier] = ACTIONS(724), - [anon_sym_export] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(726), - [anon_sym_default] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_import] = ACTIONS(724), - [anon_sym_with] = ACTIONS(724), - [anon_sym_var] = ACTIONS(724), - [anon_sym_let] = ACTIONS(724), - [anon_sym_const] = ACTIONS(724), - [anon_sym_using] = ACTIONS(724), - [anon_sym_await] = ACTIONS(724), - [anon_sym_else] = ACTIONS(724), - [anon_sym_if] = ACTIONS(724), - [anon_sym_switch] = ACTIONS(724), - [anon_sym_for] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_in] = ACTIONS(726), - [anon_sym_while] = ACTIONS(724), - [anon_sym_do] = ACTIONS(724), - [anon_sym_try] = ACTIONS(724), - [anon_sym_break] = ACTIONS(724), - [anon_sym_continue] = ACTIONS(724), - [anon_sym_debugger] = ACTIONS(724), - [anon_sym_return] = ACTIONS(724), - [anon_sym_throw] = ACTIONS(724), - [anon_sym_case] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(724), - [anon_sym_GT] = ACTIONS(726), - [anon_sym_DOT] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_SQUOTE] = ACTIONS(722), - [anon_sym_class] = ACTIONS(724), - [anon_sym_async] = ACTIONS(724), - [anon_sym_function] = ACTIONS(724), - [sym_optional_chain] = ACTIONS(728), - [anon_sym_new] = ACTIONS(724), - [anon_sym_AMP_AMP] = ACTIONS(728), - [anon_sym_PIPE_PIPE] = ACTIONS(728), - [anon_sym_GT_GT] = ACTIONS(726), - [anon_sym_GT_GT_GT] = ACTIONS(728), - [anon_sym_LT_LT] = ACTIONS(728), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_CARET] = ACTIONS(728), - [anon_sym_PIPE] = ACTIONS(726), - [anon_sym_PLUS] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_SLASH] = ACTIONS(724), - [anon_sym_PERCENT] = ACTIONS(728), - [anon_sym_STAR_STAR] = ACTIONS(728), - [anon_sym_LT_EQ] = ACTIONS(728), - [anon_sym_EQ_EQ] = ACTIONS(726), - [anon_sym_EQ_EQ_EQ] = ACTIONS(728), - [anon_sym_BANG_EQ] = ACTIONS(726), - [anon_sym_BANG_EQ_EQ] = ACTIONS(728), - [anon_sym_GT_EQ] = ACTIONS(728), - [anon_sym_QMARK_QMARK] = ACTIONS(728), - [anon_sym_instanceof] = ACTIONS(726), - [anon_sym_BANG] = ACTIONS(724), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_typeof] = ACTIONS(724), - [anon_sym_void] = ACTIONS(724), - [anon_sym_delete] = ACTIONS(724), - [anon_sym_PLUS_PLUS] = ACTIONS(722), - [anon_sym_DASH_DASH] = ACTIONS(722), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(863), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1308), + [sym_assignment_pattern] = STATE(1418), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1308), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1308), + [sym_spread_element] = STATE(1438), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [sym_pattern] = STATE(1349), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_repeat1] = STATE(1440), + [aux_sym_array_pattern_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(730), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(728), + [anon_sym_await] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(738), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(722), - [sym_number] = ACTIONS(722), - [sym_private_property_identifier] = ACTIONS(722), - [sym_this] = ACTIONS(724), - [sym_super] = ACTIONS(724), - [sym_true] = ACTIONS(724), - [sym_false] = ACTIONS(724), - [sym_null] = ACTIONS(724), - [sym_undefined] = ACTIONS(724), - [anon_sym_AT] = ACTIONS(722), - [anon_sym_static] = ACTIONS(724), - [anon_sym_get] = ACTIONS(724), - [anon_sym_set] = ACTIONS(724), - [sym__automatic_semicolon] = ACTIONS(730), - [sym__ternary_qmark] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, [STATE(94)] = { - [ts_builtin_sym_end] = ACTIONS(732), - [sym_identifier] = ACTIONS(734), - [anon_sym_export] = ACTIONS(734), - [anon_sym_STAR] = ACTIONS(736), - [anon_sym_default] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(732), - [anon_sym_COMMA] = ACTIONS(738), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_import] = ACTIONS(734), - [anon_sym_with] = ACTIONS(734), - [anon_sym_var] = ACTIONS(734), - [anon_sym_let] = ACTIONS(734), - [anon_sym_const] = ACTIONS(734), - [anon_sym_using] = ACTIONS(734), - [anon_sym_await] = ACTIONS(734), - [anon_sym_else] = ACTIONS(734), - [anon_sym_if] = ACTIONS(734), - [anon_sym_switch] = ACTIONS(734), - [anon_sym_for] = ACTIONS(734), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_SEMI] = ACTIONS(732), - [anon_sym_in] = ACTIONS(736), - [anon_sym_while] = ACTIONS(734), - [anon_sym_do] = ACTIONS(734), - [anon_sym_try] = ACTIONS(734), - [anon_sym_break] = ACTIONS(734), - [anon_sym_continue] = ACTIONS(734), - [anon_sym_debugger] = ACTIONS(734), - [anon_sym_return] = ACTIONS(734), - [anon_sym_throw] = ACTIONS(734), - [anon_sym_case] = ACTIONS(734), - [anon_sym_yield] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(736), - [anon_sym_DOT] = ACTIONS(736), - [anon_sym_DQUOTE] = ACTIONS(732), - [anon_sym_SQUOTE] = ACTIONS(732), - [anon_sym_class] = ACTIONS(734), - [anon_sym_async] = ACTIONS(734), - [anon_sym_function] = ACTIONS(734), - [sym_optional_chain] = ACTIONS(738), - [anon_sym_new] = ACTIONS(734), - [anon_sym_AMP_AMP] = ACTIONS(738), - [anon_sym_PIPE_PIPE] = ACTIONS(738), - [anon_sym_GT_GT] = ACTIONS(736), - [anon_sym_GT_GT_GT] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_PLUS] = ACTIONS(734), - [anon_sym_DASH] = ACTIONS(734), - [anon_sym_SLASH] = ACTIONS(734), - [anon_sym_PERCENT] = ACTIONS(738), - [anon_sym_STAR_STAR] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(738), - [anon_sym_EQ_EQ] = ACTIONS(736), - [anon_sym_EQ_EQ_EQ] = ACTIONS(738), - [anon_sym_BANG_EQ] = ACTIONS(736), - [anon_sym_BANG_EQ_EQ] = ACTIONS(738), - [anon_sym_GT_EQ] = ACTIONS(738), - [anon_sym_QMARK_QMARK] = ACTIONS(738), - [anon_sym_instanceof] = ACTIONS(736), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_typeof] = ACTIONS(734), - [anon_sym_void] = ACTIONS(734), - [anon_sym_delete] = ACTIONS(734), - [anon_sym_PLUS_PLUS] = ACTIONS(732), - [anon_sym_DASH_DASH] = ACTIONS(732), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(863), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1308), + [sym_assignment_pattern] = STATE(1418), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1308), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1308), + [sym_spread_element] = STATE(1438), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [sym_pattern] = STATE(1349), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_repeat1] = STATE(1440), + [aux_sym_array_pattern_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(730), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(728), + [anon_sym_await] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(738), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(732), - [sym_number] = ACTIONS(732), - [sym_private_property_identifier] = ACTIONS(732), - [sym_this] = ACTIONS(734), - [sym_super] = ACTIONS(734), - [sym_true] = ACTIONS(734), - [sym_false] = ACTIONS(734), - [sym_null] = ACTIONS(734), - [sym_undefined] = ACTIONS(734), - [anon_sym_AT] = ACTIONS(732), - [anon_sym_static] = ACTIONS(734), - [anon_sym_get] = ACTIONS(734), - [anon_sym_set] = ACTIONS(734), - [sym__automatic_semicolon] = ACTIONS(740), - [sym__ternary_qmark] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, [STATE(95)] = { - [ts_builtin_sym_end] = ACTIONS(742), - [sym_identifier] = ACTIONS(744), - [anon_sym_export] = ACTIONS(744), - [anon_sym_STAR] = ACTIONS(746), - [anon_sym_default] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_import] = ACTIONS(744), - [anon_sym_with] = ACTIONS(744), - [anon_sym_var] = ACTIONS(744), - [anon_sym_let] = ACTIONS(744), - [anon_sym_const] = ACTIONS(744), - [anon_sym_using] = ACTIONS(744), - [anon_sym_await] = ACTIONS(744), - [anon_sym_else] = ACTIONS(744), - [anon_sym_if] = ACTIONS(744), - [anon_sym_switch] = ACTIONS(744), - [anon_sym_for] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_in] = ACTIONS(746), - [anon_sym_while] = ACTIONS(744), - [anon_sym_do] = ACTIONS(744), - [anon_sym_try] = ACTIONS(744), - [anon_sym_break] = ACTIONS(744), - [anon_sym_continue] = ACTIONS(744), - [anon_sym_debugger] = ACTIONS(744), - [anon_sym_return] = ACTIONS(744), - [anon_sym_throw] = ACTIONS(744), - [anon_sym_case] = ACTIONS(744), - [anon_sym_yield] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(742), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(746), - [anon_sym_DOT] = ACTIONS(746), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_class] = ACTIONS(744), - [anon_sym_async] = ACTIONS(744), - [anon_sym_function] = ACTIONS(744), - [sym_optional_chain] = ACTIONS(748), - [anon_sym_new] = ACTIONS(744), - [anon_sym_AMP_AMP] = ACTIONS(748), - [anon_sym_PIPE_PIPE] = ACTIONS(748), - [anon_sym_GT_GT] = ACTIONS(746), - [anon_sym_GT_GT_GT] = ACTIONS(748), - [anon_sym_LT_LT] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_PERCENT] = ACTIONS(748), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(746), - [anon_sym_EQ_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(746), - [anon_sym_BANG_EQ_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_QMARK_QMARK] = ACTIONS(748), - [anon_sym_instanceof] = ACTIONS(746), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_typeof] = ACTIONS(744), - [anon_sym_void] = ACTIONS(744), - [anon_sym_delete] = ACTIONS(744), - [anon_sym_PLUS_PLUS] = ACTIONS(742), - [anon_sym_DASH_DASH] = ACTIONS(742), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(863), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1308), + [sym_assignment_pattern] = STATE(1418), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1308), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1308), + [sym_spread_element] = STATE(1438), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [sym_pattern] = STATE(1349), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_repeat1] = STATE(1440), + [aux_sym_array_pattern_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(730), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(728), + [anon_sym_await] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(748), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(738), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(742), - [sym_number] = ACTIONS(742), - [sym_private_property_identifier] = ACTIONS(742), - [sym_this] = ACTIONS(744), - [sym_super] = ACTIONS(744), - [sym_true] = ACTIONS(744), - [sym_false] = ACTIONS(744), - [sym_null] = ACTIONS(744), - [sym_undefined] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_static] = ACTIONS(744), - [anon_sym_get] = ACTIONS(744), - [anon_sym_set] = ACTIONS(744), - [sym__automatic_semicolon] = ACTIONS(750), - [sym__ternary_qmark] = ACTIONS(748), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, [STATE(96)] = { - [ts_builtin_sym_end] = ACTIONS(752), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(754), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_default] = ACTIONS(754), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(758), - [anon_sym_RBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(754), - [anon_sym_with] = ACTIONS(754), - [anon_sym_var] = ACTIONS(754), - [anon_sym_let] = ACTIONS(754), - [anon_sym_const] = ACTIONS(754), - [anon_sym_using] = ACTIONS(754), - [anon_sym_await] = ACTIONS(754), - [anon_sym_else] = ACTIONS(754), - [anon_sym_if] = ACTIONS(754), - [anon_sym_switch] = ACTIONS(754), - [anon_sym_for] = ACTIONS(754), - [anon_sym_LPAREN] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(752), - [anon_sym_in] = ACTIONS(756), - [anon_sym_while] = ACTIONS(754), - [anon_sym_do] = ACTIONS(754), - [anon_sym_try] = ACTIONS(754), - [anon_sym_break] = ACTIONS(754), - [anon_sym_continue] = ACTIONS(754), - [anon_sym_debugger] = ACTIONS(754), - [anon_sym_return] = ACTIONS(754), - [anon_sym_throw] = ACTIONS(754), - [anon_sym_case] = ACTIONS(754), - [anon_sym_yield] = ACTIONS(754), - [anon_sym_LBRACK] = ACTIONS(752), - [anon_sym_LT] = ACTIONS(754), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(752), - [anon_sym_class] = ACTIONS(754), - [anon_sym_async] = ACTIONS(754), - [anon_sym_function] = ACTIONS(754), - [sym_optional_chain] = ACTIONS(758), - [anon_sym_new] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(758), - [anon_sym_PIPE_PIPE] = ACTIONS(758), - [anon_sym_GT_GT] = ACTIONS(756), - [anon_sym_GT_GT_GT] = ACTIONS(758), - [anon_sym_LT_LT] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(756), - [anon_sym_CARET] = ACTIONS(758), - [anon_sym_PIPE] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_SLASH] = ACTIONS(754), - [anon_sym_PERCENT] = ACTIONS(758), - [anon_sym_STAR_STAR] = ACTIONS(758), - [anon_sym_LT_EQ] = ACTIONS(758), - [anon_sym_EQ_EQ] = ACTIONS(756), - [anon_sym_EQ_EQ_EQ] = ACTIONS(758), - [anon_sym_BANG_EQ] = ACTIONS(756), - [anon_sym_BANG_EQ_EQ] = ACTIONS(758), - [anon_sym_GT_EQ] = ACTIONS(758), - [anon_sym_QMARK_QMARK] = ACTIONS(758), - [anon_sym_instanceof] = ACTIONS(756), - [anon_sym_BANG] = ACTIONS(754), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_typeof] = ACTIONS(754), - [anon_sym_void] = ACTIONS(754), - [anon_sym_delete] = ACTIONS(754), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(752), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(863), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1308), + [sym_assignment_pattern] = STATE(1418), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1308), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1308), + [sym_spread_element] = STATE(1438), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [sym_pattern] = STATE(1349), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_repeat1] = STATE(1440), + [aux_sym_array_pattern_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(730), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(728), + [anon_sym_await] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(738), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(752), - [sym_number] = ACTIONS(752), - [sym_private_property_identifier] = ACTIONS(752), - [sym_this] = ACTIONS(754), - [sym_super] = ACTIONS(754), - [sym_true] = ACTIONS(754), - [sym_false] = ACTIONS(754), - [sym_null] = ACTIONS(754), - [sym_undefined] = ACTIONS(754), - [anon_sym_AT] = ACTIONS(752), - [anon_sym_static] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), - [sym__automatic_semicolon] = ACTIONS(760), - [sym__ternary_qmark] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, [STATE(97)] = { - [ts_builtin_sym_end] = ACTIONS(762), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(764), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_default] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(768), - [anon_sym_RBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(764), - [anon_sym_with] = ACTIONS(764), - [anon_sym_var] = ACTIONS(764), - [anon_sym_let] = ACTIONS(764), - [anon_sym_const] = ACTIONS(764), + [sym_import] = STATE(1337), + [sym_variable_declaration] = STATE(140), + [sym_lexical_declaration] = STATE(140), + [sym_empty_statement] = STATE(140), + [sym_parenthesized_expression] = STATE(563), + [sym_expression] = STATE(886), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1488), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1488), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(563), + [sym_subscript_expression] = STATE(563), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1488), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1878), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(752), + [anon_sym_export] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_import] = ACTIONS(395), + [anon_sym_var] = ACTIONS(758), + [anon_sym_let] = ACTIONS(760), + [anon_sym_const] = ACTIONS(762), [anon_sym_using] = ACTIONS(764), - [anon_sym_await] = ACTIONS(764), - [anon_sym_else] = ACTIONS(764), - [anon_sym_if] = ACTIONS(764), - [anon_sym_switch] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_in] = ACTIONS(766), - [anon_sym_while] = ACTIONS(764), - [anon_sym_do] = ACTIONS(764), - [anon_sym_try] = ACTIONS(764), - [anon_sym_break] = ACTIONS(764), - [anon_sym_continue] = ACTIONS(764), - [anon_sym_debugger] = ACTIONS(764), - [anon_sym_return] = ACTIONS(764), - [anon_sym_throw] = ACTIONS(764), - [anon_sym_case] = ACTIONS(764), - [anon_sym_yield] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_SQUOTE] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(764), - [sym_optional_chain] = ACTIONS(768), - [anon_sym_new] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(768), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_GT_GT_GT] = ACTIONS(768), - [anon_sym_LT_LT] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_QMARK_QMARK] = ACTIONS(768), - [anon_sym_instanceof] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_typeof] = ACTIONS(764), - [anon_sym_void] = ACTIONS(764), - [anon_sym_delete] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(762), - [anon_sym_DASH_DASH] = ACTIONS(762), + [anon_sym_await] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(770), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(762), - [sym_number] = ACTIONS(762), - [sym_private_property_identifier] = ACTIONS(762), - [sym_this] = ACTIONS(764), - [sym_super] = ACTIONS(764), - [sym_true] = ACTIONS(764), - [sym_false] = ACTIONS(764), - [sym_null] = ACTIONS(764), - [sym_undefined] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(762), - [anon_sym_static] = ACTIONS(764), - [anon_sym_get] = ACTIONS(764), - [anon_sym_set] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(770), - [sym__ternary_qmark] = ACTIONS(768), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), [sym_html_comment] = ACTIONS(5), }, [STATE(98)] = { - [ts_builtin_sym_end] = ACTIONS(772), - [sym_identifier] = ACTIONS(774), - [anon_sym_export] = ACTIONS(774), - [anon_sym_STAR] = ACTIONS(776), - [anon_sym_default] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_COMMA] = ACTIONS(778), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(774), - [anon_sym_let] = ACTIONS(774), - [anon_sym_const] = ACTIONS(774), - [anon_sym_using] = ACTIONS(774), - [anon_sym_await] = ACTIONS(774), - [anon_sym_else] = ACTIONS(774), - [anon_sym_if] = ACTIONS(774), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_for] = ACTIONS(774), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(891), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__initializer] = STATE(1463), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1830), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(774), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_of] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(774), [anon_sym_in] = ACTIONS(776), - [anon_sym_while] = ACTIONS(774), - [anon_sym_do] = ACTIONS(774), - [anon_sym_try] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_debugger] = ACTIONS(774), - [anon_sym_return] = ACTIONS(774), - [anon_sym_throw] = ACTIONS(774), - [anon_sym_case] = ACTIONS(774), - [anon_sym_yield] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_LT] = ACTIONS(774), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(776), - [anon_sym_DQUOTE] = ACTIONS(772), - [anon_sym_SQUOTE] = ACTIONS(772), - [anon_sym_class] = ACTIONS(774), - [anon_sym_async] = ACTIONS(774), - [anon_sym_function] = ACTIONS(774), - [sym_optional_chain] = ACTIONS(778), - [anon_sym_new] = ACTIONS(774), - [anon_sym_AMP_AMP] = ACTIONS(778), - [anon_sym_PIPE_PIPE] = ACTIONS(778), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_GT_GT_GT] = ACTIONS(778), - [anon_sym_LT_LT] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(776), - [anon_sym_CARET] = ACTIONS(778), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_SLASH] = ACTIONS(774), - [anon_sym_PERCENT] = ACTIONS(778), - [anon_sym_STAR_STAR] = ACTIONS(778), - [anon_sym_LT_EQ] = ACTIONS(778), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_EQ_EQ_EQ] = ACTIONS(778), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(778), - [anon_sym_GT_EQ] = ACTIONS(778), - [anon_sym_QMARK_QMARK] = ACTIONS(778), - [anon_sym_instanceof] = ACTIONS(776), - [anon_sym_BANG] = ACTIONS(774), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_typeof] = ACTIONS(774), - [anon_sym_void] = ACTIONS(774), - [anon_sym_delete] = ACTIONS(774), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(772), - [sym_number] = ACTIONS(772), - [sym_private_property_identifier] = ACTIONS(772), - [sym_this] = ACTIONS(774), - [sym_super] = ACTIONS(774), - [sym_true] = ACTIONS(774), - [sym_false] = ACTIONS(774), - [sym_null] = ACTIONS(774), - [sym_undefined] = ACTIONS(774), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym__automatic_semicolon] = ACTIONS(780), - [sym__ternary_qmark] = ACTIONS(778), [sym_html_comment] = ACTIONS(5), }, [STATE(99)] = { - [ts_builtin_sym_end] = ACTIONS(782), - [sym_identifier] = ACTIONS(784), - [anon_sym_export] = ACTIONS(784), - [anon_sym_STAR] = ACTIONS(786), - [anon_sym_default] = ACTIONS(784), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_COMMA] = ACTIONS(788), - [anon_sym_RBRACE] = ACTIONS(782), - [anon_sym_import] = ACTIONS(784), - [anon_sym_with] = ACTIONS(784), - [anon_sym_var] = ACTIONS(784), - [anon_sym_let] = ACTIONS(784), - [anon_sym_const] = ACTIONS(784), - [anon_sym_using] = ACTIONS(784), - [anon_sym_await] = ACTIONS(784), - [anon_sym_else] = ACTIONS(784), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(784), - [anon_sym_LPAREN] = ACTIONS(782), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_in] = ACTIONS(786), - [anon_sym_while] = ACTIONS(784), - [anon_sym_do] = ACTIONS(784), - [anon_sym_try] = ACTIONS(784), - [anon_sym_break] = ACTIONS(784), - [anon_sym_continue] = ACTIONS(784), - [anon_sym_debugger] = ACTIONS(784), - [anon_sym_return] = ACTIONS(784), - [anon_sym_throw] = ACTIONS(784), - [anon_sym_case] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(784), - [anon_sym_LBRACK] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(784), - [anon_sym_GT] = ACTIONS(786), - [anon_sym_DOT] = ACTIONS(786), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_SQUOTE] = ACTIONS(782), - [anon_sym_class] = ACTIONS(784), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(784), - [sym_optional_chain] = ACTIONS(788), - [anon_sym_new] = ACTIONS(784), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [anon_sym_GT_GT] = ACTIONS(786), - [anon_sym_GT_GT_GT] = ACTIONS(788), - [anon_sym_LT_LT] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(786), - [anon_sym_CARET] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_PERCENT] = ACTIONS(788), - [anon_sym_STAR_STAR] = ACTIONS(788), - [anon_sym_LT_EQ] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(786), - [anon_sym_EQ_EQ_EQ] = ACTIONS(788), - [anon_sym_BANG_EQ] = ACTIONS(786), - [anon_sym_BANG_EQ_EQ] = ACTIONS(788), - [anon_sym_GT_EQ] = ACTIONS(788), - [anon_sym_QMARK_QMARK] = ACTIONS(788), - [anon_sym_instanceof] = ACTIONS(786), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(782), - [anon_sym_typeof] = ACTIONS(784), - [anon_sym_void] = ACTIONS(784), - [anon_sym_delete] = ACTIONS(784), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), + [sym_import] = STATE(1337), + [sym_variable_declaration] = STATE(135), + [sym_lexical_declaration] = STATE(135), + [sym_empty_statement] = STATE(135), + [sym_parenthesized_expression] = STATE(563), + [sym_expression] = STATE(878), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1488), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1488), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(563), + [sym_subscript_expression] = STATE(563), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1488), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1847), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(752), + [anon_sym_export] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_import] = ACTIONS(395), + [anon_sym_var] = ACTIONS(758), + [anon_sym_let] = ACTIONS(760), + [anon_sym_const] = ACTIONS(762), + [anon_sym_using] = ACTIONS(764), + [anon_sym_await] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(770), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(782), - [sym_number] = ACTIONS(782), - [sym_private_property_identifier] = ACTIONS(782), - [sym_this] = ACTIONS(784), - [sym_super] = ACTIONS(784), - [sym_true] = ACTIONS(784), - [sym_false] = ACTIONS(784), - [sym_null] = ACTIONS(784), - [sym_undefined] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(782), - [anon_sym_static] = ACTIONS(784), - [anon_sym_get] = ACTIONS(784), - [anon_sym_set] = ACTIONS(784), - [sym__automatic_semicolon] = ACTIONS(790), - [sym__ternary_qmark] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), [sym_html_comment] = ACTIONS(5), }, [STATE(100)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(885), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1308), + [sym_assignment_pattern] = STATE(1692), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1308), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1308), + [sym_spread_element] = STATE(1494), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [sym_pattern] = STATE(1495), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(783), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(728), + [anon_sym_await] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(738), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(101)] = { + [ts_builtin_sym_end] = ACTIONS(786), + [sym_identifier] = ACTIONS(788), + [anon_sym_export] = ACTIONS(788), + [anon_sym_STAR] = ACTIONS(788), + [anon_sym_default] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(786), + [anon_sym_RBRACE] = ACTIONS(786), + [anon_sym_import] = ACTIONS(788), + [anon_sym_with] = ACTIONS(788), + [anon_sym_var] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_using] = ACTIONS(788), + [anon_sym_await] = ACTIONS(788), + [anon_sym_of] = ACTIONS(788), + [anon_sym_else] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(786), + [anon_sym_in] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_debugger] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_throw] = ACTIONS(788), + [anon_sym_case] = ACTIONS(788), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_GT] = ACTIONS(788), + [anon_sym_DOT] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(786), + [anon_sym_SQUOTE] = ACTIONS(786), + [anon_sym_class] = ACTIONS(788), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(788), + [sym_optional_chain] = ACTIONS(786), + [anon_sym_new] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(786), + [anon_sym_PIPE_PIPE] = ACTIONS(786), + [anon_sym_GT_GT] = ACTIONS(788), + [anon_sym_GT_GT_GT] = ACTIONS(786), + [anon_sym_LT_LT] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(788), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_STAR_STAR] = ACTIONS(786), + [anon_sym_LT_EQ] = ACTIONS(786), + [anon_sym_EQ_EQ] = ACTIONS(788), + [anon_sym_EQ_EQ_EQ] = ACTIONS(786), + [anon_sym_BANG_EQ] = ACTIONS(788), + [anon_sym_BANG_EQ_EQ] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(786), + [anon_sym_QMARK_QMARK] = ACTIONS(786), + [anon_sym_instanceof] = ACTIONS(788), + [anon_sym_BANG] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(788), + [anon_sym_void] = ACTIONS(788), + [anon_sym_delete] = ACTIONS(788), + [anon_sym_PLUS_PLUS] = ACTIONS(786), + [anon_sym_DASH_DASH] = ACTIONS(786), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(786), + [sym_number] = ACTIONS(786), + [sym_private_property_identifier] = ACTIONS(786), + [anon_sym_this] = ACTIONS(788), + [anon_sym_super] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [anon_sym_null] = ACTIONS(788), + [sym_undefined] = ACTIONS(788), + [anon_sym_AT] = ACTIONS(786), + [anon_sym_static] = ACTIONS(788), + [anon_sym_get] = ACTIONS(788), + [anon_sym_set] = ACTIONS(788), + [sym__automatic_semicolon] = ACTIONS(790), + [sym__ternary_qmark] = ACTIONS(786), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(102)] = { [ts_builtin_sym_end] = ACTIONS(792), [sym_identifier] = ACTIONS(794), [anon_sym_export] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(796), + [anon_sym_STAR] = ACTIONS(794), [anon_sym_default] = ACTIONS(794), [anon_sym_LBRACE] = ACTIONS(792), - [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(792), [anon_sym_RBRACE] = ACTIONS(792), [anon_sym_import] = ACTIONS(794), [anon_sym_with] = ACTIONS(794), @@ -20922,13 +21620,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(794), [anon_sym_using] = ACTIONS(794), [anon_sym_await] = ACTIONS(794), + [anon_sym_of] = ACTIONS(794), [anon_sym_else] = ACTIONS(794), [anon_sym_if] = ACTIONS(794), [anon_sym_switch] = ACTIONS(794), [anon_sym_for] = ACTIONS(794), [anon_sym_LPAREN] = ACTIONS(792), [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_in] = ACTIONS(796), + [anon_sym_in] = ACTIONS(794), [anon_sym_while] = ACTIONS(794), [anon_sym_do] = ACTIONS(794), [anon_sym_try] = ACTIONS(794), @@ -20941,36 +21640,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(792), [anon_sym_LT] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_DOT] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_DOT] = ACTIONS(794), [anon_sym_DQUOTE] = ACTIONS(792), [anon_sym_SQUOTE] = ACTIONS(792), [anon_sym_class] = ACTIONS(794), [anon_sym_async] = ACTIONS(794), [anon_sym_function] = ACTIONS(794), - [sym_optional_chain] = ACTIONS(798), + [sym_optional_chain] = ACTIONS(792), [anon_sym_new] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_GT_GT_GT] = ACTIONS(798), - [anon_sym_LT_LT] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_CARET] = ACTIONS(798), - [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_GT_GT_GT] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), [anon_sym_PLUS] = ACTIONS(794), [anon_sym_DASH] = ACTIONS(794), [anon_sym_SLASH] = ACTIONS(794), - [anon_sym_PERCENT] = ACTIONS(798), - [anon_sym_STAR_STAR] = ACTIONS(798), - [anon_sym_LT_EQ] = ACTIONS(798), - [anon_sym_EQ_EQ] = ACTIONS(796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(798), - [anon_sym_BANG_EQ] = ACTIONS(796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(798), - [anon_sym_GT_EQ] = ACTIONS(798), - [anon_sym_QMARK_QMARK] = ACTIONS(798), - [anon_sym_instanceof] = ACTIONS(796), + [anon_sym_PERCENT] = ACTIONS(792), + [anon_sym_STAR_STAR] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_EQ_EQ] = ACTIONS(794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_QMARK_QMARK] = ACTIONS(792), + [anon_sym_instanceof] = ACTIONS(794), [anon_sym_BANG] = ACTIONS(794), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(794), @@ -20982,3569 +21681,3296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(792), [sym_number] = ACTIONS(792), [sym_private_property_identifier] = ACTIONS(792), - [sym_this] = ACTIONS(794), - [sym_super] = ACTIONS(794), - [sym_true] = ACTIONS(794), - [sym_false] = ACTIONS(794), - [sym_null] = ACTIONS(794), + [anon_sym_this] = ACTIONS(794), + [anon_sym_super] = ACTIONS(794), + [anon_sym_true] = ACTIONS(794), + [anon_sym_false] = ACTIONS(794), + [anon_sym_null] = ACTIONS(794), [sym_undefined] = ACTIONS(794), [anon_sym_AT] = ACTIONS(792), [anon_sym_static] = ACTIONS(794), [anon_sym_get] = ACTIONS(794), [anon_sym_set] = ACTIONS(794), - [sym__automatic_semicolon] = ACTIONS(800), - [sym__ternary_qmark] = ACTIONS(798), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(101)] = { - [sym_declaration] = STATE(469), - [sym_import] = STATE(1326), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(914), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1343), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(802), - [anon_sym_const] = ACTIONS(25), - [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(804), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(102)] = { - [sym_declaration] = STATE(451), - [sym_import] = STATE(1326), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(889), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1322), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(802), - [anon_sym_const] = ACTIONS(25), - [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(804), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(573), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [sym__automatic_semicolon] = ACTIONS(792), + [sym__ternary_qmark] = ACTIONS(792), [sym_html_comment] = ACTIONS(5), }, [STATE(103)] = { - [sym_declaration] = STATE(451), - [sym_import] = STATE(1326), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(889), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1343), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(802), - [anon_sym_const] = ACTIONS(25), - [anon_sym_using] = ACTIONS(27), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1324), + [sym_assignment_pattern] = STATE(1418), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1324), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(554), + [sym_subscript_expression] = STATE(554), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1324), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [sym_pattern] = STATE(1349), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_pattern_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(796), + [anon_sym_export] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(802), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(798), [anon_sym_await] = ACTIONS(804), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_RBRACK] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(798), + [anon_sym_get] = ACTIONS(798), + [anon_sym_set] = ACTIONS(798), [sym_html_comment] = ACTIONS(5), }, [STATE(104)] = { - [sym_declaration] = STATE(469), - [sym_import] = STATE(1326), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(914), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_class_declaration] = STATE(419), - [sym_function_expression] = STATE(740), - [sym_function_declaration] = STATE(419), - [sym_generator_function] = STATE(740), - [sym_generator_function_declaration] = STATE(419), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1322), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(802), - [anon_sym_const] = ACTIONS(25), - [anon_sym_using] = ACTIONS(27), - [anon_sym_await] = ACTIONS(804), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(569), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(573), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(816), + [sym_identifier] = ACTIONS(818), + [anon_sym_export] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_import] = ACTIONS(818), + [anon_sym_with] = ACTIONS(818), + [anon_sym_var] = ACTIONS(818), + [anon_sym_let] = ACTIONS(818), + [anon_sym_const] = ACTIONS(818), + [anon_sym_using] = ACTIONS(818), + [anon_sym_await] = ACTIONS(818), + [anon_sym_of] = ACTIONS(818), + [anon_sym_else] = ACTIONS(818), + [anon_sym_if] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(818), + [anon_sym_for] = ACTIONS(818), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_SEMI] = ACTIONS(816), + [anon_sym_in] = ACTIONS(818), + [anon_sym_while] = ACTIONS(818), + [anon_sym_do] = ACTIONS(818), + [anon_sym_try] = ACTIONS(818), + [anon_sym_break] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(818), + [anon_sym_debugger] = ACTIONS(818), + [anon_sym_return] = ACTIONS(818), + [anon_sym_throw] = ACTIONS(818), + [anon_sym_case] = ACTIONS(818), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_DOT] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_SQUOTE] = ACTIONS(816), + [anon_sym_class] = ACTIONS(818), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(818), + [sym_optional_chain] = ACTIONS(816), + [anon_sym_new] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_GT_GT_GT] = ACTIONS(816), + [anon_sym_LT_LT] = ACTIONS(816), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_CARET] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(818), + [anon_sym_SLASH] = ACTIONS(818), + [anon_sym_PERCENT] = ACTIONS(816), + [anon_sym_STAR_STAR] = ACTIONS(816), + [anon_sym_LT_EQ] = ACTIONS(816), + [anon_sym_EQ_EQ] = ACTIONS(818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(816), + [anon_sym_BANG_EQ] = ACTIONS(818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(816), + [anon_sym_GT_EQ] = ACTIONS(816), + [anon_sym_QMARK_QMARK] = ACTIONS(816), + [anon_sym_instanceof] = ACTIONS(818), + [anon_sym_BANG] = ACTIONS(818), + [anon_sym_TILDE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(818), + [anon_sym_void] = ACTIONS(818), + [anon_sym_delete] = ACTIONS(818), + [anon_sym_PLUS_PLUS] = ACTIONS(816), + [anon_sym_DASH_DASH] = ACTIONS(816), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_BQUOTE] = ACTIONS(816), + [sym_number] = ACTIONS(816), + [sym_private_property_identifier] = ACTIONS(816), + [anon_sym_this] = ACTIONS(818), + [anon_sym_super] = ACTIONS(818), + [anon_sym_true] = ACTIONS(818), + [anon_sym_false] = ACTIONS(818), + [anon_sym_null] = ACTIONS(818), + [sym_undefined] = ACTIONS(818), + [anon_sym_AT] = ACTIONS(816), + [anon_sym_static] = ACTIONS(818), + [anon_sym_get] = ACTIONS(818), + [anon_sym_set] = ACTIONS(818), + [sym__automatic_semicolon] = ACTIONS(816), + [sym__ternary_qmark] = ACTIONS(816), [sym_html_comment] = ACTIONS(5), }, [STATE(105)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1282), - [sym_assignment_pattern] = STATE(1413), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), - [sym_spread_element] = STATE(1485), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [sym_pattern] = STATE(1382), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_repeat1] = STATE(1490), - [aux_sym_array_pattern_repeat1] = STATE(1409), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(812), - [anon_sym_await] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), + [anon_sym_export] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(822), + [anon_sym_default] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_import] = ACTIONS(822), + [anon_sym_with] = ACTIONS(822), + [anon_sym_var] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_using] = ACTIONS(822), + [anon_sym_await] = ACTIONS(822), + [anon_sym_of] = ACTIONS(822), + [anon_sym_else] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_in] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_debugger] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_throw] = ACTIONS(822), + [anon_sym_case] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(820), + [anon_sym_SQUOTE] = ACTIONS(820), + [anon_sym_class] = ACTIONS(822), [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [anon_sym_function] = ACTIONS(822), + [sym_optional_chain] = ACTIONS(820), + [anon_sym_new] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(822), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_SLASH] = ACTIONS(822), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(820), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(820), + [anon_sym_typeof] = ACTIONS(822), + [anon_sym_void] = ACTIONS(822), + [anon_sym_delete] = ACTIONS(822), + [anon_sym_PLUS_PLUS] = ACTIONS(820), + [anon_sym_DASH_DASH] = ACTIONS(820), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(820), + [sym_private_property_identifier] = ACTIONS(820), + [anon_sym_this] = ACTIONS(822), + [anon_sym_super] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_null] = ACTIONS(822), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(820), + [anon_sym_static] = ACTIONS(822), + [anon_sym_get] = ACTIONS(822), + [anon_sym_set] = ACTIONS(822), + [sym__automatic_semicolon] = ACTIONS(820), + [sym__ternary_qmark] = ACTIONS(820), [sym_html_comment] = ACTIONS(5), }, [STATE(106)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1282), - [sym_assignment_pattern] = STATE(1413), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), - [sym_spread_element] = STATE(1485), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [sym_pattern] = STATE(1382), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_repeat1] = STATE(1490), - [aux_sym_array_pattern_repeat1] = STATE(1409), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(812), - [anon_sym_await] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1324), + [sym_assignment_pattern] = STATE(1432), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1324), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(554), + [sym_subscript_expression] = STATE(554), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1324), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [sym_pattern] = STATE(1364), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_pattern_repeat1] = STATE(1441), + [sym_identifier] = ACTIONS(796), + [anon_sym_export] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(802), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(798), + [anon_sym_await] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_RBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(798), + [anon_sym_get] = ACTIONS(798), + [anon_sym_set] = ACTIONS(798), [sym_html_comment] = ACTIONS(5), }, [STATE(107)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(872), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1282), - [sym_assignment_pattern] = STATE(1413), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), - [sym_spread_element] = STATE(1460), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [sym_pattern] = STATE(1382), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_repeat1] = STATE(1450), - [aux_sym_array_pattern_repeat1] = STATE(1409), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(812), - [anon_sym_await] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [ts_builtin_sym_end] = ACTIONS(786), + [sym_identifier] = ACTIONS(788), + [anon_sym_export] = ACTIONS(788), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_default] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(828), + [anon_sym_RBRACE] = ACTIONS(786), + [anon_sym_import] = ACTIONS(788), + [anon_sym_with] = ACTIONS(788), + [anon_sym_var] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_using] = ACTIONS(788), + [anon_sym_await] = ACTIONS(788), + [anon_sym_else] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(786), + [anon_sym_in] = ACTIONS(826), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_debugger] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_throw] = ACTIONS(788), + [anon_sym_case] = ACTIONS(788), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_LBRACK] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(786), + [anon_sym_SQUOTE] = ACTIONS(786), + [anon_sym_class] = ACTIONS(788), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(788), + [sym_optional_chain] = ACTIONS(828), + [anon_sym_new] = ACTIONS(788), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(788), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_STAR_STAR] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(828), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_QMARK_QMARK] = ACTIONS(828), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(788), + [anon_sym_void] = ACTIONS(788), + [anon_sym_delete] = ACTIONS(788), + [anon_sym_PLUS_PLUS] = ACTIONS(786), + [anon_sym_DASH_DASH] = ACTIONS(786), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(786), + [sym_number] = ACTIONS(786), + [sym_private_property_identifier] = ACTIONS(786), + [anon_sym_this] = ACTIONS(788), + [anon_sym_super] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [anon_sym_null] = ACTIONS(788), + [sym_undefined] = ACTIONS(788), + [anon_sym_AT] = ACTIONS(786), + [anon_sym_static] = ACTIONS(788), + [anon_sym_get] = ACTIONS(788), + [anon_sym_set] = ACTIONS(788), + [sym__automatic_semicolon] = ACTIONS(832), + [sym__ternary_qmark] = ACTIONS(828), [sym_html_comment] = ACTIONS(5), }, [STATE(108)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1282), - [sym_assignment_pattern] = STATE(1413), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), - [sym_spread_element] = STATE(1485), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [sym_pattern] = STATE(1382), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_repeat1] = STATE(1490), - [aux_sym_array_pattern_repeat1] = STATE(1409), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(812), - [anon_sym_await] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(830), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), + [anon_sym_export] = ACTIONS(836), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_default] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(836), + [anon_sym_var] = ACTIONS(836), + [anon_sym_let] = ACTIONS(836), + [anon_sym_const] = ACTIONS(836), + [anon_sym_using] = ACTIONS(836), + [anon_sym_await] = ACTIONS(836), + [anon_sym_of] = ACTIONS(836), + [anon_sym_else] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_switch] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_in] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_do] = ACTIONS(836), + [anon_sym_try] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_debugger] = ACTIONS(836), + [anon_sym_return] = ACTIONS(836), + [anon_sym_throw] = ACTIONS(836), + [anon_sym_case] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_class] = ACTIONS(836), + [anon_sym_async] = ACTIONS(836), + [anon_sym_function] = ACTIONS(836), + [sym_optional_chain] = ACTIONS(834), + [anon_sym_new] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_GT_GT_GT] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(836), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_STAR_STAR] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(836), + [anon_sym_EQ_EQ_EQ] = ACTIONS(834), + [anon_sym_BANG_EQ] = ACTIONS(836), + [anon_sym_BANG_EQ_EQ] = ACTIONS(834), + [anon_sym_GT_EQ] = ACTIONS(834), + [anon_sym_QMARK_QMARK] = ACTIONS(834), + [anon_sym_instanceof] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(836), + [anon_sym_void] = ACTIONS(836), + [anon_sym_delete] = ACTIONS(836), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(834), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(834), + [sym_number] = ACTIONS(834), + [sym_private_property_identifier] = ACTIONS(834), + [anon_sym_this] = ACTIONS(836), + [anon_sym_super] = ACTIONS(836), + [anon_sym_true] = ACTIONS(836), + [anon_sym_false] = ACTIONS(836), + [anon_sym_null] = ACTIONS(836), + [sym_undefined] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(834), + [anon_sym_static] = ACTIONS(836), + [anon_sym_get] = ACTIONS(836), + [anon_sym_set] = ACTIONS(836), + [sym__automatic_semicolon] = ACTIONS(834), + [sym__ternary_qmark] = ACTIONS(834), [sym_html_comment] = ACTIONS(5), }, [STATE(109)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1282), - [sym_assignment_pattern] = STATE(1413), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), - [sym_spread_element] = STATE(1485), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [sym_pattern] = STATE(1382), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_repeat1] = STATE(1490), - [aux_sym_array_pattern_repeat1] = STATE(1409), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(812), - [anon_sym_await] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(988), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1308), + [sym_assignment_pattern] = STATE(1418), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1308), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(566), + [sym_subscript_expression] = STATE(566), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1308), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [sym_pattern] = STATE(1349), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_pattern_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_COMMA] = ACTIONS(802), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(840), + [anon_sym_await] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_RBRACK] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), [sym_html_comment] = ACTIONS(5), }, [STATE(110)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1282), - [sym_assignment_pattern] = STATE(1413), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), - [sym_spread_element] = STATE(1485), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [sym_pattern] = STATE(1382), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_repeat1] = STATE(1490), - [aux_sym_array_pattern_repeat1] = STATE(1409), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(812), - [anon_sym_await] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), + [anon_sym_export] = ACTIONS(836), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_default] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(836), + [anon_sym_var] = ACTIONS(836), + [anon_sym_let] = ACTIONS(836), + [anon_sym_const] = ACTIONS(836), + [anon_sym_using] = ACTIONS(836), + [anon_sym_await] = ACTIONS(836), + [anon_sym_of] = ACTIONS(836), + [anon_sym_else] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_switch] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_in] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_do] = ACTIONS(836), + [anon_sym_try] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_debugger] = ACTIONS(836), + [anon_sym_return] = ACTIONS(836), + [anon_sym_throw] = ACTIONS(836), + [anon_sym_case] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_class] = ACTIONS(836), + [anon_sym_async] = ACTIONS(836), + [anon_sym_function] = ACTIONS(836), + [sym_optional_chain] = ACTIONS(834), + [anon_sym_new] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_GT_GT_GT] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(836), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_STAR_STAR] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(836), + [anon_sym_EQ_EQ_EQ] = ACTIONS(834), + [anon_sym_BANG_EQ] = ACTIONS(836), + [anon_sym_BANG_EQ_EQ] = ACTIONS(834), + [anon_sym_GT_EQ] = ACTIONS(834), + [anon_sym_QMARK_QMARK] = ACTIONS(834), + [anon_sym_instanceof] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(836), + [anon_sym_void] = ACTIONS(836), + [anon_sym_delete] = ACTIONS(836), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(834), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(834), + [sym_number] = ACTIONS(834), + [sym_private_property_identifier] = ACTIONS(834), + [anon_sym_this] = ACTIONS(836), + [anon_sym_super] = ACTIONS(836), + [anon_sym_true] = ACTIONS(836), + [anon_sym_false] = ACTIONS(836), + [anon_sym_null] = ACTIONS(836), + [sym_undefined] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(834), + [anon_sym_static] = ACTIONS(836), + [anon_sym_get] = ACTIONS(836), + [anon_sym_set] = ACTIONS(836), + [sym__automatic_semicolon] = ACTIONS(852), + [sym__ternary_qmark] = ACTIONS(834), [sym_html_comment] = ACTIONS(5), }, [STATE(111)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(841), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1282), - [sym_assignment_pattern] = STATE(1413), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), - [sym_spread_element] = STATE(1460), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [sym_pattern] = STATE(1382), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_repeat1] = STATE(1450), - [aux_sym_array_pattern_repeat1] = STATE(1409), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(812), - [anon_sym_await] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [ts_builtin_sym_end] = ACTIONS(854), + [sym_identifier] = ACTIONS(856), + [anon_sym_export] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(858), + [anon_sym_default] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_COMMA] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_import] = ACTIONS(856), + [anon_sym_with] = ACTIONS(856), + [anon_sym_var] = ACTIONS(856), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(856), + [anon_sym_using] = ACTIONS(856), + [anon_sym_await] = ACTIONS(856), + [anon_sym_else] = ACTIONS(856), + [anon_sym_if] = ACTIONS(856), + [anon_sym_switch] = ACTIONS(856), + [anon_sym_for] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_in] = ACTIONS(858), + [anon_sym_while] = ACTIONS(856), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(856), + [anon_sym_continue] = ACTIONS(856), + [anon_sym_debugger] = ACTIONS(856), + [anon_sym_return] = ACTIONS(856), + [anon_sym_throw] = ACTIONS(856), + [anon_sym_case] = ACTIONS(856), + [anon_sym_yield] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(858), + [anon_sym_DOT] = ACTIONS(858), + [anon_sym_DQUOTE] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_class] = ACTIONS(856), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(856), + [sym_optional_chain] = ACTIONS(860), + [anon_sym_new] = ACTIONS(856), + [anon_sym_AMP_AMP] = ACTIONS(860), + [anon_sym_PIPE_PIPE] = ACTIONS(860), + [anon_sym_GT_GT] = ACTIONS(858), + [anon_sym_GT_GT_GT] = ACTIONS(860), + [anon_sym_LT_LT] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_SLASH] = ACTIONS(856), + [anon_sym_PERCENT] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(860), + [anon_sym_EQ_EQ] = ACTIONS(858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(860), + [anon_sym_BANG_EQ] = ACTIONS(858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(860), + [anon_sym_QMARK_QMARK] = ACTIONS(860), + [anon_sym_instanceof] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(856), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_typeof] = ACTIONS(856), + [anon_sym_void] = ACTIONS(856), + [anon_sym_delete] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(854), + [sym_number] = ACTIONS(854), + [sym_private_property_identifier] = ACTIONS(854), + [anon_sym_this] = ACTIONS(856), + [anon_sym_super] = ACTIONS(856), + [anon_sym_true] = ACTIONS(856), + [anon_sym_false] = ACTIONS(856), + [anon_sym_null] = ACTIONS(856), + [sym_undefined] = ACTIONS(856), + [anon_sym_AT] = ACTIONS(854), + [anon_sym_static] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(860), [sym_html_comment] = ACTIONS(5), }, [STATE(112)] = { - [sym_import] = STATE(1333), - [sym_variable_declaration] = STATE(141), - [sym_lexical_declaration] = STATE(141), - [sym_empty_statement] = STATE(141), - [sym_parenthesized_expression] = STATE(564), - [sym_expression] = STATE(842), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1481), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1481), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(564), - [sym_subscript_expression] = STATE(564), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1481), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1847), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(836), - [anon_sym_export] = ACTIONS(838), - [anon_sym_LBRACE] = ACTIONS(840), - [anon_sym_import] = ACTIONS(375), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), - [anon_sym_using] = ACTIONS(848), - [anon_sym_await] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(854), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [ts_builtin_sym_end] = ACTIONS(864), + [sym_identifier] = ACTIONS(866), + [anon_sym_export] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(868), + [anon_sym_default] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(864), + [anon_sym_COMMA] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_import] = ACTIONS(866), + [anon_sym_with] = ACTIONS(866), + [anon_sym_var] = ACTIONS(866), + [anon_sym_let] = ACTIONS(866), + [anon_sym_const] = ACTIONS(866), + [anon_sym_using] = ACTIONS(866), + [anon_sym_await] = ACTIONS(866), + [anon_sym_else] = ACTIONS(866), + [anon_sym_if] = ACTIONS(866), + [anon_sym_switch] = ACTIONS(866), + [anon_sym_for] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(864), + [anon_sym_in] = ACTIONS(868), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(866), + [anon_sym_try] = ACTIONS(866), + [anon_sym_break] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(866), + [anon_sym_debugger] = ACTIONS(866), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_case] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(864), + [anon_sym_LT] = ACTIONS(866), + [anon_sym_GT] = ACTIONS(868), + [anon_sym_DOT] = ACTIONS(868), + [anon_sym_DQUOTE] = ACTIONS(864), + [anon_sym_SQUOTE] = ACTIONS(864), + [anon_sym_class] = ACTIONS(866), + [anon_sym_async] = ACTIONS(866), + [anon_sym_function] = ACTIONS(866), + [sym_optional_chain] = ACTIONS(870), + [anon_sym_new] = ACTIONS(866), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_GT_GT] = ACTIONS(868), + [anon_sym_GT_GT_GT] = ACTIONS(870), + [anon_sym_LT_LT] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(868), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_PIPE] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_PERCENT] = ACTIONS(870), + [anon_sym_STAR_STAR] = ACTIONS(870), + [anon_sym_LT_EQ] = ACTIONS(870), + [anon_sym_EQ_EQ] = ACTIONS(868), + [anon_sym_EQ_EQ_EQ] = ACTIONS(870), + [anon_sym_BANG_EQ] = ACTIONS(868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(870), + [anon_sym_GT_EQ] = ACTIONS(870), + [anon_sym_QMARK_QMARK] = ACTIONS(870), + [anon_sym_instanceof] = ACTIONS(868), + [anon_sym_BANG] = ACTIONS(866), + [anon_sym_TILDE] = ACTIONS(864), + [anon_sym_typeof] = ACTIONS(866), + [anon_sym_void] = ACTIONS(866), + [anon_sym_delete] = ACTIONS(866), + [anon_sym_PLUS_PLUS] = ACTIONS(864), + [anon_sym_DASH_DASH] = ACTIONS(864), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(856), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), + [anon_sym_BQUOTE] = ACTIONS(864), + [sym_number] = ACTIONS(864), + [sym_private_property_identifier] = ACTIONS(864), + [anon_sym_this] = ACTIONS(866), + [anon_sym_super] = ACTIONS(866), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_null] = ACTIONS(866), + [sym_undefined] = ACTIONS(866), + [anon_sym_AT] = ACTIONS(864), + [anon_sym_static] = ACTIONS(866), + [anon_sym_get] = ACTIONS(866), + [anon_sym_set] = ACTIONS(866), + [sym__automatic_semicolon] = ACTIONS(872), + [sym__ternary_qmark] = ACTIONS(870), [sym_html_comment] = ACTIONS(5), }, [STATE(113)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(880), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__initializer] = STATE(1408), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1854), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(858), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_of] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_in] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(862), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), + [anon_sym_export] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_default] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_import] = ACTIONS(876), + [anon_sym_with] = ACTIONS(876), + [anon_sym_var] = ACTIONS(876), + [anon_sym_let] = ACTIONS(876), + [anon_sym_const] = ACTIONS(876), + [anon_sym_using] = ACTIONS(876), + [anon_sym_await] = ACTIONS(876), + [anon_sym_else] = ACTIONS(876), + [anon_sym_if] = ACTIONS(876), + [anon_sym_switch] = ACTIONS(876), + [anon_sym_for] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_in] = ACTIONS(878), + [anon_sym_while] = ACTIONS(876), + [anon_sym_do] = ACTIONS(876), + [anon_sym_try] = ACTIONS(876), + [anon_sym_break] = ACTIONS(876), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(876), + [anon_sym_throw] = ACTIONS(876), + [anon_sym_case] = ACTIONS(876), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_DOT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(874), + [anon_sym_class] = ACTIONS(876), + [anon_sym_async] = ACTIONS(876), + [anon_sym_function] = ACTIONS(876), + [sym_optional_chain] = ACTIONS(880), + [anon_sym_new] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_GT_GT_GT] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_QMARK_QMARK] = ACTIONS(880), + [anon_sym_instanceof] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(876), + [anon_sym_TILDE] = ACTIONS(874), + [anon_sym_typeof] = ACTIONS(876), + [anon_sym_void] = ACTIONS(876), + [anon_sym_delete] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(874), + [anon_sym_DASH_DASH] = ACTIONS(874), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym__automatic_semicolon] = ACTIONS(864), + [anon_sym_BQUOTE] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [sym_private_property_identifier] = ACTIONS(874), + [anon_sym_this] = ACTIONS(876), + [anon_sym_super] = ACTIONS(876), + [anon_sym_true] = ACTIONS(876), + [anon_sym_false] = ACTIONS(876), + [anon_sym_null] = ACTIONS(876), + [sym_undefined] = ACTIONS(876), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_static] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [sym__automatic_semicolon] = ACTIONS(882), + [sym__ternary_qmark] = ACTIONS(880), [sym_html_comment] = ACTIONS(5), }, [STATE(114)] = { - [sym_import] = STATE(1333), - [sym_variable_declaration] = STATE(143), - [sym_lexical_declaration] = STATE(143), - [sym_empty_statement] = STATE(143), - [sym_parenthesized_expression] = STATE(564), - [sym_expression] = STATE(864), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1481), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1481), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(564), - [sym_subscript_expression] = STATE(564), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1481), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1868), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(836), - [anon_sym_export] = ACTIONS(838), - [anon_sym_LBRACE] = ACTIONS(840), - [anon_sym_import] = ACTIONS(375), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), - [anon_sym_using] = ACTIONS(848), - [anon_sym_await] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(854), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [ts_builtin_sym_end] = ACTIONS(884), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(886), + [anon_sym_STAR] = ACTIONS(888), + [anon_sym_default] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(884), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_import] = ACTIONS(886), + [anon_sym_with] = ACTIONS(886), + [anon_sym_var] = ACTIONS(886), + [anon_sym_let] = ACTIONS(886), + [anon_sym_const] = ACTIONS(886), + [anon_sym_using] = ACTIONS(886), + [anon_sym_await] = ACTIONS(886), + [anon_sym_else] = ACTIONS(886), + [anon_sym_if] = ACTIONS(886), + [anon_sym_switch] = ACTIONS(886), + [anon_sym_for] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_in] = ACTIONS(888), + [anon_sym_while] = ACTIONS(886), + [anon_sym_do] = ACTIONS(886), + [anon_sym_try] = ACTIONS(886), + [anon_sym_break] = ACTIONS(886), + [anon_sym_continue] = ACTIONS(886), + [anon_sym_debugger] = ACTIONS(886), + [anon_sym_return] = ACTIONS(886), + [anon_sym_throw] = ACTIONS(886), + [anon_sym_case] = ACTIONS(886), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(888), + [anon_sym_DOT] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(884), + [anon_sym_class] = ACTIONS(886), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(890), + [anon_sym_new] = ACTIONS(886), + [anon_sym_AMP_AMP] = ACTIONS(890), + [anon_sym_PIPE_PIPE] = ACTIONS(890), + [anon_sym_GT_GT] = ACTIONS(888), + [anon_sym_GT_GT_GT] = ACTIONS(890), + [anon_sym_LT_LT] = ACTIONS(890), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_CARET] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_SLASH] = ACTIONS(886), + [anon_sym_PERCENT] = ACTIONS(890), + [anon_sym_STAR_STAR] = ACTIONS(890), + [anon_sym_LT_EQ] = ACTIONS(890), + [anon_sym_EQ_EQ] = ACTIONS(888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(890), + [anon_sym_BANG_EQ] = ACTIONS(888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(890), + [anon_sym_GT_EQ] = ACTIONS(890), + [anon_sym_QMARK_QMARK] = ACTIONS(890), + [anon_sym_instanceof] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_typeof] = ACTIONS(886), + [anon_sym_void] = ACTIONS(886), + [anon_sym_delete] = ACTIONS(886), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_DASH_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(856), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), + [anon_sym_BQUOTE] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [sym_private_property_identifier] = ACTIONS(884), + [anon_sym_this] = ACTIONS(886), + [anon_sym_super] = ACTIONS(886), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_null] = ACTIONS(886), + [sym_undefined] = ACTIONS(886), + [anon_sym_AT] = ACTIONS(884), + [anon_sym_static] = ACTIONS(886), + [anon_sym_get] = ACTIONS(886), + [anon_sym_set] = ACTIONS(886), + [sym__automatic_semicolon] = ACTIONS(892), + [sym__ternary_qmark] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, [STATE(115)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1307), - [sym_assignment_pattern] = STATE(1413), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(558), - [sym_subscript_expression] = STATE(558), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [sym_pattern] = STATE(1382), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_pattern_repeat1] = STATE(1409), - [sym_identifier] = ACTIONS(867), - [anon_sym_export] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_COMMA] = ACTIONS(873), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(869), - [anon_sym_await] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(879), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [ts_builtin_sym_end] = ACTIONS(894), + [sym_identifier] = ACTIONS(896), + [anon_sym_export] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_default] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_COMMA] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_import] = ACTIONS(896), + [anon_sym_with] = ACTIONS(896), + [anon_sym_var] = ACTIONS(896), + [anon_sym_let] = ACTIONS(896), + [anon_sym_const] = ACTIONS(896), + [anon_sym_using] = ACTIONS(896), + [anon_sym_await] = ACTIONS(896), + [anon_sym_else] = ACTIONS(896), + [anon_sym_if] = ACTIONS(896), + [anon_sym_switch] = ACTIONS(896), + [anon_sym_for] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_in] = ACTIONS(898), + [anon_sym_while] = ACTIONS(896), + [anon_sym_do] = ACTIONS(896), + [anon_sym_try] = ACTIONS(896), + [anon_sym_break] = ACTIONS(896), + [anon_sym_continue] = ACTIONS(896), + [anon_sym_debugger] = ACTIONS(896), + [anon_sym_return] = ACTIONS(896), + [anon_sym_throw] = ACTIONS(896), + [anon_sym_case] = ACTIONS(896), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_DOT] = ACTIONS(898), + [anon_sym_DQUOTE] = ACTIONS(894), + [anon_sym_SQUOTE] = ACTIONS(894), + [anon_sym_class] = ACTIONS(896), + [anon_sym_async] = ACTIONS(896), + [anon_sym_function] = ACTIONS(896), + [sym_optional_chain] = ACTIONS(900), + [anon_sym_new] = ACTIONS(896), + [anon_sym_AMP_AMP] = ACTIONS(900), + [anon_sym_PIPE_PIPE] = ACTIONS(900), + [anon_sym_GT_GT] = ACTIONS(898), + [anon_sym_GT_GT_GT] = ACTIONS(900), + [anon_sym_LT_LT] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(898), + [anon_sym_CARET] = ACTIONS(900), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_SLASH] = ACTIONS(896), + [anon_sym_PERCENT] = ACTIONS(900), + [anon_sym_STAR_STAR] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(900), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(900), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(900), + [anon_sym_QMARK_QMARK] = ACTIONS(900), + [anon_sym_instanceof] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_typeof] = ACTIONS(896), + [anon_sym_void] = ACTIONS(896), + [anon_sym_delete] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(869), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(869), + [anon_sym_BQUOTE] = ACTIONS(894), + [sym_number] = ACTIONS(894), + [sym_private_property_identifier] = ACTIONS(894), + [anon_sym_this] = ACTIONS(896), + [anon_sym_super] = ACTIONS(896), + [anon_sym_true] = ACTIONS(896), + [anon_sym_false] = ACTIONS(896), + [anon_sym_null] = ACTIONS(896), + [sym_undefined] = ACTIONS(896), + [anon_sym_AT] = ACTIONS(894), + [anon_sym_static] = ACTIONS(896), + [anon_sym_get] = ACTIONS(896), + [anon_sym_set] = ACTIONS(896), + [sym__automatic_semicolon] = ACTIONS(902), + [sym__ternary_qmark] = ACTIONS(900), [sym_html_comment] = ACTIONS(5), }, [STATE(116)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(975), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1282), - [sym_assignment_pattern] = STATE(1413), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(572), - [sym_subscript_expression] = STATE(572), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [sym_pattern] = STATE(1382), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_pattern_repeat1] = STATE(1409), - [sym_identifier] = ACTIONS(887), - [anon_sym_export] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(873), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(889), - [anon_sym_await] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_RBRACK] = ACTIONS(879), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1324), + [sym_assignment_pattern] = STATE(1692), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1324), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(554), + [sym_subscript_expression] = STATE(554), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1324), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [sym_pattern] = STATE(1495), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(796), + [anon_sym_export] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(904), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(798), + [anon_sym_await] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_RBRACK] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(889), - [anon_sym_get] = ACTIONS(889), - [anon_sym_set] = ACTIONS(889), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(798), + [anon_sym_get] = ACTIONS(798), + [anon_sym_set] = ACTIONS(798), [sym_html_comment] = ACTIONS(5), }, [STATE(117)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(845), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1282), - [sym_assignment_pattern] = STATE(1699), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), - [sym_spread_element] = STATE(1488), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [sym_pattern] = STATE(1410), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(901), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(812), - [anon_sym_await] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(895), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1308), + [sym_assignment_pattern] = STATE(1493), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1308), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1308), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1774), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [sym_pattern] = STATE(1406), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(728), + [anon_sym_await] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(906), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(738), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, [STATE(118)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1307), - [sym_assignment_pattern] = STATE(1484), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(558), - [sym_subscript_expression] = STATE(558), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [sym_pattern] = STATE(1347), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_pattern_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(867), - [anon_sym_export] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_COMMA] = ACTIONS(873), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(869), - [anon_sym_await] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [ts_builtin_sym_end] = ACTIONS(908), + [sym_identifier] = ACTIONS(910), + [anon_sym_export] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_default] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_COMMA] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_import] = ACTIONS(910), + [anon_sym_with] = ACTIONS(910), + [anon_sym_var] = ACTIONS(910), + [anon_sym_let] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_using] = ACTIONS(910), + [anon_sym_await] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_in] = ACTIONS(912), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_try] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_debugger] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_throw] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(908), + [anon_sym_LT] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(912), + [anon_sym_DOT] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_class] = ACTIONS(910), + [anon_sym_async] = ACTIONS(910), + [anon_sym_function] = ACTIONS(910), + [sym_optional_chain] = ACTIONS(914), + [anon_sym_new] = ACTIONS(910), + [anon_sym_AMP_AMP] = ACTIONS(914), + [anon_sym_PIPE_PIPE] = ACTIONS(914), + [anon_sym_GT_GT] = ACTIONS(912), + [anon_sym_GT_GT_GT] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(914), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_CARET] = ACTIONS(914), + [anon_sym_PIPE] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_SLASH] = ACTIONS(910), + [anon_sym_PERCENT] = ACTIONS(914), + [anon_sym_STAR_STAR] = ACTIONS(914), + [anon_sym_LT_EQ] = ACTIONS(914), + [anon_sym_EQ_EQ] = ACTIONS(912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(914), + [anon_sym_BANG_EQ] = ACTIONS(912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(914), + [anon_sym_GT_EQ] = ACTIONS(914), + [anon_sym_QMARK_QMARK] = ACTIONS(914), + [anon_sym_instanceof] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_typeof] = ACTIONS(910), + [anon_sym_void] = ACTIONS(910), + [anon_sym_delete] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_DASH_DASH] = ACTIONS(908), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(869), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(869), + [anon_sym_BQUOTE] = ACTIONS(908), + [sym_number] = ACTIONS(908), + [sym_private_property_identifier] = ACTIONS(908), + [anon_sym_this] = ACTIONS(910), + [anon_sym_super] = ACTIONS(910), + [anon_sym_true] = ACTIONS(910), + [anon_sym_false] = ACTIONS(910), + [anon_sym_null] = ACTIONS(910), + [sym_undefined] = ACTIONS(910), + [anon_sym_AT] = ACTIONS(908), + [anon_sym_static] = ACTIONS(910), + [anon_sym_get] = ACTIONS(910), + [anon_sym_set] = ACTIONS(910), + [sym__automatic_semicolon] = ACTIONS(916), + [sym__ternary_qmark] = ACTIONS(914), [sym_html_comment] = ACTIONS(5), }, [STATE(119)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1282), - [sym_assignment_pattern] = STATE(1426), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1817), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [sym_pattern] = STATE(1370), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(812), - [anon_sym_await] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(650), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(882), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1308), + [sym_assignment_pattern] = STATE(1493), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1308), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1308), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1776), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [sym_pattern] = STATE(1406), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(728), + [anon_sym_await] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_RPAREN] = ACTIONS(906), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(738), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, [STATE(120)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(866), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1282), - [sym_assignment_pattern] = STATE(1426), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1804), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [sym_pattern] = STATE(1370), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(812), - [anon_sym_await] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(906), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [ts_builtin_sym_end] = ACTIONS(918), + [sym_identifier] = ACTIONS(920), + [anon_sym_export] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_default] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(918), + [anon_sym_COMMA] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(918), + [anon_sym_import] = ACTIONS(920), + [anon_sym_with] = ACTIONS(920), + [anon_sym_var] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_using] = ACTIONS(920), + [anon_sym_await] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(918), + [anon_sym_in] = ACTIONS(922), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_debugger] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(918), + [anon_sym_SQUOTE] = ACTIONS(918), + [anon_sym_class] = ACTIONS(920), + [anon_sym_async] = ACTIONS(920), + [anon_sym_function] = ACTIONS(920), + [sym_optional_chain] = ACTIONS(924), + [anon_sym_new] = ACTIONS(920), + [anon_sym_AMP_AMP] = ACTIONS(924), + [anon_sym_PIPE_PIPE] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(922), + [anon_sym_GT_GT_GT] = ACTIONS(924), + [anon_sym_LT_LT] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(924), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_PERCENT] = ACTIONS(924), + [anon_sym_STAR_STAR] = ACTIONS(924), + [anon_sym_LT_EQ] = ACTIONS(924), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_EQ_EQ_EQ] = ACTIONS(924), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ_EQ] = ACTIONS(924), + [anon_sym_GT_EQ] = ACTIONS(924), + [anon_sym_QMARK_QMARK] = ACTIONS(924), + [anon_sym_instanceof] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_typeof] = ACTIONS(920), + [anon_sym_void] = ACTIONS(920), + [anon_sym_delete] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(918), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(918), + [sym_number] = ACTIONS(918), + [sym_private_property_identifier] = ACTIONS(918), + [anon_sym_this] = ACTIONS(920), + [anon_sym_super] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [anon_sym_null] = ACTIONS(920), + [sym_undefined] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(918), + [anon_sym_static] = ACTIONS(920), + [anon_sym_get] = ACTIONS(920), + [anon_sym_set] = ACTIONS(920), + [sym__automatic_semicolon] = ACTIONS(926), + [sym__ternary_qmark] = ACTIONS(924), [sym_html_comment] = ACTIONS(5), }, [STATE(121)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1307), - [sym_assignment_pattern] = STATE(1699), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(558), - [sym_subscript_expression] = STATE(558), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [sym_pattern] = STATE(1410), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(867), - [anon_sym_export] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(869), - [anon_sym_await] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(908), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [ts_builtin_sym_end] = ACTIONS(928), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(932), + [anon_sym_default] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(928), + [anon_sym_import] = ACTIONS(930), + [anon_sym_with] = ACTIONS(930), + [anon_sym_var] = ACTIONS(930), + [anon_sym_let] = ACTIONS(930), + [anon_sym_const] = ACTIONS(930), + [anon_sym_using] = ACTIONS(930), + [anon_sym_await] = ACTIONS(930), + [anon_sym_else] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_switch] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_in] = ACTIONS(932), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(930), + [anon_sym_try] = ACTIONS(930), + [anon_sym_break] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_debugger] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_case] = ACTIONS(930), + [anon_sym_yield] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(932), + [anon_sym_DOT] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_class] = ACTIONS(930), + [anon_sym_async] = ACTIONS(930), + [anon_sym_function] = ACTIONS(930), + [sym_optional_chain] = ACTIONS(934), + [anon_sym_new] = ACTIONS(930), + [anon_sym_AMP_AMP] = ACTIONS(934), + [anon_sym_PIPE_PIPE] = ACTIONS(934), + [anon_sym_GT_GT] = ACTIONS(932), + [anon_sym_GT_GT_GT] = ACTIONS(934), + [anon_sym_LT_LT] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(932), + [anon_sym_CARET] = ACTIONS(934), + [anon_sym_PIPE] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_SLASH] = ACTIONS(930), + [anon_sym_PERCENT] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_QMARK_QMARK] = ACTIONS(934), + [anon_sym_instanceof] = ACTIONS(932), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_typeof] = ACTIONS(930), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(869), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(869), + [anon_sym_BQUOTE] = ACTIONS(928), + [sym_number] = ACTIONS(928), + [sym_private_property_identifier] = ACTIONS(928), + [anon_sym_this] = ACTIONS(930), + [anon_sym_super] = ACTIONS(930), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), + [anon_sym_null] = ACTIONS(930), + [sym_undefined] = ACTIONS(930), + [anon_sym_AT] = ACTIONS(928), + [anon_sym_static] = ACTIONS(930), + [anon_sym_get] = ACTIONS(930), + [anon_sym_set] = ACTIONS(930), + [sym__automatic_semicolon] = ACTIONS(936), + [sym__ternary_qmark] = ACTIONS(934), [sym_html_comment] = ACTIONS(5), }, [STATE(122)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_spread_element] = STATE(1405), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_repeat1] = STATE(1445), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(910), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(912), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(893), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_spread_element] = STATE(1497), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_repeat1] = STATE(1498), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(940), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(123)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(847), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_spread_element] = STATE(1480), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_repeat1] = STATE(1432), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(910), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(869), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_spread_element] = STATE(1473), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_repeat1] = STATE(1474), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(124)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1307), - [sym_assignment_pattern] = STATE(1661), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(558), - [sym_subscript_expression] = STATE(558), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [sym_pattern] = STATE(1474), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(867), - [anon_sym_export] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(869), - [anon_sym_await] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1324), + [sym_assignment_pattern] = STATE(1629), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1324), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(554), + [sym_subscript_expression] = STATE(554), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1324), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [sym_pattern] = STATE(1482), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(796), + [anon_sym_export] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(798), + [anon_sym_await] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(869), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(869), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(798), + [anon_sym_get] = ACTIONS(798), + [anon_sym_set] = ACTIONS(798), [sym_html_comment] = ACTIONS(5), }, [STATE(125)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(859), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_spread_element] = STATE(1437), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [aux_sym_array_repeat1] = STATE(1438), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(910), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(885), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_spread_element] = STATE(1494), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(948), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(126)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1307), - [sym_assignment_pattern] = STATE(1426), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(558), - [sym_subscript_expression] = STATE(558), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [sym_pattern] = STATE(1370), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(867), - [anon_sym_export] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(869), - [anon_sym_await] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(906), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(896), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_spread_element] = STATE(1433), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [aux_sym_array_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(869), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(869), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(127)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(845), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_spread_element] = STATE(1488), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(922), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_RBRACK] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1324), + [sym_assignment_pattern] = STATE(1493), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1324), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(554), + [sym_subscript_expression] = STATE(554), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1324), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [sym_pattern] = STATE(1406), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(796), + [anon_sym_export] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(798), + [anon_sym_await] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(906), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(798), + [anon_sym_get] = ACTIONS(798), + [anon_sym_set] = ACTIONS(798), [sym_html_comment] = ACTIONS(5), }, [STATE(128)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1307), - [sym_assignment_pattern] = STATE(1661), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(558), - [sym_subscript_expression] = STATE(558), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [sym_pattern] = STATE(1474), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(867), - [anon_sym_export] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(869), - [anon_sym_await] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1324), + [sym_assignment_pattern] = STATE(1629), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1324), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(554), + [sym_subscript_expression] = STATE(554), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1324), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [sym_pattern] = STATE(1482), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(796), + [anon_sym_export] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(798), + [anon_sym_await] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(869), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(869), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(798), + [anon_sym_get] = ACTIONS(798), + [anon_sym_set] = ACTIONS(798), [sym_html_comment] = ACTIONS(5), }, [STATE(129)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(850), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_spread_element] = STATE(1845), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1845), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1324), + [sym_assignment_pattern] = STATE(1726), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1324), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(554), + [sym_subscript_expression] = STATE(554), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1324), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [sym_pattern] = STATE(1442), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(796), + [anon_sym_export] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(798), + [anon_sym_await] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(798), + [anon_sym_get] = ACTIONS(798), + [anon_sym_set] = ACTIONS(798), [sym_html_comment] = ACTIONS(5), }, [STATE(130)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1307), - [sym_assignment_pattern] = STATE(1722), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(558), - [sym_subscript_expression] = STATE(558), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [sym_pattern] = STATE(1434), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(867), - [anon_sym_export] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(869), - [anon_sym_await] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(872), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_spread_element] = STATE(1861), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1861), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(869), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(869), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(131)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(861), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_spread_element] = STATE(1765), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1765), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(867), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_spread_element] = STATE(1843), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1843), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(132)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(941), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1282), - [sym_assignment_pattern] = STATE(1722), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [sym_pattern] = STATE(1434), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(812), - [anon_sym_await] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(891), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1830), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_of] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_in] = ACTIONS(776), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym__automatic_semicolon] = ACTIONS(958), [sym_html_comment] = ACTIONS(5), }, [STATE(133)] = { - [sym_namespace_export] = STATE(1692), - [sym_export_clause] = STATE(1358), - [sym_declaration] = STATE(433), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_class_declaration] = STATE(419), - [sym_function_declaration] = STATE(419), - [sym_generator_function_declaration] = STATE(419), - [sym_decorator] = STATE(1097), - [aux_sym_export_statement_repeat1] = STATE(1327), - [aux_sym_object_repeat1] = STATE(1418), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_default] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_var] = ACTIONS(936), - [anon_sym_let] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_using] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_class] = ACTIONS(947), - [anon_sym_async] = ACTIONS(949), - [anon_sym_function] = ACTIONS(951), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(169), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1308), + [sym_assignment_pattern] = STATE(1726), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1308), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1308), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [sym_pattern] = STATE(1442), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(728), + [anon_sym_await] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(738), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, [STATE(134)] = { - [sym_namespace_export] = STATE(1692), - [sym_export_clause] = STATE(1358), - [sym_declaration] = STATE(433), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_class_declaration] = STATE(419), - [sym_function_declaration] = STATE(419), - [sym_generator_function_declaration] = STATE(419), - [sym_decorator] = STATE(1097), - [aux_sym_export_statement_repeat1] = STATE(1327), - [aux_sym_object_repeat1] = STATE(1487), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_default] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_var] = ACTIONS(936), - [anon_sym_let] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_using] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_class] = ACTIONS(947), - [anon_sym_async] = ACTIONS(949), - [anon_sym_function] = ACTIONS(951), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(169), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1324), + [sym_assignment_pattern] = STATE(1629), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1324), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(554), + [sym_subscript_expression] = STATE(554), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1324), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [sym_pattern] = STATE(1482), + [sym_rest_pattern] = STATE(1334), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(796), + [anon_sym_export] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(798), + [anon_sym_await] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(798), + [anon_sym_get] = ACTIONS(798), + [anon_sym_set] = ACTIONS(798), [sym_html_comment] = ACTIONS(5), }, [STATE(135)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1307), - [sym_assignment_pattern] = STATE(1661), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(558), - [sym_subscript_expression] = STATE(558), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [sym_pattern] = STATE(1474), - [sym_rest_pattern] = STATE(1280), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(867), - [anon_sym_export] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(869), - [anon_sym_await] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_empty_statement] = STATE(142), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(877), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1761), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(869), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(869), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(136)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(880), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1854), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_of] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_in] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1506), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1506), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1506), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(960), + [anon_sym_export] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_import] = ACTIONS(395), + [anon_sym_var] = ACTIONS(964), + [anon_sym_let] = ACTIONS(966), + [anon_sym_const] = ACTIONS(764), + [anon_sym_using] = ACTIONS(764), + [anon_sym_await] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(970), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym__automatic_semicolon] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(962), + [anon_sym_get] = ACTIONS(962), + [anon_sym_set] = ACTIONS(962), [sym_html_comment] = ACTIONS(5), }, [STATE(137)] = { - [sym_namespace_export] = STATE(1692), - [sym_export_clause] = STATE(1358), - [sym_declaration] = STATE(433), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_class_declaration] = STATE(419), - [sym_function_declaration] = STATE(419), - [sym_generator_function_declaration] = STATE(419), - [sym_decorator] = STATE(1097), - [aux_sym_export_statement_repeat1] = STATE(1327), - [aux_sym_object_repeat1] = STATE(1418), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_default] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_var] = ACTIONS(936), - [anon_sym_let] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_using] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_class] = ACTIONS(947), - [anon_sym_async] = ACTIONS(949), - [anon_sym_function] = ACTIONS(951), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(169), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_import] = STATE(1337), + [sym_empty_statement] = STATE(148), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(865), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1765), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(138)] = { - [sym_import] = STATE(1333), - [sym_empty_statement] = STATE(151), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(885), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1852), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), + [sym_import] = STATE(1337), + [sym_empty_statement] = STATE(146), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(898), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1862), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(139)] = { - [sym_import] = STATE(1333), - [sym_empty_statement] = STATE(150), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(883), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1835), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(140)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(580), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1472), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1472), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1472), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(955), - [anon_sym_export] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(840), - [anon_sym_import] = ACTIONS(375), - [anon_sym_var] = ACTIONS(959), - [anon_sym_let] = ACTIONS(961), - [anon_sym_const] = ACTIONS(848), - [anon_sym_using] = ACTIONS(848), - [anon_sym_await] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(965), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(967), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(141)] = { - [sym_import] = STATE(1333), - [sym_empty_statement] = STATE(144), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(863), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1789), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(142)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(822), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1695), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1720), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(974), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -24560,1362 +24986,1702 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym__automatic_semicolon] = ACTIONS(969), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), + [sym__automatic_semicolon] = ACTIONS(974), [sym_html_comment] = ACTIONS(5), }, - [STATE(143)] = { - [sym_import] = STATE(1333), - [sym_empty_statement] = STATE(147), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(884), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1843), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), + [STATE(140)] = { + [sym_import] = STATE(1337), + [sym_empty_statement] = STATE(143), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(902), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1853), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(141)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(889), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1857), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(142)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(864), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1839), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(143)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1802), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(144)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(882), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1831), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(145)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(840), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1795), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(866), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1794), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(146)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(876), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1812), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(904), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1848), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(147)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(874), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1838), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(873), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1845), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(148)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(878), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1764), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(890), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1877), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(990), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(149)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(831), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1760), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(648), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(957), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(150)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1748), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(643), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(928), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, [STATE(151)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(877), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1750), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(648), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(929), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, [STATE(152)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(628), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(666), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(605), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(686), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(153)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(628), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(910), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(587), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(586), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(996), + [anon_sym_export] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(998), + [anon_sym_get] = ACTIONS(998), + [anon_sym_set] = ACTIONS(998), [sym_html_comment] = ACTIONS(5), }, [STATE(154)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(629), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(911), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(587), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(586), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(155)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(880), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1854), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(623), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(679), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(156)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(836), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1837), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(868), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1868), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(157)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(583), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(880), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1826), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(158)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(886), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(881), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), [sym_sequence_expression] = STATE(1773), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(159)] = { - [sym_import] = STATE(1326), - [sym_statement_block] = STATE(737), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(729), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [sym_import] = STATE(1368), + [sym_statement_block] = STATE(712), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(713), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -25931,631 +26697,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, [STATE(160)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(881), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1807), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(161)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(873), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1749), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(162)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(837), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1842), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(163)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(838), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1757), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(164)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(630), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(658), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(165)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(583), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(995), - [anon_sym_export] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(997), - [anon_sym_await] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(997), - [anon_sym_get] = ACTIONS(997), - [anon_sym_set] = ACTIONS(997), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(166)] = { - [sym_namespace_export] = STATE(1692), - [sym_export_clause] = STATE(1358), - [sym_declaration] = STATE(433), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_class_declaration] = STATE(419), - [sym_function_declaration] = STATE(419), - [sym_generator_function_declaration] = STATE(419), - [sym_decorator] = STATE(1097), - [aux_sym_export_statement_repeat1] = STATE(1327), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_default] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_var] = ACTIONS(936), - [anon_sym_let] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_using] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(169), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(494), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_class] = ACTIONS(947), - [anon_sym_async] = ACTIONS(949), - [anon_sym_function] = ACTIONS(951), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(169), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(167)] = { - [sym_import] = STATE(1326), - [sym_statement_block] = STATE(801), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(803), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [sym_import] = STATE(1368), + [sym_statement_block] = STATE(751), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -26571,471 +26782,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(168)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(600), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(661), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(169)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(613), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(654), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(161)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(587), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(586), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1008), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_await] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(1010), + [anon_sym_get] = ACTIONS(1010), + [anon_sym_set] = ACTIONS(1010), [sym_html_comment] = ACTIONS(5), }, - [STATE(170)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(839), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1761), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(162)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(637), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(668), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(171)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(833), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1850), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(163)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(884), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1782), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(172)] = { - [sym_namespace_export] = STATE(1692), - [sym_export_clause] = STATE(1358), - [sym_declaration] = STATE(433), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_using_declaration] = STATE(419), - [sym_class_declaration] = STATE(419), - [sym_function_declaration] = STATE(419), - [sym_generator_function_declaration] = STATE(419), - [sym_decorator] = STATE(1097), - [aux_sym_export_statement_repeat1] = STATE(1327), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_default] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_var] = ACTIONS(936), - [anon_sym_let] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_using] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(169), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_class] = ACTIONS(947), - [anon_sym_async] = ACTIONS(949), - [anon_sym_function] = ACTIONS(951), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(169), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [STATE(164)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(887), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1829), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(173)] = { - [sym_import] = STATE(1326), - [sym_statement_block] = STATE(720), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(725), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(165)] = { + [sym_import] = STATE(1368), + [sym_statement_block] = STATE(812), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(813), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -27051,71 +27207,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(174)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(818), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_sequence_expression] = STATE(1505), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(166)] = { + [sym_import] = STATE(1368), + [sym_statement_block] = STATE(815), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(816), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -27131,231 +27292,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(175)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(626), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(664), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(176)] = { - [sym_import] = STATE(1326), - [sym_statement_block] = STATE(737), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(809), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(177)] = { - [sym_import] = STATE(1326), - [sym_statement_block] = STATE(794), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(806), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(167)] = { + [sym_import] = STATE(1368), + [sym_statement_block] = STATE(817), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(818), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -27371,3824 +27377,3901 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(178)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(869), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1811), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(168)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(643), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(675), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(179)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(629), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(668), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(169)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(648), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(680), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(180)] = { - [sym_import] = STATE(1326), - [sym_statement_block] = STATE(720), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(703), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(170)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(846), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1817), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(171)] = { + [sym_import] = STATE(1368), + [sym_statement_block] = STATE(712), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(782), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(181)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(860), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1858), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(172)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(859), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1759), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(182)] = { - [sym_import] = STATE(1326), - [sym_statement_block] = STATE(801), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(718), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(173)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(900), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1852), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(174)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(852), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1824), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(175)] = { + [sym_import] = STATE(1368), + [sym_statement_block] = STATE(751), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(787), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(183)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(834), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1844), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(176)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1859), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(184)] = { - [sym_import] = STATE(1326), - [sym_statement_block] = STATE(759), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(721), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(177)] = { + [sym_import] = STATE(1368), + [sym_statement_block] = STATE(774), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(801), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(185)] = { - [sym_import] = STATE(1326), - [sym_statement_block] = STATE(794), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(178)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(861), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1769), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(179)] = { + [sym_import] = STATE(1368), + [sym_statement_block] = STATE(812), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(802), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(186)] = { - [sym_import] = STATE(1326), - [sym_statement_block] = STATE(742), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(723), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(180)] = { + [sym_import] = STATE(1368), + [sym_statement_block] = STATE(815), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(803), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(187)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(862), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1841), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(188)] = { - [sym_import] = STATE(1326), - [sym_statement_block] = STATE(742), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(811), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(181)] = { + [sym_import] = STATE(1368), + [sym_statement_block] = STATE(817), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(804), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(189)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(849), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1867), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(190)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(835), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1864), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(182)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(876), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1800), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(191)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), + [STATE(183)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), [sym_expression] = STATE(879), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1839), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1872), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(192)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(528), - [sym_expression] = STATE(980), - [sym_primary_expression] = STATE(657), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(681), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(1005), - [anon_sym_export] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1007), - [anon_sym_get] = ACTIONS(1007), - [anon_sym_set] = ACTIONS(1007), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(193)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(830), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1806), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(184)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(891), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1830), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(194)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(630), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(920), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [STATE(185)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(858), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1796), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(195)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(857), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1826), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(186)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(850), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1801), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(196)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(600), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(967), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [STATE(187)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(616), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(673), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(197)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(613), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(936), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [STATE(188)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(860), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1781), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(198)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(626), - [sym_parenthesized_expression] = STATE(498), + [STATE(189)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(616), + [sym_parenthesized_expression] = STATE(490), [sym_expression] = STATE(937), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, - [STATE(199)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(628), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(938), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [STATE(190)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(834), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_sequence_expression] = STATE(1723), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(200)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(629), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(939), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [STATE(191)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(605), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(940), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, - [STATE(201)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(843), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1863), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(192)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(623), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(954), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, - [STATE(202)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(844), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1774), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(193)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(637), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(955), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, - [STATE(203)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(630), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(943), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [STATE(194)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(643), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(956), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, - [STATE(204)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(600), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(946), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [STATE(195)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(857), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1780), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(205)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(613), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(960), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [STATE(196)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(543), + [sym_expression] = STATE(997), + [sym_primary_expression] = STATE(681), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(543), + [sym_subscript_expression] = STATE(543), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(1016), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_await] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(1026), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_get] = ACTIONS(1018), + [anon_sym_set] = ACTIONS(1018), [sym_html_comment] = ACTIONS(5), }, - [STATE(206)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(626), + [STATE(197)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(616), [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(961), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), + [sym_expression] = STATE(909), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(207)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(628), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(962), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [STATE(198)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(616), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(960), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, - [STATE(208)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(629), - [sym_parenthesized_expression] = STATE(579), + [STATE(199)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(605), + [sym_parenthesized_expression] = STATE(580), [sym_expression] = STATE(963), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(209)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(630), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(891), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, - [STATE(210)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(583), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(1017), - [anon_sym_export] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_await] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [STATE(200)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(623), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(976), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1019), - [anon_sym_get] = ACTIONS(1019), - [anon_sym_set] = ACTIONS(1019), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, - [STATE(211)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(846), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1753), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(201)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(637), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(977), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, - [STATE(212)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(600), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(894), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(202)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(643), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(978), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, - [STATE(213)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(528), - [sym_expression] = STATE(980), - [sym_primary_expression] = STATE(657), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(681), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(1025), - [anon_sym_export] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_await] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [STATE(203)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(648), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1027), - [anon_sym_get] = ACTIONS(1027), - [anon_sym_set] = ACTIONS(1027), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, - [STATE(214)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(613), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(908), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), + [STATE(204)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(892), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1846), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), [anon_sym_PLUS_PLUS] = ACTIONS(688), [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(215)] = { - [sym_import] = STATE(1333), - [sym_statement_block] = STATE(626), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(909), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), + [STATE(205)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(849), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1821), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), [anon_sym_PLUS_PLUS] = ACTIONS(688), [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(216)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(583), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(1033), - [anon_sym_export] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(1035), - [anon_sym_await] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(1039), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1035), - [anon_sym_get] = ACTIONS(1035), - [anon_sym_set] = ACTIONS(1035), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(217)] = { - [sym_import] = STATE(1326), - [sym_statement_block] = STATE(759), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(792), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(218)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(829), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_sequence_expression] = STATE(1792), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(206)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(853), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1799), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(219)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(726), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(207)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(854), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_sequence_expression] = STATE(1850), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(220)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(695), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), + [STATE(208)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(543), + [sym_expression] = STATE(997), + [sym_primary_expression] = STATE(681), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(543), + [sym_subscript_expression] = STATE(543), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(1028), + [anon_sym_export] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(1030), + [anon_sym_await] = ACTIONS(1032), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(466), [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(1034), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(1026), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(1030), + [anon_sym_get] = ACTIONS(1030), + [anon_sym_set] = ACTIONS(1030), [sym_html_comment] = ACTIONS(5), }, - [STATE(221)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(915), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(209)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(605), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(912), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(222)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(916), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(210)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(623), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(926), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(223)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(979), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1253), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1253), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(556), - [sym_subscript_expression] = STATE(556), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1253), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(1041), - [anon_sym_export] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(1043), - [anon_sym_await] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [STATE(211)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(587), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(586), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_await] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(1049), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), [sym_html_comment] = ACTIONS(5), }, - [STATE(224)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(695), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(212)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(637), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(927), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(225)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(787), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(213)] = { + [sym_import] = STATE(1368), + [sym_statement_block] = STATE(774), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(775), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -31204,70 +31287,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(226)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(769), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(214)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(750), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -31283,149 +31371,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(227)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(941), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(215)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(986), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, - [STATE(228)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(762), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(216)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(759), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -31441,70 +31539,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(229)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(691), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(217)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(851), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -31520,149 +31623,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(230)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(971), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(231)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(719), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(218)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(760), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -31678,149 +31707,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(232)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(968), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(233)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(749), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(219)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(761), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -31836,70 +31791,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(234)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(848), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(220)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(762), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -31915,70 +31875,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(235)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(751), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(221)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(763), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -31994,70 +31959,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(236)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(753), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(222)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(764), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -32073,70 +32043,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(237)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(756), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(223)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(765), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -32152,70 +32127,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(238)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(760), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(224)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(766), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -32231,70 +32211,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(239)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(763), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(225)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -32310,70 +32295,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(240)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(775), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(226)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(829), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -32389,70 +32379,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(241)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(776), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(227)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(769), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -32468,70 +32463,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(242)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(777), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(228)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(773), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -32547,70 +32547,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(243)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(778), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(229)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(837), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -32626,1650 +32631,1755 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(244)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(588), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(230)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(988), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(245)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(591), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(231)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(599), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(246)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(656), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(232)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(593), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(247)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(780), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(233)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(248)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(653), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(234)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(685), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(249)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(660), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(235)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(684), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(250)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(662), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(236)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(688), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(251)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(669), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(237)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(676), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(252)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(690), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(238)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(695), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(253)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(671), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(239)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(687), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(254)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(672), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(240)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(689), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(255)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(673), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(241)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(690), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(256)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(674), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(242)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(691), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(257)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(675), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(243)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(258)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(676), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(244)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(693), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(259)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(677), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(245)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(667), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(260)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(678), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(246)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(669), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(261)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(679), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(247)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(262)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(680), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(248)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(672), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(263)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(667), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(249)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(677), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(264)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(791), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(250)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(841), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -34285,307 +34395,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(265)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(825), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1324), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1324), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(562), - [sym_subscript_expression] = STATE(562), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1324), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(1051), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_await] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(1057), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(1059), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(266)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(978), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(267)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(655), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(251)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(995), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, - [STATE(268)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(814), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(252)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(842), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -34601,149 +34563,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(269)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(975), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(270)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(813), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(253)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(874), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -34759,70 +34647,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(271)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(254)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(694), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(255)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(711), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -34838,149 +34815,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(272)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(826), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(256)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(843), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(273)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(552), - [sym_expression] = STATE(855), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(161), - [anon_sym_export] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(163), - [anon_sym_await] = ACTIONS(177), + [STATE(257)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(839), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(258)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(708), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_yield] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -34996,8717 +35067,10381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(163), - [anon_sym_get] = ACTIONS(163), - [anon_sym_set] = ACTIONS(163), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, - [STATE(274)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(588), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(259)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(599), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(275)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(591), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(260)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(593), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(276)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(890), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(261)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(908), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(277)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [STATE(262)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(910), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(278)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(893), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(263)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(911), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(279)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(895), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(264)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1328), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1328), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1328), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(1046), + [anon_sym_await] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(1052), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(1046), + [anon_sym_get] = ACTIONS(1046), + [anon_sym_set] = ACTIONS(1046), [sym_html_comment] = ACTIONS(5), }, - [STATE(280)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(896), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(265)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(913), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(281)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(897), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(266)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(914), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(282)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(898), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(267)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(915), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(283)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(899), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(268)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(916), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(284)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(900), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(269)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(917), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(285)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(901), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(270)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(918), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(286)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(902), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(271)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(919), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(287)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(903), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(272)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(920), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(288)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(904), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(273)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(921), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(289)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(905), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(274)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(922), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(290)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(906), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [STATE(275)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(923), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [STATE(291)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(907), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), + [STATE(276)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(924), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(277)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(925), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(278)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(838), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), [anon_sym_PLUS_PLUS] = ACTIONS(688), [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(292)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(912), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), + [STATE(279)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(930), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(280)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), [anon_sym_PLUS_PLUS] = ACTIONS(688), [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(293)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(824), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(281)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(294)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(691), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(282)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(696), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(295)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(808), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(283)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(781), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(296)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(698), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(284)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(784), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(297)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(696), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(285)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(298)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(704), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(286)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(788), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(299)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(972), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [STATE(287)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(990), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, - [STATE(300)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(705), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(288)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(789), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(301)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(707), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(289)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(790), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(302)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(708), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(290)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(791), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(303)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(709), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [STATE(291)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(792), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(304)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(710), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(292)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(793), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(305)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(711), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(293)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(794), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(306)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(712), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(294)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(795), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(307)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(713), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(295)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(796), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(308)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(714), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(296)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(797), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(309)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(715), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(297)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(798), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(310)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(716), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(298)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(799), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(311)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(717), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(299)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(800), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [STATE(312)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(976), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [STATE(300)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(987), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [STATE(313)] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(560), - [sym_expression] = STATE(727), - [sym_primary_expression] = STATE(686), - [sym_yield_expression] = STATE(746), - [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1802), - [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), - [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), - [sym_jsx_self_closing_element] = STATE(746), - [sym_class] = STATE(740), - [sym_function_expression] = STATE(740), - [sym_generator_function] = STATE(740), - [sym_arrow_function] = STATE(740), - [sym_call_expression] = STATE(740), - [sym_new_expression] = STATE(682), - [sym_await_expression] = STATE(746), - [sym_member_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1143), - [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), - [sym_ternary_expression] = STATE(746), - [sym_binary_expression] = STATE(746), - [sym_unary_expression] = STATE(746), - [sym_update_expression] = STATE(746), - [sym_string] = STATE(740), - [sym_template_string] = STATE(740), - [sym_regex] = STATE(740), - [sym_meta_property] = STATE(740), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1803), - [aux_sym_export_statement_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_import] = ACTIONS(173), - [anon_sym_let] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), + [STATE(301)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(805), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(552), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(194), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(198), - [anon_sym_new] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(547), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(302)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(732), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(303)] = { + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(696), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(304)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(992), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1778), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1778), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1778), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1783), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(648), + [anon_sym_await] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(663), + [anon_sym_void] = ACTIONS(663), + [anon_sym_delete] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(670), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(648), + [anon_sym_set] = ACTIONS(648), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(305)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(599), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(306)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(593), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(307)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(936), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(308)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(938), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(309)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(939), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(310)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(941), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(311)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(942), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(312)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(943), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(313)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(985), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(314)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(825), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1139), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1763), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(369), - [anon_sym_export] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(371), - [anon_sym_await] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(398), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(414), - [anon_sym_typeof] = ACTIONS(412), - [anon_sym_void] = ACTIONS(412), - [anon_sym_delete] = ACTIONS(412), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(945), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(424), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(371), - [anon_sym_get] = ACTIONS(371), - [anon_sym_set] = ACTIONS(371), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(315)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(588), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(946), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(316)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(591), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(947), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(317)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(919), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(948), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(318)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(921), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(949), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(319)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(887), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(950), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(320)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(923), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(951), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(321)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(924), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(952), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(322)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(925), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(953), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(323)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(926), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(958), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(324)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(927), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(991), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(325)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(928), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(729), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, [STATE(326)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(929), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(599), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(327)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(930), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(593), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(328)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(931), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(959), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(329)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(932), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(961), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(330)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(933), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(962), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(331)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(934), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(964), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(332)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(935), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(965), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(333)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(940), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(966), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(334)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(973), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(967), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(335)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(588), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(968), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(336)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(591), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(969), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(337)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(942), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(970), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(338)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(944), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(905), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(339)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(945), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(971), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(340)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(947), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(972), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(341)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(948), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(973), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(342)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(949), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(974), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(343)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(950), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(975), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(344)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(951), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(980), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1157), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1789), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(630), + [anon_sym_void] = ACTIONS(630), + [anon_sym_delete] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(637), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [STATE(345)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(952), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1828), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1828), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(518), + [sym_subscript_expression] = STATE(518), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1828), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(391), + [anon_sym_await] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, [STATE(346)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(953), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(996), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(347)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(954), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(989), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(348)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(955), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(708), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1812), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1812), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1156), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1812), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1813), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(552), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_typeof] = ACTIONS(568), + [anon_sym_void] = ACTIONS(568), + [anon_sym_delete] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(575), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [STATE(349)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(956), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1368), + [sym_parenthesized_expression] = STATE(559), + [sym_expression] = STATE(753), + [sym_primary_expression] = STATE(701), + [sym_yield_expression] = STATE(731), + [sym_object] = STATE(744), + [sym_object_pattern] = STATE(1810), + [sym_array] = STATE(744), + [sym_array_pattern] = STATE(1810), + [sym_jsx_element] = STATE(731), + [sym_jsx_opening_element] = STATE(1174), + [sym_jsx_self_closing_element] = STATE(731), + [sym_class] = STATE(744), + [sym_function_expression] = STATE(744), + [sym_generator_function] = STATE(744), + [sym_arrow_function] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_new_expression] = STATE(704), + [sym_await_expression] = STATE(731), + [sym_member_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym_assignment_expression] = STATE(731), + [sym__augmented_assignment_lhs] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(731), + [sym__destructuring_pattern] = STATE(1810), + [sym_ternary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_string] = STATE(744), + [sym_template_string] = STATE(744), + [sym_regex] = STATE(744), + [sym_meta_property] = STATE(744), + [sym_this] = STATE(744), + [sym_super] = STATE(744), + [sym_true] = STATE(744), + [sym_false] = STATE(744), + [sym_null] = STATE(744), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1807), + [aux_sym_export_statement_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(314), + [anon_sym_export] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_import] = ACTIONS(326), + [anon_sym_let] = ACTIONS(316), + [anon_sym_await] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(347), + [anon_sym_async] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [anon_sym_this] = ACTIONS(89), + [anon_sym_super] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(95), + [anon_sym_null] = ACTIONS(97), + [sym_undefined] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(316), + [anon_sym_get] = ACTIONS(316), + [anon_sym_set] = ACTIONS(316), [sym_html_comment] = ACTIONS(5), }, [STATE(350)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(957), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(518), + [sym_expression] = STATE(838), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1346), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1346), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(562), + [sym_subscript_expression] = STATE(562), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1346), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1768), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1054), + [anon_sym_export] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(1060), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(432), + [anon_sym_void] = ACTIONS(432), + [anon_sym_delete] = ACTIONS(432), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_get] = ACTIONS(1056), + [anon_sym_set] = ACTIONS(1056), [sym_html_comment] = ACTIONS(5), }, [STATE(351)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(958), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(490), + [sym_expression] = STATE(994), + [sym_primary_expression] = STATE(598), + [sym_yield_expression] = STATE(646), + [sym_object] = STATE(614), + [sym_object_pattern] = STATE(1822), + [sym_array] = STATE(614), + [sym_array_pattern] = STATE(1822), + [sym_jsx_element] = STATE(646), + [sym_jsx_opening_element] = STATE(1163), + [sym_jsx_self_closing_element] = STATE(646), + [sym_class] = STATE(614), + [sym_function_expression] = STATE(614), + [sym_generator_function] = STATE(614), + [sym_arrow_function] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_new_expression] = STATE(594), + [sym_await_expression] = STATE(646), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(646), + [sym__augmented_assignment_lhs] = STATE(1160), + [sym_augmented_assignment_expression] = STATE(646), + [sym__destructuring_pattern] = STATE(1822), + [sym_ternary_expression] = STATE(646), + [sym_binary_expression] = STATE(646), + [sym_unary_expression] = STATE(646), + [sym_update_expression] = STATE(646), + [sym_string] = STATE(614), + [sym_template_string] = STATE(614), + [sym_regex] = STATE(614), + [sym_meta_property] = STATE(614), + [sym_this] = STATE(614), + [sym_super] = STATE(614), + [sym_true] = STATE(614), + [sym_false] = STATE(614), + [sym_null] = STATE(614), + [sym_decorator] = STATE(1107), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_import] = ACTIONS(395), + [anon_sym_let] = ACTIONS(460), + [anon_sym_await] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(473), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_typeof] = ACTIONS(480), + [anon_sym_void] = ACTIONS(480), + [anon_sym_delete] = ACTIONS(480), + [anon_sym_PLUS_PLUS] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(712), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(442), + [sym_private_property_identifier] = ACTIONS(487), + [anon_sym_this] = ACTIONS(446), + [anon_sym_super] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(101), + [anon_sym_static] = ACTIONS(460), + [anon_sym_get] = ACTIONS(460), + [anon_sym_set] = ACTIONS(460), [sym_html_comment] = ACTIONS(5), }, [STATE(352)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(959), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_namespace_export] = STATE(1623), + [sym_export_clause] = STATE(1344), + [sym_declaration] = STATE(440), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_class_declaration] = STATE(487), + [sym_function_declaration] = STATE(487), + [sym_generator_function_declaration] = STATE(487), + [sym_decorator] = STATE(1107), + [aux_sym_export_statement_repeat1] = STATE(1371), + [aux_sym_object_repeat1] = STATE(1457), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_var] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_using] = ACTIONS(1074), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_class] = ACTIONS(1081), + [anon_sym_async] = ACTIONS(1083), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(322), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_AT] = ACTIONS(101), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(353)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(964), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(579), - [sym_subscript_expression] = STATE(579), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1779), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(584), - [anon_sym_await] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(604), - [anon_sym_typeof] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_namespace_export] = STATE(1623), + [sym_export_clause] = STATE(1344), + [sym_declaration] = STATE(440), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_class_declaration] = STATE(487), + [sym_function_declaration] = STATE(487), + [sym_generator_function_declaration] = STATE(487), + [sym_decorator] = STATE(1107), + [aux_sym_export_statement_repeat1] = STATE(1371), + [aux_sym_object_repeat1] = STATE(1457), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_var] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_using] = ACTIONS(1074), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_class] = ACTIONS(1081), + [anon_sym_async] = ACTIONS(1083), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(322), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(609), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(584), - [anon_sym_get] = ACTIONS(584), - [anon_sym_set] = ACTIONS(584), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_AT] = ACTIONS(101), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(354)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(970), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_namespace_export] = STATE(1623), + [sym_export_clause] = STATE(1344), + [sym_declaration] = STATE(440), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_class_declaration] = STATE(487), + [sym_function_declaration] = STATE(487), + [sym_generator_function_declaration] = STATE(487), + [sym_decorator] = STATE(1107), + [aux_sym_export_statement_repeat1] = STATE(1371), + [aux_sym_object_repeat1] = STATE(1475), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_var] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_using] = ACTIONS(1074), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_class] = ACTIONS(1081), + [anon_sym_async] = ACTIONS(1083), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(322), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_AT] = ACTIONS(101), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(355)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(977), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1138), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1816), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(432), - [anon_sym_await] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(445), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_typeof] = ACTIONS(452), - [anon_sym_void] = ACTIONS(452), - [anon_sym_delete] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_namespace_export] = STATE(1623), + [sym_export_clause] = STATE(1344), + [sym_declaration] = STATE(440), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_class_declaration] = STATE(487), + [sym_function_declaration] = STATE(487), + [sym_generator_function_declaration] = STATE(487), + [sym_decorator] = STATE(1107), + [aux_sym_export_statement_repeat1] = STATE(1371), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_var] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_using] = ACTIONS(1074), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_class] = ACTIONS(1081), + [anon_sym_async] = ACTIONS(1083), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(322), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(461), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(432), - [anon_sym_get] = ACTIONS(432), - [anon_sym_set] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_AT] = ACTIONS(101), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(356)] = { - [sym_import] = STATE(1333), - [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(892), - [sym_primary_expression] = STATE(589), - [sym_yield_expression] = STATE(602), - [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), - [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), - [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), - [sym_jsx_self_closing_element] = STATE(602), - [sym_class] = STATE(646), - [sym_function_expression] = STATE(646), - [sym_generator_function] = STATE(646), - [sym_arrow_function] = STATE(646), - [sym_call_expression] = STATE(646), - [sym_new_expression] = STATE(585), - [sym_await_expression] = STATE(602), - [sym_member_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), - [sym_ternary_expression] = STATE(602), - [sym_binary_expression] = STATE(602), - [sym_unary_expression] = STATE(602), - [sym_update_expression] = STATE(602), - [sym_string] = STATE(646), - [sym_template_string] = STATE(646), - [sym_regex] = STATE(646), - [sym_meta_property] = STATE(646), - [sym_decorator] = STATE(1097), - [sym_formal_parameters] = STATE(1778), - [aux_sym_export_statement_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(613), - [anon_sym_export] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(375), - [anon_sym_let] = ACTIONS(615), - [anon_sym_await] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_class] = ACTIONS(396), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(400), - [anon_sym_new] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_typeof] = ACTIONS(635), - [anon_sym_void] = ACTIONS(635), - [anon_sym_delete] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_namespace_export] = STATE(1623), + [sym_export_clause] = STATE(1344), + [sym_declaration] = STATE(440), + [sym_variable_declaration] = STATE(487), + [sym_lexical_declaration] = STATE(487), + [sym_using_declaration] = STATE(487), + [sym_class_declaration] = STATE(487), + [sym_function_declaration] = STATE(487), + [sym_generator_function_declaration] = STATE(487), + [sym_decorator] = STATE(1107), + [aux_sym_export_statement_repeat1] = STATE(1371), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1087), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_var] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_using] = ACTIONS(1074), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_class] = ACTIONS(1081), + [anon_sym_async] = ACTIONS(1083), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(322), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(662), - [sym_number] = ACTIONS(422), - [sym_private_property_identifier] = ACTIONS(642), - [sym_this] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_true] = ACTIONS(426), - [sym_false] = ACTIONS(426), - [sym_null] = ACTIONS(426), - [sym_undefined] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_AT] = ACTIONS(101), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(357)] = { - [sym_string] = STATE(1710), - [sym_formal_parameters] = STATE(1834), - [sym__property_name] = STATE(1710), - [sym_computed_property_name] = STATE(1710), - [aux_sym_object_repeat1] = STATE(1418), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_await] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_string] = STATE(1712), + [sym_formal_parameters] = STATE(1766), + [sym__property_name] = STATE(1712), + [sym_computed_property_name] = STATE(1712), + [aux_sym_object_repeat1] = STATE(1457), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(1089), + [anon_sym_export] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_let] = ACTIONS(1091), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_function] = ACTIONS(1107), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [sym_number] = ACTIONS(1081), - [sym_private_property_identifier] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1063), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [sym_number] = ACTIONS(1109), + [sym_private_property_identifier] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1091), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1111), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(358)] = { - [sym_string] = STATE(1710), - [sym_formal_parameters] = STATE(1834), - [sym__property_name] = STATE(1710), - [sym_computed_property_name] = STATE(1710), - [aux_sym_object_repeat1] = STATE(1487), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_await] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_string] = STATE(1712), + [sym_formal_parameters] = STATE(1766), + [sym__property_name] = STATE(1712), + [sym_computed_property_name] = STATE(1712), + [aux_sym_object_repeat1] = STATE(1457), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(1089), + [anon_sym_export] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_let] = ACTIONS(1091), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_function] = ACTIONS(1107), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [sym_number] = ACTIONS(1081), - [sym_private_property_identifier] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1063), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [sym_number] = ACTIONS(1109), + [sym_private_property_identifier] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1091), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1111), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(359)] = { - [sym_string] = STATE(1710), - [sym_formal_parameters] = STATE(1834), - [sym__property_name] = STATE(1710), - [sym_computed_property_name] = STATE(1710), - [aux_sym_object_repeat1] = STATE(1418), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_await] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_string] = STATE(1712), + [sym_formal_parameters] = STATE(1766), + [sym__property_name] = STATE(1712), + [sym_computed_property_name] = STATE(1712), + [aux_sym_object_repeat1] = STATE(1475), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(1089), + [anon_sym_export] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_let] = ACTIONS(1091), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_function] = ACTIONS(1107), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [sym_number] = ACTIONS(1081), - [sym_private_property_identifier] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1063), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [sym_number] = ACTIONS(1109), + [sym_private_property_identifier] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1091), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1111), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(360)] = { - [sym_string] = STATE(1710), - [sym__property_name] = STATE(1710), - [sym_computed_property_name] = STATE(1710), - [aux_sym_object_repeat1] = STATE(1487), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(1085), - [anon_sym_export] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_let] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_async] = ACTIONS(1085), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_string] = STATE(1712), + [sym__property_name] = STATE(1712), + [sym_computed_property_name] = STATE(1712), + [aux_sym_object_repeat1] = STATE(1457), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_let] = ACTIONS(1113), + [anon_sym_await] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_async] = ACTIONS(1115), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [sym_number] = ACTIONS(1081), - [sym_private_property_identifier] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1085), - [anon_sym_get] = ACTIONS(1085), - [anon_sym_set] = ACTIONS(1085), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [sym_number] = ACTIONS(1109), + [sym_private_property_identifier] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1113), + [anon_sym_get] = ACTIONS(1117), + [anon_sym_set] = ACTIONS(1117), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(361)] = { - [sym_string] = STATE(1710), - [sym__property_name] = STATE(1710), - [sym_computed_property_name] = STATE(1710), - [aux_sym_object_repeat1] = STATE(1418), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(1085), - [anon_sym_export] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_let] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_async] = ACTIONS(1087), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_string] = STATE(1712), + [sym__property_name] = STATE(1712), + [sym_computed_property_name] = STATE(1712), + [aux_sym_object_repeat1] = STATE(1457), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_let] = ACTIONS(1113), + [anon_sym_await] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [sym_number] = ACTIONS(1081), - [sym_private_property_identifier] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1085), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1089), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [sym_number] = ACTIONS(1109), + [sym_private_property_identifier] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1113), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1113), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(362)] = { - [sym_string] = STATE(1710), - [sym__property_name] = STATE(1710), - [sym_computed_property_name] = STATE(1710), - [aux_sym_object_repeat1] = STATE(1418), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(1085), - [anon_sym_export] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_let] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_async] = ACTIONS(1085), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_string] = STATE(1712), + [sym__property_name] = STATE(1712), + [sym_computed_property_name] = STATE(1712), + [aux_sym_object_repeat1] = STATE(1475), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_let] = ACTIONS(1113), + [anon_sym_await] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [sym_number] = ACTIONS(1081), - [sym_private_property_identifier] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1085), - [anon_sym_get] = ACTIONS(1085), - [anon_sym_set] = ACTIONS(1085), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [sym_number] = ACTIONS(1109), + [sym_private_property_identifier] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1113), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1113), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(363)] = { - [sym_string] = STATE(1710), - [sym__property_name] = STATE(1710), - [sym_computed_property_name] = STATE(1710), - [aux_sym_object_repeat1] = STATE(1487), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(1085), - [anon_sym_export] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_let] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_async] = ACTIONS(1087), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_string] = STATE(1712), + [sym__property_name] = STATE(1712), + [sym_computed_property_name] = STATE(1712), + [aux_sym_object_repeat1] = STATE(1475), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_let] = ACTIONS(1113), + [anon_sym_await] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_async] = ACTIONS(1115), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [sym_number] = ACTIONS(1081), - [sym_private_property_identifier] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1085), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1089), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [sym_number] = ACTIONS(1109), + [sym_private_property_identifier] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1113), + [anon_sym_get] = ACTIONS(1117), + [anon_sym_set] = ACTIONS(1117), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(364)] = { - [sym_string] = STATE(1710), - [sym__property_name] = STATE(1710), - [sym_computed_property_name] = STATE(1710), - [aux_sym_object_repeat1] = STATE(1418), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(1085), - [anon_sym_export] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_let] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_async] = ACTIONS(1087), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_string] = STATE(1712), + [sym__property_name] = STATE(1712), + [sym_computed_property_name] = STATE(1712), + [aux_sym_object_repeat1] = STATE(1457), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_let] = ACTIONS(1113), + [anon_sym_await] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_async] = ACTIONS(1115), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [sym_number] = ACTIONS(1081), - [sym_private_property_identifier] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1085), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1089), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [sym_number] = ACTIONS(1109), + [sym_private_property_identifier] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1113), + [anon_sym_get] = ACTIONS(1117), + [anon_sym_set] = ACTIONS(1117), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(365)] = { - [sym_string] = STATE(1710), - [sym__property_name] = STATE(1710), - [sym_computed_property_name] = STATE(1710), - [aux_sym_object_repeat1] = STATE(1418), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(1085), - [anon_sym_export] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_let] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_async] = ACTIONS(1085), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_string] = STATE(1712), + [sym__property_name] = STATE(1712), + [sym_computed_property_name] = STATE(1712), + [aux_sym_object_repeat1] = STATE(1457), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_let] = ACTIONS(1113), + [anon_sym_await] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [sym_number] = ACTIONS(1081), - [sym_private_property_identifier] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1085), - [anon_sym_get] = ACTIONS(1085), - [anon_sym_set] = ACTIONS(1085), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [sym_number] = ACTIONS(1109), + [sym_private_property_identifier] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1113), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1113), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(366)] = { - [sym_formal_parameters] = STATE(1859), - [sym_identifier] = ACTIONS(1091), - [anon_sym_export] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(169), - [anon_sym_let] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_RPAREN] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1098), - [anon_sym_EQ_GT] = ACTIONS(402), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_formal_parameters] = STATE(1841), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_RPAREN] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_RBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_function] = ACTIONS(1126), + [anon_sym_EQ_GT] = ACTIONS(422), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1093), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1093), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_get] = ACTIONS(1121), + [anon_sym_set] = ACTIONS(1121), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(367)] = { - [sym_formal_parameters] = STATE(1859), - [sym_identifier] = ACTIONS(1091), - [anon_sym_export] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(169), - [anon_sym_let] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_RPAREN] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1098), - [anon_sym_EQ_GT] = ACTIONS(402), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_formal_parameters] = STATE(1841), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_RPAREN] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_RBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_function] = ACTIONS(1126), + [anon_sym_EQ_GT] = ACTIONS(422), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1093), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1093), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_get] = ACTIONS(1121), + [anon_sym_set] = ACTIONS(1121), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(368)] = { - [sym_variable_declarator] = STATE(1385), - [sym_object_pattern] = STATE(1311), - [sym_array_pattern] = STATE(1311), - [sym__destructuring_pattern] = STATE(1311), - [aux_sym_object_repeat1] = STATE(1418), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_of] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_formal_parameters] = STATE(1841), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(540), + [anon_sym_in] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(543), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_RBRACK] = ACTIONS(540), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_function] = ACTIONS(1126), + [anon_sym_EQ_GT] = ACTIONS(422), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_get] = ACTIONS(1121), + [anon_sym_set] = ACTIONS(1121), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(369)] = { - [ts_builtin_sym_end] = ACTIONS(694), - [sym_identifier] = ACTIONS(696), - [anon_sym_export] = ACTIONS(696), - [anon_sym_default] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_with] = ACTIONS(696), - [anon_sym_var] = ACTIONS(696), - [anon_sym_let] = ACTIONS(696), - [anon_sym_const] = ACTIONS(696), - [anon_sym_using] = ACTIONS(696), - [anon_sym_await] = ACTIONS(696), - [anon_sym_else] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_switch] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), - [anon_sym_do] = ACTIONS(696), - [anon_sym_try] = ACTIONS(696), - [anon_sym_break] = ACTIONS(696), - [anon_sym_continue] = ACTIONS(696), - [anon_sym_debugger] = ACTIONS(696), - [anon_sym_return] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_case] = ACTIONS(696), - [anon_sym_catch] = ACTIONS(696), - [anon_sym_finally] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_class] = ACTIONS(696), - [anon_sym_async] = ACTIONS(696), - [anon_sym_function] = ACTIONS(696), - [anon_sym_new] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_typeof] = ACTIONS(696), - [anon_sym_void] = ACTIONS(696), - [anon_sym_delete] = ACTIONS(696), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(694), + [sym_formal_parameters] = STATE(1766), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_await] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1130), + [anon_sym_function] = ACTIONS(1132), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(694), - [sym_number] = ACTIONS(694), - [sym_private_property_identifier] = ACTIONS(694), - [sym_this] = ACTIONS(696), - [sym_super] = ACTIONS(696), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_null] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_static] = ACTIONS(696), - [anon_sym_get] = ACTIONS(696), - [anon_sym_set] = ACTIONS(696), - [sym__automatic_semicolon] = ACTIONS(1108), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(370)] = { - [sym_variable_declarator] = STATE(1385), - [sym_object_pattern] = STATE(1311), - [sym_array_pattern] = STATE(1311), - [sym__destructuring_pattern] = STATE(1311), - [aux_sym_object_repeat1] = STATE(1487), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_of] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_variable_declarator] = STATE(1358), + [sym_object_pattern] = STATE(1279), + [sym_array_pattern] = STATE(1279), + [sym__destructuring_pattern] = STATE(1279), + [aux_sym_object_repeat1] = STATE(1457), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_of] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(371)] = { - [sym_formal_parameters] = STATE(1834), - [sym_identifier] = ACTIONS(1110), - [anon_sym_export] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_let] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(494), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_formal_parameters] = STATE(1823), + [sym_identifier] = ACTIONS(1142), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_let] = ACTIONS(1144), + [anon_sym_await] = ACTIONS(1144), + [anon_sym_of] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1144), + [anon_sym_function] = ACTIONS(1132), + [anon_sym_EQ_GT] = ACTIONS(558), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_get] = ACTIONS(1112), - [anon_sym_set] = ACTIONS(1112), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(372)] = { - [sym_formal_parameters] = STATE(1834), - [sym_identifier] = ACTIONS(1110), - [anon_sym_export] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(169), - [anon_sym_let] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_formal_parameters] = STATE(1766), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_await] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1130), + [anon_sym_function] = ACTIONS(1146), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_get] = ACTIONS(1112), - [anon_sym_set] = ACTIONS(1112), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(373)] = { - [sym_formal_parameters] = STATE(1813), - [sym_identifier] = ACTIONS(1116), - [anon_sym_export] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_let] = ACTIONS(1118), - [anon_sym_await] = ACTIONS(1118), - [anon_sym_of] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1118), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_EQ_GT] = ACTIONS(500), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_variable_declarator] = STATE(1358), + [sym_object_pattern] = STATE(1279), + [sym_array_pattern] = STATE(1279), + [sym__destructuring_pattern] = STATE(1279), + [aux_sym_object_repeat1] = STATE(1475), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_of] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1118), - [anon_sym_get] = ACTIONS(1118), - [anon_sym_set] = ACTIONS(1118), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(374)] = { - [ts_builtin_sym_end] = ACTIONS(708), - [sym_identifier] = ACTIONS(710), - [anon_sym_export] = ACTIONS(710), - [anon_sym_default] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_COMMA] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(708), - [anon_sym_import] = ACTIONS(710), - [anon_sym_with] = ACTIONS(710), - [anon_sym_var] = ACTIONS(710), - [anon_sym_let] = ACTIONS(710), - [anon_sym_const] = ACTIONS(710), - [anon_sym_using] = ACTIONS(710), - [anon_sym_await] = ACTIONS(710), - [anon_sym_else] = ACTIONS(710), - [anon_sym_if] = ACTIONS(710), - [anon_sym_switch] = ACTIONS(710), - [anon_sym_for] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(708), - [anon_sym_while] = ACTIONS(710), - [anon_sym_do] = ACTIONS(710), - [anon_sym_try] = ACTIONS(710), - [anon_sym_break] = ACTIONS(710), - [anon_sym_continue] = ACTIONS(710), - [anon_sym_debugger] = ACTIONS(710), - [anon_sym_return] = ACTIONS(710), - [anon_sym_throw] = ACTIONS(710), - [anon_sym_case] = ACTIONS(710), - [anon_sym_catch] = ACTIONS(710), - [anon_sym_finally] = ACTIONS(710), - [anon_sym_yield] = ACTIONS(710), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LT] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(708), - [anon_sym_SQUOTE] = ACTIONS(708), - [anon_sym_class] = ACTIONS(710), - [anon_sym_async] = ACTIONS(710), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(710), - [anon_sym_BANG] = ACTIONS(708), - [anon_sym_TILDE] = ACTIONS(708), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), + [sym_catch_clause] = STATE(388), + [sym_finally_clause] = STATE(432), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1150), + [anon_sym_export] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(1150), + [anon_sym_with] = ACTIONS(1150), + [anon_sym_var] = ACTIONS(1150), + [anon_sym_let] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_try] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_debugger] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_throw] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_catch] = ACTIONS(1152), + [anon_sym_finally] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_class] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_function] = ACTIONS(1150), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_SLASH] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_typeof] = ACTIONS(1150), + [anon_sym_void] = ACTIONS(1150), + [anon_sym_delete] = ACTIONS(1150), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_DASH_DASH] = ACTIONS(1148), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(708), - [sym_number] = ACTIONS(708), - [sym_private_property_identifier] = ACTIONS(708), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(710), - [sym_true] = ACTIONS(710), - [sym_false] = ACTIONS(710), - [sym_null] = ACTIONS(710), - [sym_undefined] = ACTIONS(710), - [anon_sym_AT] = ACTIONS(708), - [anon_sym_static] = ACTIONS(710), - [anon_sym_get] = ACTIONS(710), - [anon_sym_set] = ACTIONS(710), - [sym__automatic_semicolon] = ACTIONS(720), + [anon_sym_BQUOTE] = ACTIONS(1148), + [sym_number] = ACTIONS(1148), + [sym_private_property_identifier] = ACTIONS(1148), + [anon_sym_this] = ACTIONS(1150), + [anon_sym_super] = ACTIONS(1150), + [anon_sym_true] = ACTIONS(1150), + [anon_sym_false] = ACTIONS(1150), + [anon_sym_null] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1150), + [anon_sym_AT] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_get] = ACTIONS(1150), + [anon_sym_set] = ACTIONS(1150), [sym_html_comment] = ACTIONS(5), }, [STATE(375)] = { - [sym_formal_parameters] = STATE(1834), - [sym_identifier] = ACTIONS(1110), - [anon_sym_export] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(169), - [anon_sym_let] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_formal_parameters] = STATE(1823), + [sym_identifier] = ACTIONS(1142), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_let] = ACTIONS(1144), + [anon_sym_await] = ACTIONS(1144), + [anon_sym_of] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1144), + [anon_sym_function] = ACTIONS(1132), + [anon_sym_EQ_GT] = ACTIONS(558), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_get] = ACTIONS(1112), - [anon_sym_set] = ACTIONS(1112), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(376)] = { - [sym_formal_parameters] = STATE(1834), - [sym_identifier] = ACTIONS(1110), - [anon_sym_export] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_let] = ACTIONS(1112), - [anon_sym_await] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1120), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_variable_declarator] = STATE(1358), + [sym_object_pattern] = STATE(1279), + [sym_array_pattern] = STATE(1279), + [sym__destructuring_pattern] = STATE(1279), + [aux_sym_object_repeat1] = STATE(1457), + [aux_sym_object_pattern_repeat1] = STATE(1477), + [sym_identifier] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_of] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_get] = ACTIONS(1112), - [anon_sym_set] = ACTIONS(1112), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(377)] = { - [sym_formal_parameters] = STATE(1813), - [sym_identifier] = ACTIONS(1116), - [anon_sym_export] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_let] = ACTIONS(1118), - [anon_sym_await] = ACTIONS(1118), - [anon_sym_of] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1118), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_EQ_GT] = ACTIONS(500), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), + [anon_sym_export] = ACTIONS(836), + [anon_sym_default] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(836), + [anon_sym_var] = ACTIONS(836), + [anon_sym_let] = ACTIONS(836), + [anon_sym_const] = ACTIONS(836), + [anon_sym_using] = ACTIONS(836), + [anon_sym_await] = ACTIONS(836), + [anon_sym_else] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_switch] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_while] = ACTIONS(836), + [anon_sym_do] = ACTIONS(836), + [anon_sym_try] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_debugger] = ACTIONS(836), + [anon_sym_return] = ACTIONS(836), + [anon_sym_throw] = ACTIONS(836), + [anon_sym_case] = ACTIONS(836), + [anon_sym_catch] = ACTIONS(836), + [anon_sym_finally] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_class] = ACTIONS(836), + [anon_sym_async] = ACTIONS(836), + [anon_sym_function] = ACTIONS(836), + [anon_sym_new] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_TILDE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(836), + [anon_sym_void] = ACTIONS(836), + [anon_sym_delete] = ACTIONS(836), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(834), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1118), - [anon_sym_get] = ACTIONS(1118), - [anon_sym_set] = ACTIONS(1118), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(834), + [sym_number] = ACTIONS(834), + [sym_private_property_identifier] = ACTIONS(834), + [anon_sym_this] = ACTIONS(836), + [anon_sym_super] = ACTIONS(836), + [anon_sym_true] = ACTIONS(836), + [anon_sym_false] = ACTIONS(836), + [anon_sym_null] = ACTIONS(836), + [sym_undefined] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(834), + [anon_sym_static] = ACTIONS(836), + [anon_sym_get] = ACTIONS(836), + [anon_sym_set] = ACTIONS(836), + [sym__automatic_semicolon] = ACTIONS(1156), [sym_html_comment] = ACTIONS(5), }, [STATE(378)] = { - [sym_formal_parameters] = STATE(1824), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(1124), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_let] = ACTIONS(1124), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_in] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1124), - [anon_sym_function] = ACTIONS(1098), - [anon_sym_EQ_GT] = ACTIONS(498), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_formal_parameters] = STATE(1766), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_await] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_COLON] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1130), + [anon_sym_function] = ACTIONS(1107), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_get] = ACTIONS(1124), - [anon_sym_set] = ACTIONS(1124), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(379)] = { - [sym_formal_parameters] = STATE(1859), - [sym_identifier] = ACTIONS(1091), - [anon_sym_export] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_let] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(514), - [anon_sym_in] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1098), - [anon_sym_EQ_GT] = ACTIONS(402), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [ts_builtin_sym_end] = ACTIONS(786), + [sym_identifier] = ACTIONS(788), + [anon_sym_export] = ACTIONS(788), + [anon_sym_default] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(786), + [anon_sym_RBRACE] = ACTIONS(786), + [anon_sym_import] = ACTIONS(788), + [anon_sym_with] = ACTIONS(788), + [anon_sym_var] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_using] = ACTIONS(788), + [anon_sym_await] = ACTIONS(788), + [anon_sym_else] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(786), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_debugger] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_throw] = ACTIONS(788), + [anon_sym_case] = ACTIONS(788), + [anon_sym_catch] = ACTIONS(788), + [anon_sym_finally] = ACTIONS(788), + [anon_sym_yield] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_DQUOTE] = ACTIONS(786), + [anon_sym_SQUOTE] = ACTIONS(786), + [anon_sym_class] = ACTIONS(788), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(788), + [anon_sym_new] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(788), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_typeof] = ACTIONS(788), + [anon_sym_void] = ACTIONS(788), + [anon_sym_delete] = ACTIONS(788), + [anon_sym_PLUS_PLUS] = ACTIONS(786), + [anon_sym_DASH_DASH] = ACTIONS(786), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1093), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1093), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(786), + [sym_number] = ACTIONS(786), + [sym_private_property_identifier] = ACTIONS(786), + [anon_sym_this] = ACTIONS(788), + [anon_sym_super] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [anon_sym_null] = ACTIONS(788), + [sym_undefined] = ACTIONS(788), + [anon_sym_AT] = ACTIONS(786), + [anon_sym_static] = ACTIONS(788), + [anon_sym_get] = ACTIONS(788), + [anon_sym_set] = ACTIONS(788), + [sym__automatic_semicolon] = ACTIONS(832), [sym_html_comment] = ACTIONS(5), }, [STATE(380)] = { - [sym_variable_declarator] = STATE(1385), - [sym_object_pattern] = STATE(1311), - [sym_array_pattern] = STATE(1311), - [sym__destructuring_pattern] = STATE(1311), - [aux_sym_object_repeat1] = STATE(1418), - [aux_sym_object_pattern_repeat1] = STATE(1452), - [sym_identifier] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_of] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_EQ_GT] = ACTIONS(200), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_formal_parameters] = STATE(1766), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_await] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1130), + [anon_sym_function] = ACTIONS(1132), + [anon_sym_EQ_GT] = ACTIONS(353), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [sym__automatic_semicolon] = ACTIONS(169), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [sym__automatic_semicolon] = ACTIONS(322), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(381)] = { - [sym_catch_clause] = STATE(389), - [sym_finally_clause] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(1126), - [sym_identifier] = ACTIONS(1128), - [anon_sym_export] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_RBRACE] = ACTIONS(1126), - [anon_sym_import] = ACTIONS(1128), - [anon_sym_with] = ACTIONS(1128), - [anon_sym_var] = ACTIONS(1128), - [anon_sym_let] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_using] = ACTIONS(1128), - [anon_sym_await] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_LPAREN] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_try] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_debugger] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_throw] = ACTIONS(1128), - [anon_sym_case] = ACTIONS(1128), - [anon_sym_catch] = ACTIONS(1130), - [anon_sym_finally] = ACTIONS(1132), - [anon_sym_yield] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1126), - [anon_sym_class] = ACTIONS(1128), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(1128), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_typeof] = ACTIONS(1128), - [anon_sym_void] = ACTIONS(1128), - [anon_sym_delete] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1126), + [sym_formal_parameters] = STATE(1840), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_await] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(524), + [anon_sym_in] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_RBRACK] = ACTIONS(524), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1160), + [anon_sym_function] = ACTIONS(1126), + [anon_sym_EQ_GT] = ACTIONS(529), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1126), - [sym_number] = ACTIONS(1126), - [sym_private_property_identifier] = ACTIONS(1126), - [sym_this] = ACTIONS(1128), - [sym_super] = ACTIONS(1128), - [sym_true] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [sym_null] = ACTIONS(1128), - [sym_undefined] = ACTIONS(1128), - [anon_sym_AT] = ACTIONS(1126), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_get] = ACTIONS(1128), - [anon_sym_set] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(382)] = { - [sym_formal_parameters] = STATE(1824), - [sym_identifier] = ACTIONS(1122), - [anon_sym_export] = ACTIONS(1124), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_let] = ACTIONS(1124), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(496), - [anon_sym_in] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(496), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1124), - [anon_sym_function] = ACTIONS(1098), - [anon_sym_EQ_GT] = ACTIONS(498), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_formal_parameters] = STATE(1840), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(531), + [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_await] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_in] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_RBRACK] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1160), + [anon_sym_function] = ACTIONS(1126), + [anon_sym_EQ_GT] = ACTIONS(529), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_get] = ACTIONS(1124), - [anon_sym_set] = ACTIONS(1124), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(383)] = { - [sym_formal_parameters] = STATE(1859), - [sym_identifier] = ACTIONS(1091), - [anon_sym_export] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(169), - [anon_sym_let] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1093), - [anon_sym_of] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_in] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1098), - [anon_sym_EQ_GT] = ACTIONS(402), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_formal_parameters] = STATE(1841), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_in] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_RBRACK] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_function] = ACTIONS(1126), + [anon_sym_EQ_GT] = ACTIONS(422), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1093), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1093), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_get] = ACTIONS(1121), + [anon_sym_set] = ACTIONS(1121), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(384)] = { - [ts_builtin_sym_end] = ACTIONS(700), - [sym_identifier] = ACTIONS(702), - [anon_sym_export] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(700), - [anon_sym_RBRACE] = ACTIONS(700), - [anon_sym_import] = ACTIONS(702), - [anon_sym_with] = ACTIONS(702), - [anon_sym_var] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_using] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_else] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_switch] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(700), - [anon_sym_while] = ACTIONS(702), - [anon_sym_do] = ACTIONS(702), - [anon_sym_try] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_debugger] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_throw] = ACTIONS(702), - [anon_sym_case] = ACTIONS(702), - [anon_sym_catch] = ACTIONS(702), - [anon_sym_finally] = ACTIONS(702), - [anon_sym_yield] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_DQUOTE] = ACTIONS(700), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_function] = ACTIONS(702), - [anon_sym_new] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_SLASH] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_TILDE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(702), - [anon_sym_void] = ACTIONS(702), - [anon_sym_delete] = ACTIONS(702), - [anon_sym_PLUS_PLUS] = ACTIONS(700), - [anon_sym_DASH_DASH] = ACTIONS(700), + [ts_builtin_sym_end] = ACTIONS(816), + [sym_identifier] = ACTIONS(818), + [anon_sym_export] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_import] = ACTIONS(818), + [anon_sym_with] = ACTIONS(818), + [anon_sym_var] = ACTIONS(818), + [anon_sym_let] = ACTIONS(818), + [anon_sym_const] = ACTIONS(818), + [anon_sym_using] = ACTIONS(818), + [anon_sym_await] = ACTIONS(818), + [anon_sym_else] = ACTIONS(818), + [anon_sym_if] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(818), + [anon_sym_for] = ACTIONS(818), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_SEMI] = ACTIONS(816), + [anon_sym_while] = ACTIONS(818), + [anon_sym_do] = ACTIONS(818), + [anon_sym_try] = ACTIONS(818), + [anon_sym_break] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(818), + [anon_sym_debugger] = ACTIONS(818), + [anon_sym_return] = ACTIONS(818), + [anon_sym_throw] = ACTIONS(818), + [anon_sym_case] = ACTIONS(818), + [anon_sym_catch] = ACTIONS(818), + [anon_sym_finally] = ACTIONS(818), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_LT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_SQUOTE] = ACTIONS(816), + [anon_sym_class] = ACTIONS(818), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(818), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(818), + [anon_sym_SLASH] = ACTIONS(818), + [anon_sym_BANG] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(818), + [anon_sym_void] = ACTIONS(818), + [anon_sym_delete] = ACTIONS(818), + [anon_sym_PLUS_PLUS] = ACTIONS(816), + [anon_sym_DASH_DASH] = ACTIONS(816), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(700), - [sym_number] = ACTIONS(700), - [sym_private_property_identifier] = ACTIONS(700), - [sym_this] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_true] = ACTIONS(702), - [sym_false] = ACTIONS(702), - [sym_null] = ACTIONS(702), - [sym_undefined] = ACTIONS(702), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_static] = ACTIONS(702), - [anon_sym_get] = ACTIONS(702), - [anon_sym_set] = ACTIONS(702), + [anon_sym_BQUOTE] = ACTIONS(816), + [sym_number] = ACTIONS(816), + [sym_private_property_identifier] = ACTIONS(816), + [anon_sym_this] = ACTIONS(818), + [anon_sym_super] = ACTIONS(818), + [anon_sym_true] = ACTIONS(818), + [anon_sym_false] = ACTIONS(818), + [anon_sym_null] = ACTIONS(818), + [sym_undefined] = ACTIONS(818), + [anon_sym_AT] = ACTIONS(816), + [anon_sym_static] = ACTIONS(818), + [anon_sym_get] = ACTIONS(818), + [anon_sym_set] = ACTIONS(818), [sym_html_comment] = ACTIONS(5), }, [STATE(385)] = { - [ts_builtin_sym_end] = ACTIONS(694), - [sym_identifier] = ACTIONS(696), - [anon_sym_export] = ACTIONS(696), - [anon_sym_default] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_with] = ACTIONS(696), - [anon_sym_var] = ACTIONS(696), - [anon_sym_let] = ACTIONS(696), - [anon_sym_const] = ACTIONS(696), - [anon_sym_using] = ACTIONS(696), - [anon_sym_await] = ACTIONS(696), - [anon_sym_else] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_switch] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_while] = ACTIONS(696), - [anon_sym_do] = ACTIONS(696), - [anon_sym_try] = ACTIONS(696), - [anon_sym_break] = ACTIONS(696), - [anon_sym_continue] = ACTIONS(696), - [anon_sym_debugger] = ACTIONS(696), - [anon_sym_return] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_case] = ACTIONS(696), - [anon_sym_catch] = ACTIONS(696), - [anon_sym_finally] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_class] = ACTIONS(696), - [anon_sym_async] = ACTIONS(696), - [anon_sym_function] = ACTIONS(696), - [anon_sym_new] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_typeof] = ACTIONS(696), - [anon_sym_void] = ACTIONS(696), - [anon_sym_delete] = ACTIONS(696), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(694), + [sym_formal_parameters] = STATE(1841), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(322), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_of] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_in] = ACTIONS(537), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_function] = ACTIONS(1126), + [anon_sym_EQ_GT] = ACTIONS(422), + [sym_optional_chain] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_STAR_STAR_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(355), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_GT_GT_GT] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_STAR_STAR] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(322), + [anon_sym_QMARK_QMARK] = ACTIONS(318), + [anon_sym_instanceof] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(694), - [sym_number] = ACTIONS(694), - [sym_private_property_identifier] = ACTIONS(694), - [sym_this] = ACTIONS(696), - [sym_super] = ACTIONS(696), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_null] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_static] = ACTIONS(696), - [anon_sym_get] = ACTIONS(696), - [anon_sym_set] = ACTIONS(696), + [anon_sym_BQUOTE] = ACTIONS(322), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_get] = ACTIONS(1121), + [anon_sym_set] = ACTIONS(1121), + [sym__ternary_qmark] = ACTIONS(322), [sym_html_comment] = ACTIONS(5), }, [STATE(386)] = { - [sym_formal_parameters] = STATE(1859), - [sym_identifier] = ACTIONS(1091), - [anon_sym_export] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(577), - [anon_sym_RBRACE] = ACTIONS(577), - [anon_sym_let] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(169), - [anon_sym_async] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1098), - [anon_sym_EQ_GT] = ACTIONS(402), - [sym_optional_chain] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(202), - [anon_sym_DASH_EQ] = ACTIONS(202), - [anon_sym_STAR_EQ] = ACTIONS(202), - [anon_sym_SLASH_EQ] = ACTIONS(202), - [anon_sym_PERCENT_EQ] = ACTIONS(202), - [anon_sym_CARET_EQ] = ACTIONS(202), - [anon_sym_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_EQ] = ACTIONS(202), - [anon_sym_GT_GT_EQ] = ACTIONS(202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), - [anon_sym_LT_LT_EQ] = ACTIONS(202), - [anon_sym_STAR_STAR_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP_EQ] = ACTIONS(202), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(169), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(169), - [anon_sym_QMARK_QMARK] = ACTIONS(165), - [anon_sym_instanceof] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(169), - [anon_sym_DASH_DASH] = ACTIONS(169), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), + [anon_sym_export] = ACTIONS(836), + [anon_sym_default] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(836), + [anon_sym_var] = ACTIONS(836), + [anon_sym_let] = ACTIONS(836), + [anon_sym_const] = ACTIONS(836), + [anon_sym_using] = ACTIONS(836), + [anon_sym_await] = ACTIONS(836), + [anon_sym_else] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_switch] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_while] = ACTIONS(836), + [anon_sym_do] = ACTIONS(836), + [anon_sym_try] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_debugger] = ACTIONS(836), + [anon_sym_return] = ACTIONS(836), + [anon_sym_throw] = ACTIONS(836), + [anon_sym_case] = ACTIONS(836), + [anon_sym_catch] = ACTIONS(836), + [anon_sym_finally] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_class] = ACTIONS(836), + [anon_sym_async] = ACTIONS(836), + [anon_sym_function] = ACTIONS(836), + [anon_sym_new] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_TILDE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(836), + [anon_sym_void] = ACTIONS(836), + [anon_sym_delete] = ACTIONS(836), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(834), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(169), - [anon_sym_static] = ACTIONS(1093), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1093), - [sym__ternary_qmark] = ACTIONS(169), + [anon_sym_BQUOTE] = ACTIONS(834), + [sym_number] = ACTIONS(834), + [sym_private_property_identifier] = ACTIONS(834), + [anon_sym_this] = ACTIONS(836), + [anon_sym_super] = ACTIONS(836), + [anon_sym_true] = ACTIONS(836), + [anon_sym_false] = ACTIONS(836), + [anon_sym_null] = ACTIONS(836), + [sym_undefined] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(834), + [anon_sym_static] = ACTIONS(836), + [anon_sym_get] = ACTIONS(836), + [anon_sym_set] = ACTIONS(836), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 13, - ACTIONS(402), 1, + ACTIONS(422), 1, anon_sym_EQ_GT, - ACTIONS(509), 1, + ACTIONS(524), 1, anon_sym_COMMA, - ACTIONS(514), 1, + ACTIONS(540), 1, anon_sym_RBRACK, - ACTIONS(517), 1, + ACTIONS(543), 1, anon_sym_EQ, - ACTIONS(1091), 1, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1123), 1, anon_sym_LPAREN, - ACTIONS(1098), 1, + ACTIONS(1126), 1, anon_sym_function, - STATE(1859), 1, + STATE(1841), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1093), 7, + ACTIONS(1121), 7, anon_sym_export, anon_sym_let, anon_sym_await, @@ -43714,7 +45449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(169), 11, + ACTIONS(322), 11, sym__ternary_qmark, anon_sym_LBRACK, anon_sym_DOT, @@ -43726,7 +45461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43742,7 +45477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 21, + ACTIONS(318), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43764,23 +45499,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91] = 11, - ACTIONS(200), 1, + [91] = 5, + ACTIONS(1154), 1, + anon_sym_finally, + STATE(479), 1, + sym_finally_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1162), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1164), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [166] = 11, + ACTIONS(353), 1, anon_sym_EQ_GT, - ACTIONS(490), 1, + ACTIONS(508), 1, anon_sym_EQ, - ACTIONS(1095), 1, + ACTIONS(1107), 1, + anon_sym_function, + ACTIONS(1123), 1, anon_sym_LPAREN, - ACTIONS(1110), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1120), 1, - anon_sym_function, - STATE(1834), 1, + STATE(1766), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1112), 7, + ACTIONS(1130), 7, anon_sym_export, anon_sym_let, anon_sym_await, @@ -43788,7 +45593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(169), 13, + ACTIONS(322), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_SEMI, @@ -43802,7 +45607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43818,7 +45623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 21, + ACTIONS(318), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43840,93 +45645,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [178] = 5, - ACTIONS(1132), 1, - anon_sym_finally, - STATE(460), 1, - sym_finally_clause, + [253] = 11, + ACTIONS(353), 1, + anon_sym_EQ_GT, + ACTIONS(508), 1, + anon_sym_EQ, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1128), 1, + sym_identifier, + ACTIONS(1146), 1, + anon_sym_function, + STATE(1766), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1134), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1130), 7, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(322), 13, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1136), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_using, - anon_sym_await, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(355), 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(318), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [340] = 11, + ACTIONS(468), 1, + anon_sym_EQ, + ACTIONS(620), 1, + anon_sym_EQ_GT, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1126), 1, + anon_sym_function, + ACTIONS(1166), 1, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, + STATE(1792), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1168), 7, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [253] = 11, - ACTIONS(200), 1, + ACTIONS(322), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(355), 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(318), 22, + anon_sym_STAR, + anon_sym_of, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [426] = 11, + ACTIONS(644), 1, anon_sym_EQ_GT, - ACTIONS(490), 1, + ACTIONS(654), 1, anon_sym_EQ, - ACTIONS(1079), 1, - anon_sym_function, - ACTIONS(1095), 1, + ACTIONS(1123), 1, anon_sym_LPAREN, - ACTIONS(1110), 1, + ACTIONS(1126), 1, + anon_sym_function, + ACTIONS(1170), 1, sym_identifier, - STATE(1834), 1, + STATE(1875), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1112), 7, + ACTIONS(1172), 7, anon_sym_export, anon_sym_let, anon_sym_await, @@ -43934,10 +45820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(169), 13, - sym__automatic_semicolon, + ACTIONS(322), 12, sym__ternary_qmark, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -43948,7 +45833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43964,7 +45849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 21, + ACTIONS(318), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43986,12 +45871,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [340] = 3, + [512] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(694), 18, - sym__automatic_semicolon, + ACTIONS(1174), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -44009,7 +45893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(696), 43, + ACTIONS(1176), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44032,6 +45916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -44044,22 +45929,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [410] = 4, - ACTIONS(730), 1, + [582] = 4, + ACTIONS(916), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(722), 17, + ACTIONS(908), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -44077,7 +45962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(724), 43, + ACTIONS(910), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44112,43 +45997,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [482] = 11, - ACTIONS(440), 1, - anon_sym_EQ, - ACTIONS(628), 1, + [654] = 13, + ACTIONS(353), 1, anon_sym_EQ_GT, - ACTIONS(1095), 1, - anon_sym_LPAREN, - ACTIONS(1098), 1, - anon_sym_function, - ACTIONS(1138), 1, + ACTIONS(506), 1, + anon_sym_COLON, + ACTIONS(508), 1, + anon_sym_EQ, + ACTIONS(1134), 1, sym_identifier, - STATE(1821), 1, - sym_formal_parameters, + ACTIONS(1136), 1, + anon_sym_LBRACE, + ACTIONS(1138), 1, + anon_sym_of, + ACTIONS(1140), 1, + anon_sym_LBRACK, + STATE(1358), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1140), 7, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(169), 12, + STATE(1279), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(322), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, sym_optional_chain, anon_sym_LT_EQ, @@ -44158,7 +46045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44174,7 +46061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 21, + ACTIONS(318), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44196,13 +46083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [568] = 4, - ACTIONS(1142), 1, + [744] = 4, + ACTIONS(926), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(708), 17, + ACTIONS(918), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -44220,75 +46107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(710), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_using, - anon_sym_await, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [640] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1148), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1144), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1146), 43, + ACTIONS(920), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44323,181 +46142,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [712] = 13, - ACTIONS(200), 1, - anon_sym_EQ_GT, - ACTIONS(490), 1, - anon_sym_EQ, - ACTIONS(494), 1, - anon_sym_COLON, - ACTIONS(1100), 1, - sym_identifier, - ACTIONS(1102), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, - anon_sym_of, - ACTIONS(1106), 1, - anon_sym_LBRACK, - STATE(1385), 1, - sym_variable_declarator, + [816] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(169), 14, + ACTIONS(1182), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(202), 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(165), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [802] = 13, - ACTIONS(200), 1, - anon_sym_EQ_GT, - ACTIONS(488), 1, - anon_sym_COLON, - ACTIONS(490), 1, - anon_sym_EQ, - ACTIONS(1100), 1, - sym_identifier, - ACTIONS(1102), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, - anon_sym_of, - ACTIONS(1106), 1, - anon_sym_LBRACK, - STATE(1385), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1311), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(169), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(202), 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(165), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [892] = 4, - ACTIONS(780), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(772), 17, + ACTIONS(1178), 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_DQUOTE, @@ -44510,7 +46175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(774), 43, + ACTIONS(1180), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44545,20 +46210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [964] = 3, + [888] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(704), 18, + ACTIONS(792), 18, sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, @@ -44577,7 +46242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(706), 43, + ACTIONS(794), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44612,20 +46277,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1034] = 3, + [958] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(700), 18, + ACTIONS(820), 18, sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, @@ -44644,7 +46309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(702), 43, + ACTIONS(822), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44679,25 +46344,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1104] = 3, + [1028] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1150), 17, + ACTIONS(1184), 18, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LT, anon_sym_DQUOTE, @@ -44710,7 +46376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1152), 44, + ACTIONS(1186), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44733,7 +46399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -44746,21 +46411,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1174] = 3, + [1098] = 11, + ACTIONS(468), 1, + anon_sym_EQ, + ACTIONS(644), 1, + anon_sym_EQ_GT, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1126), 1, + anon_sym_function, + ACTIONS(1170), 1, + sym_identifier, + STATE(1875), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(690), 18, + ACTIONS(1172), 7, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(322), 12, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(355), 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(318), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1184] = 4, + ACTIONS(1188), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(834), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -44778,7 +46519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(692), 43, + ACTIONS(836), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44813,22 +46554,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1244] = 4, - ACTIONS(740), 1, + [1256] = 4, + ACTIONS(892), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(732), 17, + ACTIONS(884), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -44846,7 +46587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(734), 43, + ACTIONS(886), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44881,21 +46622,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1316] = 3, + [1328] = 4, + ACTIONS(862), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1154), 18, - sym__automatic_semicolon, + ACTIONS(854), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -44913,7 +46655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1156), 43, + ACTIONS(856), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44948,22 +46690,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1386] = 4, - ACTIONS(770), 1, + [1400] = 4, + ACTIONS(902), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(762), 17, + ACTIONS(894), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -44981,7 +46723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(764), 43, + ACTIONS(896), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -45016,95 +46758,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1458] = 11, - ACTIONS(624), 1, - anon_sym_EQ, - ACTIONS(628), 1, - anon_sym_EQ_GT, - ACTIONS(1095), 1, - anon_sym_LPAREN, - ACTIONS(1098), 1, - anon_sym_function, - ACTIONS(1138), 1, - sym_identifier, - STATE(1821), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1140), 7, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(169), 12, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(202), 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(165), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1544] = 3, + [1472] = 4, + ACTIONS(872), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1158), 17, + ACTIONS(864), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -45122,7 +46791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1160), 44, + ACTIONS(866), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -45145,7 +46814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -45158,22 +46826,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1614] = 4, - ACTIONS(760), 1, + [1544] = 4, + ACTIONS(882), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(752), 17, + ACTIONS(874), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -45191,7 +46859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(754), 43, + ACTIONS(876), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -45226,22 +46894,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1686] = 4, - ACTIONS(790), 1, - sym__automatic_semicolon, + [1616] = 11, + ACTIONS(468), 1, + anon_sym_EQ, + ACTIONS(529), 1, + anon_sym_EQ_GT, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1126), 1, + anon_sym_function, + ACTIONS(1158), 1, + sym_identifier, + STATE(1840), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(782), 17, + ACTIONS(1160), 7, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(322), 12, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(355), 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(318), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1702] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1190), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -45259,7 +47001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(784), 43, + ACTIONS(1192), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -45294,32 +47036,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1758] = 11, - ACTIONS(440), 1, + [1772] = 11, + ACTIONS(616), 1, anon_sym_EQ, - ACTIONS(498), 1, + ACTIONS(620), 1, anon_sym_EQ_GT, - ACTIONS(1095), 1, + ACTIONS(1123), 1, anon_sym_LPAREN, - ACTIONS(1098), 1, + ACTIONS(1126), 1, anon_sym_function, - ACTIONS(1122), 1, + ACTIONS(1166), 1, sym_identifier, - STATE(1824), 1, + STATE(1792), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1124), 7, + ACTIONS(1168), 7, anon_sym_export, anon_sym_let, anon_sym_await, @@ -45327,9 +47069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(169), 12, + ACTIONS(322), 11, sym__ternary_qmark, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -45340,7 +47081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45356,8 +47097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 21, + ACTIONS(318), 22, anon_sym_STAR, + anon_sym_of, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -45378,15 +47120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1844] = 5, - ACTIONS(1166), 1, - anon_sym_else, - STATE(428), 1, - sym_else_clause, + [1858] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1162), 17, + ACTIONS(834), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -45404,7 +47143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1164), 42, + ACTIONS(836), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -45414,6 +47153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_using, anon_sym_await, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -45438,97 +47178,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1918] = 11, - ACTIONS(580), 1, - anon_sym_EQ_GT, - ACTIONS(590), 1, - anon_sym_EQ, - ACTIONS(1095), 1, - anon_sym_LPAREN, - ACTIONS(1098), 1, - anon_sym_function, - ACTIONS(1168), 1, - sym_identifier, - STATE(1782), 1, - sym_formal_parameters, + [1928] = 4, + ACTIONS(936), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1170), 7, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(169), 11, - sym__ternary_qmark, + ACTIONS(928), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 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(165), 22, - anon_sym_STAR, - anon_sym_of, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(930), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2004] = 4, - ACTIONS(800), 1, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [2000] = 4, + ACTIONS(1194), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(792), 17, + ACTIONS(786), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -45546,7 +47279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(794), 43, + ACTIONS(788), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -45581,32 +47314,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [2076] = 11, - ACTIONS(440), 1, + [2072] = 13, + ACTIONS(353), 1, + anon_sym_EQ_GT, + ACTIONS(508), 1, + anon_sym_EQ, + ACTIONS(510), 1, + anon_sym_COLON, + ACTIONS(1134), 1, + sym_identifier, + ACTIONS(1136), 1, + anon_sym_LBRACE, + ACTIONS(1138), 1, + anon_sym_of, + ACTIONS(1140), 1, + anon_sym_LBRACK, + STATE(1358), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1279), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(322), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(355), 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(318), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [2162] = 13, + ACTIONS(468), 1, anon_sym_EQ, - ACTIONS(580), 1, + ACTIONS(529), 1, anon_sym_EQ_GT, - ACTIONS(1095), 1, + ACTIONS(535), 1, + anon_sym_of, + ACTIONS(537), 1, + anon_sym_in, + ACTIONS(1123), 1, anon_sym_LPAREN, - ACTIONS(1098), 1, + ACTIONS(1126), 1, anon_sym_function, - ACTIONS(1168), 1, + ACTIONS(1158), 1, sym_identifier, - STATE(1782), 1, + STATE(1840), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1170), 7, + ACTIONS(1160), 7, anon_sym_export, anon_sym_let, anon_sym_await, @@ -45614,7 +47428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(169), 11, + ACTIONS(322), 11, sym__ternary_qmark, anon_sym_LBRACK, anon_sym_DOT, @@ -45626,7 +47440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45642,10 +47456,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 22, + ACTIONS(318), 20, anon_sym_STAR, - anon_sym_of, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45665,13 +47477,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2162] = 4, - ACTIONS(750), 1, - sym__automatic_semicolon, + [2252] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(742), 17, + ACTIONS(816), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -45689,7 +47500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(744), 43, + ACTIONS(818), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -45724,22 +47535,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [2234] = 4, - ACTIONS(1172), 1, - sym__automatic_semicolon, + [2322] = 5, + ACTIONS(1200), 1, + anon_sym_else, + STATE(470), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(694), 17, + ACTIONS(1196), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -45757,7 +47570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(696), 43, + ACTIONS(1198), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -45767,7 +47580,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_using, anon_sym_await, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -45792,103 +47604,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [2306] = 13, - ACTIONS(440), 1, - anon_sym_EQ, - ACTIONS(498), 1, - anon_sym_EQ_GT, - ACTIONS(504), 1, - anon_sym_of, - ACTIONS(506), 1, - anon_sym_in, - ACTIONS(1095), 1, - anon_sym_LPAREN, - ACTIONS(1098), 1, - anon_sym_function, - ACTIONS(1122), 1, - sym_identifier, - STATE(1824), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1124), 7, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(169), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(202), 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(165), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, [2396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1174), 18, + ACTIONS(1202), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LT, anon_sym_DQUOTE, @@ -45901,7 +47635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1176), 43, + ACTIONS(1204), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -45924,6 +47658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -45936,11 +47671,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -45949,7 +47684,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1178), 17, + ACTIONS(1206), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -45967,7 +47702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1180), 43, + ACTIONS(1208), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46002,11 +47737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46015,7 +47750,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1182), 17, + ACTIONS(1210), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46033,7 +47768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1184), 43, + ACTIONS(1212), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46068,11 +47803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46081,7 +47816,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1186), 17, + ACTIONS(1214), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46099,7 +47834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1188), 43, + ACTIONS(1216), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46134,11 +47869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46147,7 +47882,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1186), 17, + ACTIONS(1218), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46165,7 +47900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1188), 43, + ACTIONS(1220), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46200,11 +47935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46213,7 +47948,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1190), 17, + ACTIONS(1222), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46231,7 +47966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1192), 43, + ACTIONS(1224), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46266,11 +48001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46279,7 +48014,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1194), 17, + ACTIONS(1226), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46297,7 +48032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1196), 43, + ACTIONS(1228), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46332,11 +48067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46345,7 +48080,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1198), 17, + ACTIONS(1230), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46363,7 +48098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1200), 43, + ACTIONS(1232), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46398,11 +48133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46411,7 +48146,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1202), 17, + ACTIONS(1234), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46429,7 +48164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1204), 43, + ACTIONS(1236), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46464,11 +48199,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46477,7 +48212,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1206), 17, + ACTIONS(1238), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46495,7 +48230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1208), 43, + ACTIONS(1240), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46530,11 +48265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46543,7 +48278,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1210), 17, + ACTIONS(1242), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46561,7 +48296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1212), 43, + ACTIONS(1244), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46596,11 +48331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46609,7 +48344,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 17, + ACTIONS(1246), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46627,7 +48362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1216), 43, + ACTIONS(1248), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46662,11 +48397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46675,7 +48410,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1218), 17, + ACTIONS(1250), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46693,7 +48428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1220), 43, + ACTIONS(1252), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46728,11 +48463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46741,7 +48476,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1222), 17, + ACTIONS(1254), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46759,7 +48494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1224), 43, + ACTIONS(1256), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46794,11 +48529,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46807,7 +48542,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1226), 17, + ACTIONS(1258), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46825,7 +48560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1228), 43, + ACTIONS(1260), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46860,11 +48595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46873,7 +48608,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1230), 17, + ACTIONS(1262), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46891,7 +48626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1232), 43, + ACTIONS(1264), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46926,11 +48661,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -46939,7 +48674,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1234), 17, + ACTIONS(1266), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -46957,7 +48692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1236), 43, + ACTIONS(1268), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -46992,11 +48727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47005,7 +48740,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 17, + ACTIONS(1270), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47023,7 +48758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1240), 43, + ACTIONS(1272), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47058,11 +48793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47071,7 +48806,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1242), 17, + ACTIONS(1274), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47089,7 +48824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1244), 43, + ACTIONS(1276), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47124,11 +48859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47137,7 +48872,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1246), 17, + ACTIONS(1278), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47155,7 +48890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1248), 43, + ACTIONS(1280), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47190,11 +48925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47203,7 +48938,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1250), 17, + ACTIONS(1282), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47221,7 +48956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1252), 43, + ACTIONS(1284), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47256,11 +48991,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47269,7 +49004,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1254), 17, + ACTIONS(1286), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47287,7 +49022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1256), 43, + ACTIONS(1288), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47322,11 +49057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47335,7 +49070,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1258), 17, + ACTIONS(1290), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47353,7 +49088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1260), 43, + ACTIONS(1292), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47388,11 +49123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47401,7 +49136,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1258), 17, + ACTIONS(1294), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47419,7 +49154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1260), 43, + ACTIONS(1296), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47454,11 +49189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47467,7 +49202,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1262), 17, + ACTIONS(1298), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47485,7 +49220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1264), 43, + ACTIONS(1300), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47520,11 +49255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47533,7 +49268,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1266), 17, + ACTIONS(1302), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47551,7 +49286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1268), 43, + ACTIONS(1304), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47586,11 +49321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47599,7 +49334,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1270), 17, + ACTIONS(1306), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47617,7 +49352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1272), 43, + ACTIONS(1308), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47652,11 +49387,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47665,7 +49400,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1274), 17, + ACTIONS(1310), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47683,7 +49418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1276), 43, + ACTIONS(1312), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47718,11 +49453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47731,7 +49466,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1206), 17, + ACTIONS(1306), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47749,7 +49484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1208), 43, + ACTIONS(1308), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47784,11 +49519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47797,7 +49532,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1278), 17, + ACTIONS(1314), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47815,7 +49550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1280), 43, + ACTIONS(1316), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47850,11 +49585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47863,7 +49598,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1282), 17, + ACTIONS(1318), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47881,7 +49616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1284), 43, + ACTIONS(1320), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47916,11 +49651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47929,7 +49664,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1206), 17, + ACTIONS(1306), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47947,7 +49682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1208), 43, + ACTIONS(1308), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -47982,11 +49717,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -47995,7 +49730,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1286), 17, + ACTIONS(1306), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48013,7 +49748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1288), 43, + ACTIONS(1308), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48048,11 +49783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48061,7 +49796,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1290), 17, + ACTIONS(1306), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48079,7 +49814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1292), 43, + ACTIONS(1308), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48114,11 +49849,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48127,7 +49862,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1294), 17, + ACTIONS(1306), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48145,7 +49880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1296), 43, + ACTIONS(1308), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48180,11 +49915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48193,7 +49928,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1298), 17, + ACTIONS(1322), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48211,7 +49946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1300), 43, + ACTIONS(1324), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48246,11 +49981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48259,7 +49994,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1298), 17, + ACTIONS(1326), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48277,7 +50012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1300), 43, + ACTIONS(1328), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48312,11 +50047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48325,7 +50060,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 17, + ACTIONS(1330), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48343,7 +50078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1304), 43, + ACTIONS(1332), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48378,11 +50113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48391,7 +50126,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1306), 17, + ACTIONS(1334), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48409,7 +50144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1308), 43, + ACTIONS(1336), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48444,11 +50179,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48457,7 +50192,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1310), 17, + ACTIONS(1326), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48475,7 +50210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1312), 43, + ACTIONS(1328), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48510,11 +50245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48523,7 +50258,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1314), 17, + ACTIONS(1338), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48541,7 +50276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1316), 43, + ACTIONS(1340), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48576,11 +50311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48589,7 +50324,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 17, + ACTIONS(1342), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48607,7 +50342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1320), 43, + ACTIONS(1344), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48642,11 +50377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48655,7 +50390,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1322), 17, + ACTIONS(1346), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48673,7 +50408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1324), 43, + ACTIONS(1348), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48708,11 +50443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48721,7 +50456,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1326), 17, + ACTIONS(1350), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48739,7 +50474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1328), 43, + ACTIONS(1352), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48774,11 +50509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48787,7 +50522,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1330), 17, + ACTIONS(1354), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48805,7 +50540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1332), 43, + ACTIONS(1356), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48840,11 +50575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48853,7 +50588,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1334), 17, + ACTIONS(1358), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48871,7 +50606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1336), 43, + ACTIONS(1360), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48906,11 +50641,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48919,7 +50654,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1338), 17, + ACTIONS(1362), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48937,7 +50672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1340), 43, + ACTIONS(1364), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -48972,11 +50707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -48985,7 +50720,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1342), 17, + ACTIONS(1366), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49003,7 +50738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1344), 43, + ACTIONS(1368), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49038,11 +50773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49051,7 +50786,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1346), 17, + ACTIONS(1370), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49069,7 +50804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1348), 43, + ACTIONS(1372), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49104,11 +50839,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49117,7 +50852,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1350), 17, + ACTIONS(1374), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49135,7 +50870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1352), 43, + ACTIONS(1376), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49170,11 +50905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49183,7 +50918,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1354), 17, + ACTIONS(1330), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49201,7 +50936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1356), 43, + ACTIONS(1332), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49236,11 +50971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49249,7 +50984,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1358), 17, + ACTIONS(1378), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49267,7 +51002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1360), 43, + ACTIONS(1380), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49302,11 +51037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49315,7 +51050,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1362), 17, + ACTIONS(1382), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49333,7 +51068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1364), 43, + ACTIONS(1384), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49368,11 +51103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49381,7 +51116,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1366), 17, + ACTIONS(1386), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49399,7 +51134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1368), 43, + ACTIONS(1388), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49434,11 +51169,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49447,7 +51182,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1370), 17, + ACTIONS(1390), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49465,7 +51200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1372), 43, + ACTIONS(1392), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49500,11 +51235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49513,7 +51248,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1374), 17, + ACTIONS(1394), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49531,7 +51266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1376), 43, + ACTIONS(1396), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49566,11 +51301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49579,7 +51314,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1206), 17, + ACTIONS(1398), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49597,7 +51332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1208), 43, + ACTIONS(1400), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49632,11 +51367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49645,7 +51380,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1378), 17, + ACTIONS(1402), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49663,7 +51398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1380), 43, + ACTIONS(1404), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49698,11 +51433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49711,7 +51446,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1382), 17, + ACTIONS(1406), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49729,7 +51464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1384), 43, + ACTIONS(1408), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49764,11 +51499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49777,7 +51512,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1386), 17, + ACTIONS(1410), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49795,7 +51530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1388), 43, + ACTIONS(1412), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49830,11 +51565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49843,7 +51578,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1390), 17, + ACTIONS(1414), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49861,7 +51596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1392), 43, + ACTIONS(1416), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49896,11 +51631,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49909,7 +51644,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1394), 17, + ACTIONS(1418), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49927,7 +51662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1396), 43, + ACTIONS(1420), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -49962,11 +51697,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -49975,7 +51710,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1398), 17, + ACTIONS(1422), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49993,7 +51728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1400), 43, + ACTIONS(1424), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -50028,11 +51763,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -50041,7 +51776,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1402), 17, + ACTIONS(1426), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -50059,7 +51794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1404), 43, + ACTIONS(1428), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -50094,11 +51829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -50107,7 +51842,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1206), 17, + ACTIONS(1430), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -50125,7 +51860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1208), 43, + ACTIONS(1432), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -50160,11 +51895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -50173,7 +51908,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1406), 17, + ACTIONS(1434), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -50191,7 +51926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1408), 43, + ACTIONS(1436), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -50226,11 +51961,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -50239,7 +51974,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1410), 17, + ACTIONS(1434), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -50257,7 +51992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1412), 43, + ACTIONS(1436), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -50292,11 +52027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -50305,7 +52040,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1414), 17, + ACTIONS(1438), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -50323,7 +52058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1416), 43, + ACTIONS(1440), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -50358,11 +52093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -50371,7 +52106,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1418), 17, + ACTIONS(1442), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -50389,7 +52124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1420), 43, + ACTIONS(1444), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -50424,11 +52159,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -50437,7 +52172,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1206), 17, + ACTIONS(1446), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -50455,7 +52190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1208), 43, + ACTIONS(1448), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -50490,40 +52225,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, [7227] = 13, - ACTIONS(384), 1, + ACTIONS(404), 1, anon_sym_EQ, - ACTIONS(402), 1, + ACTIONS(422), 1, anon_sym_EQ_GT, - ACTIONS(506), 1, + ACTIONS(537), 1, anon_sym_in, - ACTIONS(1102), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(1106), 1, + ACTIONS(1140), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1450), 1, sym_identifier, - ACTIONS(1424), 1, + ACTIONS(1452), 1, anon_sym_of, - STATE(1385), 1, + STATE(1358), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1202), 3, + STATE(1239), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(169), 13, + ACTIONS(322), 13, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -50537,7 +52272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50553,7 +52288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -50575,28 +52310,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, [7315] = 12, - ACTIONS(200), 1, + ACTIONS(353), 1, anon_sym_EQ_GT, - ACTIONS(490), 1, + ACTIONS(508), 1, anon_sym_EQ, - ACTIONS(1100), 1, + ACTIONS(1134), 1, sym_identifier, - ACTIONS(1102), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1138), 1, anon_sym_of, - ACTIONS(1106), 1, + ACTIONS(1140), 1, anon_sym_LBRACK, - STATE(1385), 1, + STATE(1358), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, + STATE(1279), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(169), 13, + ACTIONS(322), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -50610,7 +52345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50626,7 +52361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 21, + ACTIONS(318), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50648,41 +52383,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7401] = 11, - ACTIONS(183), 1, - anon_sym_COLON, - ACTIONS(351), 1, - anon_sym_RBRACE, - ACTIONS(1430), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, + [7401] = 5, + ACTIONS(1458), 1, anon_sym_EQ, - ACTIONS(1435), 1, - anon_sym_EQ_GT, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50698,7 +52405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50719,33 +52426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7483] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1156), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1154), 36, + ACTIONS(1456), 21, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50759,55 +52440,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7549] = 11, - ACTIONS(171), 1, - anon_sym_RBRACE, - ACTIONS(183), 1, - anon_sym_COLON, - ACTIONS(1430), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - anon_sym_EQ, - ACTIONS(1435), 1, - anon_sym_EQ_GT, - STATE(1452), 1, - aux_sym_object_pattern_repeat1, - STATE(1487), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1428), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -50816,48 +52448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 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(1426), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7631] = 3, + [7471] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1439), 21, + ACTIONS(1192), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -50879,7 +52474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1441), 36, + ACTIONS(1190), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50916,11 +52511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7697] = 3, + [7537] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1443), 21, + ACTIONS(1462), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -50942,7 +52537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1445), 36, + ACTIONS(1464), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50979,46 +52574,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7763] = 3, + [7603] = 11, + ACTIONS(336), 1, + anon_sym_COLON, + ACTIONS(369), 1, + anon_sym_RBRACE, + ACTIONS(1466), 1, + anon_sym_LPAREN, + ACTIONS(1469), 1, + anon_sym_EQ, + ACTIONS(1471), 1, + anon_sym_EQ_GT, + STATE(1475), 1, + aux_sym_object_repeat1, + STATE(1477), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1447), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 36, + ACTIONS(1456), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51034,22 +52624,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7829] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1451), 21, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -51068,20 +52645,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1453), 36, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + [7685] = 11, + ACTIONS(336), 1, + anon_sym_COLON, + ACTIONS(371), 1, anon_sym_RBRACE, - anon_sym_of, + ACTIONS(1466), 1, anon_sym_LPAREN, + ACTIONS(1469), 1, + anon_sym_EQ, + ACTIONS(1471), 1, + anon_sym_EQ_GT, + STATE(1457), 1, + aux_sym_object_repeat1, + STATE(1477), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1456), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51097,19 +52695,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7895] = 3, + ACTIONS(1454), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7767] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1455), 21, + ACTIONS(1473), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -51131,7 +52742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1457), 36, + ACTIONS(1475), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51168,13 +52779,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7961] = 5, - ACTIONS(1459), 1, + [7833] = 11, + ACTIONS(324), 1, + anon_sym_RBRACE, + ACTIONS(336), 1, + anon_sym_COLON, + ACTIONS(1466), 1, + anon_sym_LPAREN, + ACTIONS(1469), 1, anon_sym_EQ, + ACTIONS(1471), 1, + anon_sym_EQ_GT, + STATE(1457), 1, + aux_sym_object_repeat1, + STATE(1477), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 15, + ACTIONS(1456), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51190,9 +52829,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1454), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7915] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1477), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -51211,7 +52876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1428), 21, + ACTIONS(1479), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51225,6 +52890,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -51233,41 +52913,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8031] = 11, - ACTIONS(183), 1, - anon_sym_COLON, - ACTIONS(216), 1, - anon_sym_RBRACE, - ACTIONS(1430), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - anon_sym_EQ, - ACTIONS(1435), 1, - anon_sym_EQ_GT, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, - aux_sym_object_pattern_repeat1, + [7981] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 15, - sym__automatic_semicolon, + ACTIONS(1481), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1483), 36, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51283,9 +52968,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 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, + [8047] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1485), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -51304,11 +53002,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(1487), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, [8113] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1461), 21, + ACTIONS(1489), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -51330,7 +53065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1463), 36, + ACTIONS(1491), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51367,15 +53102,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8179] = 6, - ACTIONS(1465), 1, + [8179] = 12, + ACTIONS(468), 1, anon_sym_EQ, - ACTIONS(1467), 1, + ACTIONS(529), 1, anon_sym_EQ_GT, + ACTIONS(537), 1, + anon_sym_in, + ACTIONS(1136), 1, + anon_sym_LBRACE, + ACTIONS(1493), 1, + sym_identifier, + ACTIONS(1495), 1, + anon_sym_of, + ACTIONS(1497), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 15, + STATE(1479), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(322), 11, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51391,29 +53152,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1428), 19, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1426), 20, + ACTIONS(318), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -51432,15 +53172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8250] = 6, - ACTIONS(384), 1, + anon_sym_instanceof, + [8262] = 6, + ACTIONS(1500), 1, anon_sym_EQ, - ACTIONS(402), 1, + ACTIONS(1502), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(202), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51456,7 +53197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(169), 19, + ACTIONS(1456), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -51476,7 +53217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(165), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51497,15 +53238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8321] = 6, - ACTIONS(1459), 1, + [8333] = 6, + ACTIONS(404), 1, anon_sym_EQ, - ACTIONS(1467), 1, + ACTIONS(422), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51521,7 +53262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1428), 19, + ACTIONS(322), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -51541,7 +53282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1426), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51562,15 +53303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8392] = 6, - ACTIONS(402), 1, + [8404] = 6, + ACTIONS(422), 1, anon_sym_EQ_GT, - ACTIONS(440), 1, + ACTIONS(468), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51586,7 +53327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(169), 19, + ACTIONS(322), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -51606,7 +53347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(165), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51627,41 +53368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8463] = 12, - ACTIONS(440), 1, + [8475] = 6, + ACTIONS(1458), 1, anon_sym_EQ, - ACTIONS(498), 1, + ACTIONS(1502), 1, anon_sym_EQ_GT, - ACTIONS(506), 1, - anon_sym_in, - ACTIONS(1102), 1, - anon_sym_LBRACE, - ACTIONS(1469), 1, - sym_identifier, - ACTIONS(1471), 1, - anon_sym_of, - ACTIONS(1473), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1469), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(169), 11, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51677,8 +53392,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 20, + ACTIONS(1456), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1454), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -51697,12 +53433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, [8546] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1478), 15, + ACTIONS(1506), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -51718,7 +53453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1476), 40, + ACTIONS(1504), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -51750,83 +53485,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [8610] = 5, - ACTIONS(1465), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1437), 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(1428), 19, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1426), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8678] = 3, + [8610] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1478), 15, + ACTIONS(1510), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -51842,7 +53514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1476), 40, + ACTIONS(1508), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -51874,20 +53546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [8742] = 3, + [8674] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1482), 15, + ACTIONS(1514), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -51903,7 +53575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1480), 40, + ACTIONS(1512), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -51935,20 +53607,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [8806] = 3, + [8738] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1482), 15, + ACTIONS(1518), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -51964,7 +53636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1480), 40, + ACTIONS(1516), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -51996,20 +53668,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [8870] = 3, + [8802] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 15, + ACTIONS(1522), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52025,7 +53697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1484), 40, + ACTIONS(1520), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52057,20 +53729,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [8934] = 3, + [8866] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1490), 15, + ACTIONS(1526), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52086,7 +53758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1488), 40, + ACTIONS(1524), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52118,20 +53790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [8998] = 3, + [8930] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1494), 15, + ACTIONS(1530), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52147,7 +53819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1492), 40, + ACTIONS(1528), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52179,20 +53851,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [9062] = 3, + [8994] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1498), 15, + ACTIONS(1534), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52208,7 +53880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1496), 40, + ACTIONS(1532), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52240,20 +53912,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [9126] = 3, + [9058] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1502), 15, + ACTIONS(1538), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52269,7 +53941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1500), 40, + ACTIONS(1536), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52301,20 +53973,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [9190] = 3, + [9122] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1506), 15, + ACTIONS(1542), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52330,7 +54002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1504), 40, + ACTIONS(1540), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52362,16 +54034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [9254] = 3, + [9186] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -52423,20 +54095,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [9318] = 3, + [9250] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1478), 15, + ACTIONS(1546), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52452,7 +54124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1476), 40, + ACTIONS(1544), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52484,20 +54156,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, + [9314] = 5, + ACTIONS(1500), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1460), 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(1456), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1454), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, [9382] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1514), 15, + ACTIONS(1518), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52513,7 +54248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1512), 40, + ACTIONS(1516), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52545,11 +54280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -52558,7 +54293,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1482), 15, + ACTIONS(1190), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52574,7 +54309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1480), 40, + ACTIONS(1192), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52606,11 +54341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -52619,7 +54354,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1478), 15, + ACTIONS(1510), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52635,7 +54370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1476), 40, + ACTIONS(1508), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52667,11 +54402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -52680,7 +54415,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1518), 15, + ACTIONS(1510), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52696,7 +54431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1516), 40, + ACTIONS(1508), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52728,11 +54463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -52741,7 +54476,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1522), 15, + ACTIONS(1550), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52757,7 +54492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1520), 40, + ACTIONS(1548), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52789,11 +54524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -52802,7 +54537,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1154), 15, + ACTIONS(1518), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52818,7 +54553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1156), 40, + ACTIONS(1516), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52850,11 +54585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, @@ -52863,7 +54598,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1482), 15, + ACTIONS(1518), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -52879,7 +54614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1480), 40, + ACTIONS(1516), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -52911,67 +54646,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [9830] = 3, + [9830] = 7, + ACTIONS(1502), 1, + anon_sym_EQ_GT, + ACTIONS(1555), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1455), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1457), 33, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1552), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1456), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -52980,15 +54682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9893] = 6, - ACTIONS(1524), 1, - anon_sym_EQ, - ACTIONS(1526), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53004,25 +54698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1428), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53043,13 +54719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9962] = 5, - ACTIONS(1459), 1, + [9901] = 6, + ACTIONS(554), 1, anon_sym_EQ, + ACTIONS(558), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53065,11 +54743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1428), 18, + ACTIONS(322), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, @@ -53084,7 +54761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1426), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53105,15 +54782,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10029] = 6, - ACTIONS(1435), 1, - anon_sym_EQ_GT, - ACTIONS(1459), 1, - anon_sym_EQ, + [9970] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 15, + ACTIONS(1473), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1475), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53129,16 +54834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1428), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -53147,9 +54842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1426), 20, + [10033] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1477), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -53168,15 +54868,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10098] = 6, - ACTIONS(200), 1, - anon_sym_EQ_GT, - ACTIONS(440), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(202), 15, + ACTIONS(1479), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53192,16 +54894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(169), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -53210,9 +54902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(165), 20, + [10096] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1485), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -53231,17 +54928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10167] = 7, - ACTIONS(494), 1, - anon_sym_COLON, - ACTIONS(1435), 1, - anon_sym_EQ_GT, - ACTIONS(1528), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1437), 15, + ACTIONS(1487), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53257,15 +54954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1428), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -53274,41 +54962,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1426), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10238] = 7, - ACTIONS(498), 1, - anon_sym_EQ_GT, - ACTIONS(511), 1, + [10159] = 7, + ACTIONS(468), 1, anon_sym_EQ, + ACTIONS(529), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(509), 4, + ACTIONS(531), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(169), 13, + ACTIONS(322), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -53322,7 +54989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53338,7 +55005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53359,20 +55026,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10309] = 7, - ACTIONS(1532), 1, + [10230] = 7, + ACTIONS(1458), 1, anon_sym_EQ, - ACTIONS(1535), 1, + ACTIONS(1560), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1530), 4, + ACTIONS(1558), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1428), 13, + ACTIONS(1456), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -53386,7 +55053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53402,7 +55069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53423,144 +55090,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10380] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1461), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1463), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10443] = 7, - ACTIONS(200), 1, - anon_sym_EQ_GT, - ACTIONS(490), 1, - anon_sym_EQ, - ACTIONS(494), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(202), 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(169), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(165), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10514] = 7, - ACTIONS(1467), 1, + [10301] = 7, + ACTIONS(422), 1, anon_sym_EQ_GT, - ACTIONS(1540), 1, + ACTIONS(543), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1537), 4, + ACTIONS(540), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1428), 13, + ACTIONS(322), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -53574,7 +55117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53590,7 +55133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53611,15 +55154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10585] = 6, - ACTIONS(200), 1, - anon_sym_EQ_GT, - ACTIONS(490), 1, + [10372] = 6, + ACTIONS(1458), 1, anon_sym_EQ, + ACTIONS(1471), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(202), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53635,7 +55178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(169), 17, + ACTIONS(1456), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -53653,7 +55196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(165), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53674,11 +55217,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10654] = 3, + [10441] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1156), 21, + ACTIONS(1481), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -53700,7 +55243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1154), 33, + ACTIONS(1483), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -53734,52 +55277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10717] = 7, - ACTIONS(440), 1, - anon_sym_EQ, - ACTIONS(498), 1, - anon_sym_EQ_GT, + [10504] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(496), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(169), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(202), 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(165), 20, + ACTIONS(1462), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -53798,25 +55303,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10788] = 7, - ACTIONS(1459), 1, - anon_sym_EQ, - ACTIONS(1535), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1543), 4, + ACTIONS(1464), 33, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1428), 13, - sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -53825,7 +55337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + [10567] = 6, + ACTIONS(468), 1, + anon_sym_EQ, + ACTIONS(558), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53841,7 +55361,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(322), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53862,17 +55400,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10859] = 7, - ACTIONS(488), 1, - anon_sym_COLON, - ACTIONS(1435), 1, + [10636] = 6, + ACTIONS(353), 1, anon_sym_EQ_GT, - ACTIONS(1528), 1, + ACTIONS(508), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53888,10 +55424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1428), 16, + ACTIONS(322), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -53905,7 +55442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1426), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53926,17 +55463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10930] = 7, - ACTIONS(200), 1, - anon_sym_EQ_GT, - ACTIONS(488), 1, + [10705] = 7, + ACTIONS(510), 1, anon_sym_COLON, - ACTIONS(490), 1, + ACTIONS(1471), 1, + anon_sym_EQ_GT, + ACTIONS(1562), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(202), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53952,7 +55489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(169), 16, + ACTIONS(1456), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -53969,7 +55506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(165), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53990,15 +55527,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11001] = 6, - ACTIONS(1435), 1, + [10776] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1192), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1190), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10839] = 6, + ACTIONS(353), 1, anon_sym_EQ_GT, - ACTIONS(1528), 1, + ACTIONS(468), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54014,7 +55611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1428), 17, + ACTIONS(322), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54032,7 +55629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1426), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54053,15 +55650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11070] = 6, - ACTIONS(500), 1, + [10908] = 7, + ACTIONS(353), 1, anon_sym_EQ_GT, - ACTIONS(528), 1, + ACTIONS(508), 1, anon_sym_EQ, + ACTIONS(510), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54077,11 +55676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(169), 17, + ACTIONS(322), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -54095,7 +55693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(165), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54116,75 +55714,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11139] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1443), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1445), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [11202] = 6, - ACTIONS(440), 1, + [10979] = 5, + ACTIONS(1458), 1, anon_sym_EQ, - ACTIONS(500), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(202), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54200,10 +55736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(169), 17, + ACTIONS(1456), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, @@ -54218,7 +55755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(165), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54239,43 +55776,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11271] = 3, + [11046] = 7, + ACTIONS(526), 1, + anon_sym_EQ, + ACTIONS(529), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1447), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 33, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(524), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(322), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54291,22 +55819,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [11334] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1451), 21, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -54325,17 +55840,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1453), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + [11117] = 7, + ACTIONS(506), 1, + anon_sym_COLON, + ACTIONS(1471), 1, + anon_sym_EQ_GT, + ACTIONS(1562), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54351,30 +55866,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [11397] = 7, - ACTIONS(402), 1, - anon_sym_EQ_GT, - ACTIONS(517), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(514), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(169), 13, + ACTIONS(1456), 16, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54386,23 +55883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 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(165), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54423,15 +55904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11468] = 6, - ACTIONS(1459), 1, + [11188] = 6, + ACTIONS(1458), 1, anon_sym_EQ, - ACTIONS(1526), 1, + ACTIONS(1564), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54447,7 +55928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1428), 17, + ACTIONS(1456), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54465,7 +55946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54486,11 +55967,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11537] = 3, + [11257] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1439), 21, + ACTIONS(1489), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -54512,7 +55993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1441), 33, + ACTIONS(1491), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54546,13 +56027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11600] = 5, - ACTIONS(1528), 1, + [11320] = 6, + ACTIONS(1471), 1, + anon_sym_EQ_GT, + ACTIONS(1562), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54568,7 +56051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1428), 17, + ACTIONS(1456), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54586,7 +56069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54607,35 +56090,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11666] = 8, - ACTIONS(384), 1, - anon_sym_EQ, - ACTIONS(402), 1, + [11389] = 7, + ACTIONS(353), 1, anon_sym_EQ_GT, ACTIONS(506), 1, - anon_sym_in, - ACTIONS(1545), 1, - anon_sym_of, + anon_sym_COLON, + ACTIONS(508), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(169), 15, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54651,8 +56116,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 19, + ACTIONS(322), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(318), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -54671,33 +56154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11738] = 7, - ACTIONS(1465), 1, - anon_sym_EQ, - ACTIONS(1467), 1, + [11460] = 6, + ACTIONS(1564), 1, anon_sym_EQ_GT, + ACTIONS(1566), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1547), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1428), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54713,7 +56178,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1456), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54734,23 +56217,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11808] = 8, - ACTIONS(1465), 1, - anon_sym_EQ, - ACTIONS(1467), 1, + [11529] = 7, + ACTIONS(1560), 1, anon_sym_EQ_GT, - ACTIONS(1550), 1, - anon_sym_of, - ACTIONS(1552), 1, - anon_sym_in, + ACTIONS(1570), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 15, - sym__ternary_qmark, + ACTIONS(1568), 4, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1456), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54762,7 +56244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54778,8 +56260,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 19, + ACTIONS(1454), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -54798,18 +56281,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11880] = 6, - ACTIONS(1459), 1, + [11600] = 7, + ACTIONS(1500), 1, anon_sym_EQ, + ACTIONS(1502), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 4, + ACTIONS(1573), 3, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1428), 13, + ACTIONS(1456), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -54823,7 +56307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54839,7 +56323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54860,20 +56344,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11948] = 6, - ACTIONS(1540), 1, + [11670] = 8, + ACTIONS(404), 1, anon_sym_EQ, + ACTIONS(422), 1, + anon_sym_EQ_GT, + ACTIONS(537), 1, + anon_sym_in, + ACTIONS(1576), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1537), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1428), 13, + ACTIONS(322), 15, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54885,7 +56372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54901,9 +56388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(318), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -54922,18 +56408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12016] = 6, - ACTIONS(1532), 1, + [11742] = 6, + ACTIONS(1570), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1530), 4, + ACTIONS(1568), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1428), 13, + ACTIONS(1456), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -54947,7 +56433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54963,7 +56449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54984,19 +56470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12084] = 7, - ACTIONS(384), 1, + [11810] = 7, + ACTIONS(404), 1, anon_sym_EQ, - ACTIONS(402), 1, + ACTIONS(422), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(577), 3, + ACTIONS(605), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(169), 13, + ACTIONS(322), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -55010,7 +56496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55026,7 +56512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55047,13 +56533,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12154] = 5, - ACTIONS(1524), 1, + [11880] = 6, + ACTIONS(1555), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1552), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1456), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1460), 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(1454), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11948] = 6, + ACTIONS(1458), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1558), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1456), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1460), 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(1454), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12016] = 5, + ACTIONS(1566), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55069,7 +56679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1428), 17, + ACTIONS(1456), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -55087,7 +56697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55108,19 +56718,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12220] = 8, - ACTIONS(402), 1, + [12082] = 5, + ACTIONS(1562), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1460), 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(1456), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1454), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12148] = 8, + ACTIONS(1500), 1, + anon_sym_EQ, + ACTIONS(1502), 1, anon_sym_EQ_GT, - ACTIONS(509), 1, + ACTIONS(1578), 1, + anon_sym_of, + ACTIONS(1580), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1456), 15, + sym__ternary_qmark, anon_sym_COMMA, - ACTIONS(514), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1460), 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(1454), 19, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12220] = 8, + ACTIONS(1502), 1, + anon_sym_EQ_GT, + ACTIONS(1552), 1, anon_sym_RBRACK, - ACTIONS(517), 1, + ACTIONS(1555), 1, anon_sym_EQ, + ACTIONS(1568), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(169), 13, + ACTIONS(1456), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -55134,7 +56869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55150,7 +56885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55172,16 +56907,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [12291] = 6, - ACTIONS(1465), 1, + ACTIONS(1500), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1547), 3, + ACTIONS(1573), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(1428), 13, + ACTIONS(1456), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -55195,7 +56930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55211,7 +56946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55232,21 +56967,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12358] = 8, - ACTIONS(1467), 1, - anon_sym_EQ_GT, - ACTIONS(1530), 1, - anon_sym_COMMA, - ACTIONS(1537), 1, - anon_sym_RBRACK, - ACTIONS(1540), 1, + [12358] = 7, + ACTIONS(1500), 1, anon_sym_EQ, + ACTIONS(1578), 1, + anon_sym_of, + ACTIONS(1580), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 13, + ACTIONS(1456), 15, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55258,7 +56993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55274,9 +57009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1454), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -55295,21 +57029,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12429] = 7, - ACTIONS(1465), 1, + [12427] = 8, + ACTIONS(422), 1, + anon_sym_EQ_GT, + ACTIONS(524), 1, + anon_sym_COMMA, + ACTIONS(540), 1, + anon_sym_RBRACK, + ACTIONS(543), 1, anon_sym_EQ, - ACTIONS(1550), 1, - anon_sym_of, - ACTIONS(1552), 1, - anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 15, + ACTIONS(322), 13, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55321,7 +57055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55337,8 +57071,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 19, + ACTIONS(318), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -55358,16 +57093,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [12498] = 6, - ACTIONS(440), 1, + ACTIONS(616), 1, anon_sym_EQ, - ACTIONS(628), 1, + ACTIONS(620), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(169), 14, + ACTIONS(322), 14, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -55380,7 +57115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55396,7 +57131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55417,17 +57152,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12564] = 6, - ACTIONS(1459), 1, - anon_sym_EQ, + [12564] = 7, + ACTIONS(1552), 1, + anon_sym_RBRACK, ACTIONS(1555), 1, - anon_sym_EQ_GT, + anon_sym_EQ, + ACTIONS(1568), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 14, + ACTIONS(1456), 13, sym__ternary_qmark, - anon_sym_of, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -55440,7 +57176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55456,7 +57192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55477,15 +57213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12630] = 6, - ACTIONS(624), 1, + [12632] = 6, + ACTIONS(468), 1, anon_sym_EQ, - ACTIONS(628), 1, + ACTIONS(644), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(169), 14, + ACTIONS(322), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, @@ -55500,7 +57236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55516,7 +57252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55537,17 +57273,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12696] = 6, - ACTIONS(1557), 1, + [12698] = 6, + ACTIONS(468), 1, anon_sym_EQ, - ACTIONS(1559), 1, + ACTIONS(620), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 14, + ACTIONS(322), 14, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -55560,7 +57296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55576,7 +57312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55597,17 +57333,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12762] = 6, - ACTIONS(580), 1, - anon_sym_EQ_GT, - ACTIONS(590), 1, + [12764] = 6, + ACTIONS(1583), 1, anon_sym_EQ, + ACTIONS(1585), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(169), 14, + ACTIONS(1456), 14, sym__ternary_qmark, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -55620,7 +57356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55636,7 +57372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55657,15 +57393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12828] = 6, - ACTIONS(1459), 1, - anon_sym_EQ, - ACTIONS(1559), 1, + [12830] = 6, + ACTIONS(644), 1, anon_sym_EQ_GT, + ACTIONS(654), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 14, + ACTIONS(322), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, @@ -55680,7 +57416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55696,7 +57432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(318), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55717,18 +57453,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12894] = 6, - ACTIONS(440), 1, + [12896] = 8, + ACTIONS(1458), 1, anon_sym_EQ, - ACTIONS(498), 1, + ACTIONS(1560), 1, anon_sym_EQ_GT, + ACTIONS(1578), 1, + anon_sym_of, + ACTIONS(1580), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(169), 14, + ACTIONS(1456), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55740,7 +57479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55756,9 +57495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 20, + ACTIONS(1454), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -55777,17 +57515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12960] = 7, - ACTIONS(1530), 1, - anon_sym_COMMA, - ACTIONS(1537), 1, - anon_sym_RBRACK, - ACTIONS(1540), 1, + [12966] = 8, + ACTIONS(468), 1, anon_sym_EQ, + ACTIONS(529), 1, + anon_sym_EQ_GT, + ACTIONS(537), 1, + anon_sym_in, + ACTIONS(1576), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 13, + ACTIONS(322), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -55801,7 +57541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55817,9 +57557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(318), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -55838,17 +57577,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13028] = 6, - ACTIONS(440), 1, + [13036] = 6, + ACTIONS(1458), 1, anon_sym_EQ, - ACTIONS(580), 1, + ACTIONS(1585), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(169), 14, + ACTIONS(1456), 14, sym__ternary_qmark, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -55861,7 +57600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55877,7 +57616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55898,21 +57637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13094] = 8, - ACTIONS(440), 1, + [13102] = 6, + ACTIONS(468), 1, anon_sym_EQ, - ACTIONS(498), 1, + ACTIONS(529), 1, anon_sym_EQ_GT, - ACTIONS(506), 1, - anon_sym_in, - ACTIONS(1545), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(169), 13, + ACTIONS(322), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55924,7 +57660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(202), 15, + ACTIONS(355), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55940,8 +57676,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(165), 19, + ACTIONS(318), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -55960,21 +57697,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13164] = 8, - ACTIONS(1459), 1, + [13168] = 6, + ACTIONS(1458), 1, anon_sym_EQ, - ACTIONS(1535), 1, + ACTIONS(1560), 1, anon_sym_EQ_GT, - ACTIONS(1550), 1, - anon_sym_of, - ACTIONS(1552), 1, - anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 13, + ACTIONS(1456), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55986,7 +57720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56002,8 +57736,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 19, + ACTIONS(1454), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -56023,17 +57758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [13234] = 6, - ACTIONS(1459), 1, + ACTIONS(1587), 1, anon_sym_EQ, - ACTIONS(1535), 1, + ACTIONS(1589), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 14, + ACTIONS(1456), 14, sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56045,7 +57780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56061,7 +57796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56083,14 +57818,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [13300] = 6, - ACTIONS(1555), 1, - anon_sym_EQ_GT, - ACTIONS(1561), 1, + ACTIONS(1458), 1, anon_sym_EQ, + ACTIONS(1589), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 14, + ACTIONS(1456), 14, sym__ternary_qmark, anon_sym_of, anon_sym_LPAREN, @@ -56105,7 +57840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56121,7 +57856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56142,15 +57877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13366] = 5, - ACTIONS(1557), 1, + [13366] = 7, + ACTIONS(1458), 1, anon_sym_EQ, + ACTIONS(1578), 1, + anon_sym_of, + ACTIONS(1580), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 14, + ACTIONS(1456), 13, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -56163,7 +57901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56179,9 +57917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1454), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -56200,15 +57937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13429] = 5, - ACTIONS(1561), 1, + [13433] = 5, + ACTIONS(1583), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 14, + ACTIONS(1456), 14, sym__ternary_qmark, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -56221,7 +57958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56237,7 +57974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 20, + ACTIONS(1454), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56258,18 +57995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13492] = 7, - ACTIONS(1459), 1, + [13496] = 5, + ACTIONS(1587), 1, anon_sym_EQ, - ACTIONS(1550), 1, - anon_sym_of, - ACTIONS(1552), 1, - anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1428), 13, + ACTIONS(1456), 14, sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -56282,7 +58016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1437), 15, + ACTIONS(1460), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56298,8 +58032,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1426), 19, + ACTIONS(1454), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -56318,25 +58053,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13559] = 10, - ACTIONS(662), 1, + [13559] = 6, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1595), 1, + anon_sym_LBRACK, + ACTIONS(1597), 1, + sym_private_property_identifier, + STATE(770), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1591), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_instanceof, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [13620] = 6, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1603), 1, + anon_sym_LBRACK, + ACTIONS(1605), 1, + sym_private_property_identifier, + STATE(600), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1599), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_instanceof, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [13681] = 4, + ACTIONS(1595), 1, + anon_sym_LBRACK, + ACTIONS(1597), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1591), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_instanceof, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [13736] = 4, + ACTIONS(1603), 1, + anon_sym_LBRACK, + ACTIONS(1605), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1599), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_instanceof, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [13791] = 3, + ACTIONS(1609), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1607), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_instanceof, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [13843] = 7, + ACTIONS(690), 1, + anon_sym_BQUOTE, + ACTIONS(1601), 1, + anon_sym_LPAREN, + STATE(602), 1, + sym_arguments, + STATE(636), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1611), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1613), 27, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [13903] = 10, + ACTIONS(690), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1573), 1, + ACTIONS(1619), 1, sym_optional_chain, - STATE(597), 1, + STATE(602), 1, sym_arguments, - STATE(607), 1, + STATE(636), 1, sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1563), 12, + ACTIONS(1611), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56349,7 +58398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1565), 24, + ACTIONS(1613), 24, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -56374,15 +58423,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [13625] = 5, - ACTIONS(718), 1, + [13969] = 3, + ACTIONS(1623), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1621), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_instanceof, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [14021] = 3, + ACTIONS(1597), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1591), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_instanceof, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [14073] = 3, + ACTIONS(1605), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1599), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_instanceof, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + anon_sym_this, + anon_sym_super, + anon_sym_true, + anon_sym_false, + anon_sym_null, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [14125] = 5, + ACTIONS(830), 1, anon_sym_EQ, - ACTIONS(1575), 1, + ACTIONS(1625), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(710), 12, + ACTIONS(788), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56395,7 +58591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(708), 29, + ACTIONS(786), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -56425,19 +58621,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13681] = 7, - ACTIONS(662), 1, + [14181] = 4, + ACTIONS(1627), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(836), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(834), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1567), 1, + [14234] = 8, + ACTIONS(1601), 1, anon_sym_LPAREN, - STATE(597), 1, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1633), 1, + sym_optional_chain, + STATE(658), 1, sym_arguments, - STATE(607), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1629), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1631), 25, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14295] = 5, + ACTIONS(690), 1, + anon_sym_BQUOTE, + STATE(636), 1, sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1563), 12, + ACTIONS(1635), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56450,12 +58744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1565), 27, + ACTIONS(1637), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, @@ -56478,13 +58773,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [13741] = 4, - ACTIONS(1575), 1, - sym__automatic_semicolon, + [14350] = 9, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1633), 1, + sym_optional_chain, + STATE(658), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(710), 12, + ACTIONS(1643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1639), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56497,20 +58803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(708), 29, + ACTIONS(1641), 23, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -56524,18 +58826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13794] = 5, - ACTIONS(662), 1, - anon_sym_BQUOTE, - STATE(607), 1, - sym_template_string, + [14413] = 4, + ACTIONS(1625), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1577), 12, + ACTIONS(788), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56548,7 +58846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1579), 28, + ACTIONS(786), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -56577,13 +58875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [13849] = 4, - ACTIONS(1581), 1, - sym__automatic_semicolon, + anon_sym_BQUOTE, + [14466] = 4, + ACTIONS(1458), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(696), 12, + ACTIONS(1454), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56596,7 +58895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(694), 29, + ACTIONS(1456), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -56626,24 +58925,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13902] = 9, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(1569), 1, + [14519] = 8, + ACTIONS(690), 1, + anon_sym_BQUOTE, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1619), 1, sym_optional_chain, - STATE(637), 1, - sym_arguments, + STATE(636), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1583), 12, + ACTIONS(1635), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56656,12 +58952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1585), 23, + ACTIONS(1637), 25, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, @@ -56679,25 +58976,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [13965] = 9, - ACTIONS(1567), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [14580] = 9, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 12, + ACTIONS(1645), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56710,7 +59008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1593), 23, + ACTIONS(1647), 23, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -56734,21 +59032,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [14028] = 8, - ACTIONS(662), 1, - anon_sym_BQUOTE, - ACTIONS(1569), 1, + [14643] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1649), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1651), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1571), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1573), 1, sym_optional_chain, - STATE(607), 1, - sym_template_string, + 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, + [14693] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1577), 12, + ACTIONS(1653), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56761,7 +59096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1579), 25, + ACTIONS(1655), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -56771,7 +59106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -56787,13 +59125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [14089] = 4, - ACTIONS(1459), 1, - anon_sym_EQ, + anon_sym_BQUOTE, + [14743] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1426), 12, + ACTIONS(1657), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56806,7 +59143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 29, + ACTIONS(1659), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -56836,21 +59173,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14142] = 8, - ACTIONS(1567), 1, + [14793] = 4, + ACTIONS(1665), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1661), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + ACTIONS(1663), 27, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1569), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1571), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1587), 1, sym_optional_chain, - STATE(637), 1, - sym_arguments, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14845] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1595), 12, + ACTIONS(1667), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56863,16 +59238,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1597), 25, + ACTIONS(1669), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -56889,11 +59268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14203] = 3, + [14895] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1599), 12, + ACTIONS(1671), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56906,7 +59285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1601), 29, + ACTIONS(1673), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -56936,11 +59315,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14253] = 3, + [14945] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1603), 12, + ACTIONS(1675), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56953,7 +59332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1605), 29, + ACTIONS(1677), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -56983,11 +59362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14303] = 3, + [14995] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(706), 12, + ACTIONS(1679), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57000,7 +59379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(704), 29, + ACTIONS(1681), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57030,11 +59409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14353] = 3, + [15045] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1607), 12, + ACTIONS(912), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57047,7 +59426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1609), 29, + ACTIONS(914), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57077,11 +59456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14403] = 3, + [15095] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1611), 12, + ACTIONS(1683), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57094,7 +59473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1613), 29, + ACTIONS(1685), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57124,11 +59503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14453] = 3, + [15145] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1615), 12, + ACTIONS(922), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57141,7 +59520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1617), 29, + ACTIONS(924), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57171,13 +59550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14503] = 4, - ACTIONS(1623), 1, - sym_regex_flags, + [15195] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1619), 13, + ACTIONS(1687), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57190,12 +59567,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1689), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1621), 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15245] = 5, + ACTIONS(1698), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1695), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1691), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1693), 24, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15299] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1700), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1702), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, @@ -57216,14 +59689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14555] = 3, + [15349] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1625), 12, + ACTIONS(1454), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57236,7 +59710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1627), 29, + ACTIONS(1456), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57266,11 +59740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14605] = 3, + [15399] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1629), 12, + ACTIONS(888), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57283,7 +59757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1631), 29, + ACTIONS(890), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57313,11 +59787,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14655] = 3, + [15449] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1633), 12, + ACTIONS(1704), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57330,7 +59804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1635), 29, + ACTIONS(1706), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57360,11 +59834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14705] = 3, + [15499] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1577), 12, + ACTIONS(1708), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57377,7 +59851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1579), 29, + ACTIONS(1710), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57407,18 +59881,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14755] = 5, - ACTIONS(1644), 1, - anon_sym_EQ, + [15549] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1641), 4, + ACTIONS(932), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(934), 29, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(1637), 12, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15599] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1712), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57431,13 +59945,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1639), 24, + ACTIONS(1714), 29, sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -57456,11 +59975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14809] = 3, + [15649] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1646), 12, + ACTIONS(1716), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57473,7 +59992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1648), 29, + ACTIONS(1718), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57503,11 +60022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14859] = 3, + [15699] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(746), 12, + ACTIONS(1720), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57520,7 +60039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(748), 29, + ACTIONS(1722), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57550,11 +60069,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14909] = 3, + [15749] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1650), 12, + ACTIONS(1724), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57567,7 +60086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1652), 29, + ACTIONS(1726), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57597,11 +60116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14959] = 3, + [15799] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1654), 12, + ACTIONS(1728), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57614,7 +60133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1656), 29, + ACTIONS(1730), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57644,11 +60163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15009] = 3, + [15849] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1658), 12, + ACTIONS(1732), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57661,7 +60180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 29, + ACTIONS(1734), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57691,11 +60210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15059] = 3, + [15899] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1662), 12, + ACTIONS(1736), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57708,7 +60227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 29, + ACTIONS(1738), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57738,11 +60257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15109] = 3, + [15949] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1666), 12, + ACTIONS(1740), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57755,7 +60274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 29, + ACTIONS(1742), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57785,11 +60304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15159] = 3, + [15999] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1670), 12, + ACTIONS(858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57802,7 +60321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 29, + ACTIONS(860), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57832,11 +60351,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15209] = 3, + [16049] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(726), 12, + ACTIONS(868), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57849,7 +60368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(728), 29, + ACTIONS(870), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57879,11 +60398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15259] = 3, + [16099] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 12, + ACTIONS(898), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57896,7 +60415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 29, + ACTIONS(900), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57926,11 +60445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15309] = 3, + [16149] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1678), 12, + ACTIONS(1744), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57943,7 +60462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1680), 29, + ACTIONS(1746), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -57973,11 +60492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15359] = 3, + [16199] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1682), 12, + ACTIONS(1748), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57990,7 +60509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1684), 29, + ACTIONS(1750), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58020,11 +60539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15409] = 3, + [16249] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1686), 12, + ACTIONS(1748), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58037,7 +60556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1688), 29, + ACTIONS(1750), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58067,11 +60586,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15459] = 3, + [16299] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1690), 12, + ACTIONS(1748), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58084,7 +60603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1692), 29, + ACTIONS(1750), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58114,11 +60633,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15509] = 3, + [16349] = 5, + ACTIONS(830), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(702), 12, + ACTIONS(1752), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(826), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58131,18 +60657,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(700), 29, + ACTIONS(828), 24, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -58161,11 +60682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15559] = 3, + [16403] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(766), 12, + ACTIONS(1748), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58178,7 +60699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(768), 29, + ACTIONS(1750), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58208,11 +60729,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15609] = 3, + [16453] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(736), 12, + ACTIONS(1755), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58225,7 +60746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(738), 29, + ACTIONS(1757), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58255,11 +60776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15659] = 3, + [16503] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1694), 12, + ACTIONS(1759), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58272,7 +60793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 29, + ACTIONS(1761), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58302,11 +60823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15709] = 3, + [16553] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1694), 12, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58319,7 +60840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 29, + ACTIONS(1765), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58349,11 +60870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15759] = 3, + [16603] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1694), 12, + ACTIONS(1767), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58366,7 +60887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 29, + ACTIONS(1769), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58396,11 +60917,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15809] = 3, + [16653] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1694), 12, + ACTIONS(1771), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58413,7 +60934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 29, + ACTIONS(1773), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58443,11 +60964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15859] = 3, + [16703] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(692), 12, + ACTIONS(818), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58460,7 +60981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(690), 29, + ACTIONS(816), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58490,11 +61011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15909] = 3, + [16753] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1698), 12, + ACTIONS(1775), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58507,7 +61028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1700), 29, + ACTIONS(1777), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58537,11 +61058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15959] = 3, + [16803] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1702), 12, + ACTIONS(1779), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58554,7 +61075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1704), 29, + ACTIONS(1781), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58584,11 +61105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16009] = 3, + [16853] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1706), 12, + ACTIONS(1783), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58601,7 +61122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1708), 29, + ACTIONS(1785), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58631,11 +61152,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16059] = 3, + [16903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1710), 12, + ACTIONS(878), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58648,7 +61169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1712), 29, + ACTIONS(880), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58678,11 +61199,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16109] = 3, + [16953] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1714), 12, + ACTIONS(1635), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58695,7 +61216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1716), 29, + ACTIONS(1637), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58725,11 +61246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16159] = 3, + [17003] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1718), 12, + ACTIONS(1787), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58742,7 +61263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1720), 29, + ACTIONS(1789), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58772,18 +61293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16209] = 5, - ACTIONS(1729), 1, - anon_sym_EQ, + [17053] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1726), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1722), 12, + ACTIONS(1791), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58796,13 +61310,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1724), 24, + ACTIONS(1793), 29, sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -58821,11 +61340,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16263] = 3, + [17103] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 12, + ACTIONS(1795), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58838,7 +61357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 29, + ACTIONS(1797), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58868,11 +61387,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16313] = 3, + [17153] = 5, + ACTIONS(1806), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1735), 12, + ACTIONS(1803), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1799), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58885,18 +61411,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1737), 29, + ACTIONS(1801), 24, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -58915,11 +61436,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16363] = 3, + [17207] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1739), 12, + ACTIONS(1808), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58932,7 +61453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1741), 29, + ACTIONS(1810), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -58962,11 +61483,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16413] = 3, + [17257] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(756), 12, + ACTIONS(794), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58979,7 +61500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(758), 29, + ACTIONS(792), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -59009,11 +61530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16463] = 3, + [17307] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1654), 12, + ACTIONS(1812), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59026,7 +61547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1656), 29, + ACTIONS(1814), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -59056,11 +61577,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16513] = 3, + [17357] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1743), 12, + ACTIONS(1816), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59073,7 +61594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 29, + ACTIONS(1818), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -59103,11 +61624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16563] = 3, + [17407] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 12, + ACTIONS(1820), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59120,7 +61641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1749), 29, + ACTIONS(1822), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -59150,11 +61671,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16613] = 3, + [17457] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 12, + ACTIONS(1824), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59167,7 +61688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 29, + ACTIONS(1826), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -59197,11 +61718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16663] = 3, + [17507] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 12, + ACTIONS(1828), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59214,7 +61735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 29, + ACTIONS(1830), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -59244,11 +61765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16713] = 3, + [17557] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1759), 12, + ACTIONS(1755), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59261,7 +61782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1761), 29, + ACTIONS(1757), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -59291,11 +61812,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16763] = 3, + [17607] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1763), 12, + ACTIONS(1832), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59308,7 +61829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1765), 29, + ACTIONS(1834), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -59338,11 +61859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16813] = 3, + [17657] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(776), 12, + ACTIONS(836), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59355,7 +61876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 29, + ACTIONS(834), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -59385,11 +61906,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16863] = 3, + [17707] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(786), 12, + ACTIONS(1836), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59402,7 +61923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(788), 29, + ACTIONS(1838), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -59432,11 +61953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16913] = 3, + [17757] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1426), 12, + ACTIONS(1840), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59449,7 +61970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 29, + ACTIONS(1842), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -59479,11 +62000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16963] = 3, + [17807] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(696), 12, + ACTIONS(1844), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59496,7 +62017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(694), 29, + ACTIONS(1846), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -59526,18 +62047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17013] = 5, - ACTIONS(718), 1, - anon_sym_EQ, + [17857] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(714), 12, + ACTIONS(822), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59550,13 +62064,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(716), 24, + ACTIONS(820), 29, sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -59575,58 +62094,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17067] = 3, + [17907] = 17, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1633), 1, + sym_optional_chain, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + STATE(658), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1770), 12, + ACTIONS(1643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1848), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1856), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1858), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1850), 14, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [17984] = 25, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1633), 1, + sym_optional_chain, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, + anon_sym_AMP_AMP, + ACTIONS(1872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1874), 1, anon_sym_AMP, + ACTIONS(1876), 1, + anon_sym_CARET, + ACTIONS(1878), 1, anon_sym_PIPE, + ACTIONS(1884), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1886), 1, + sym__ternary_qmark, + STATE(658), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1856), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1772), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1882), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1852), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1868), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [18077] = 12, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, anon_sym_DOT, + ACTIONS(1633), 1, sym_optional_chain, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + STATE(658), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1858), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1850), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, 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_BQUOTE, + [18144] = 25, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1633), 1, + sym_optional_chain, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, + anon_sym_AMP_AMP, + ACTIONS(1872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1874), 1, + anon_sym_AMP, + ACTIONS(1876), 1, + anon_sym_CARET, + ACTIONS(1878), 1, + anon_sym_PIPE, + ACTIONS(1884), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1886), 1, + sym__ternary_qmark, + STATE(658), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1856), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1880), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1882), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1852), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1761), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_BQUOTE, - [17117] = 3, + [18237] = 10, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1633), 1, + sym_optional_chain, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + STATE(658), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(796), 12, + ACTIONS(1643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59639,41 +62377,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(798), 29, + ACTIONS(1850), 20, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17167] = 3, + [18300] = 4, + ACTIONS(1806), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1774), 12, + ACTIONS(1799), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59686,12 +62417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1776), 29, + ACTIONS(1801), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, @@ -59716,13 +62445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17217] = 4, - ACTIONS(1729), 1, + [18351] = 4, + ACTIONS(1500), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1722), 12, + ACTIONS(1454), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59735,7 +62464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1724), 27, + ACTIONS(1456), 27, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -59763,135 +62492,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17268] = 25, - ACTIONS(1567), 1, + [18402] = 23, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1780), 7, + ACTIONS(1850), 9, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [17361] = 25, - ACTIONS(1567), 1, + [18491] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1676), 7, + ACTIONS(1706), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -59899,67 +62626,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [17454] = 25, - ACTIONS(1567), 1, + [18584] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1814), 7, + ACTIONS(1888), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -59967,67 +62694,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [17547] = 25, - ACTIONS(1567), 1, + [18677] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1816), 7, + ACTIONS(1781), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -60035,25 +62762,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [17640] = 10, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1818), 1, + [18770] = 10, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1824), 1, + ACTIONS(1633), 1, sym_optional_chain, - STATE(700), 1, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + STATE(658), 1, sym_arguments, - STATE(758), 1, - sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1563), 12, + ACTIONS(1643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60066,89 +62794,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1565), 21, - sym__automatic_semicolon, + ACTIONS(1850), 20, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [17703] = 25, - ACTIONS(1567), 1, + anon_sym_BQUOTE, + [18833] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1716), 7, + ACTIONS(1890), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -60156,13 +62883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [17796] = 4, - ACTIONS(1465), 1, + [18926] = 4, + ACTIONS(830), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1426), 12, + ACTIONS(826), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60175,7 +62902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 27, + ACTIONS(828), 27, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -60203,67 +62930,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17847] = 25, - ACTIONS(1567), 1, + [18977] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1826), 7, + ACTIONS(1730), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -60271,67 +62998,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [17940] = 25, - ACTIONS(1567), 1, + [19070] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1631), 7, + ACTIONS(1793), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -60339,207 +63066,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [18033] = 15, - ACTIONS(1567), 1, + [19163] = 10, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1896), 1, sym_optional_chain, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - STATE(637), 1, + STATE(746), 1, sym_arguments, + STATE(758), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1611), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1830), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 17, + ACTIONS(1613), 21, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [19226] = 7, + ACTIONS(83), 1, anon_sym_BQUOTE, - [18106] = 25, - ACTIONS(1567), 1, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, - anon_sym_LBRACK, - ACTIONS(1571), 1, - anon_sym_DOT, - ACTIONS(1587), 1, - sym_optional_chain, - ACTIONS(1784), 1, - anon_sym_AMP_AMP, - ACTIONS(1786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, - anon_sym_CARET, - ACTIONS(1796), 1, - anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - sym__ternary_qmark, - STATE(637), 1, + STATE(746), 1, sym_arguments, + STATE(758), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1611), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1798), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1832), 7, + ACTIONS(1613), 24, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [18199] = 25, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1796), 1, - anon_sym_PIPE, - ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - sym__ternary_qmark, - STATE(637), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1778), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1808), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1804), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1700), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [18292] = 4, - ACTIONS(718), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [19283] = 4, + ACTIONS(1698), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(714), 12, + ACTIONS(1691), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60552,7 +63188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(716), 27, + ACTIONS(1693), 27, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -60580,67 +63216,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18343] = 25, - ACTIONS(1567), 1, + [19334] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1708), 7, + ACTIONS(1898), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -60648,67 +63284,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [18436] = 25, - ACTIONS(1567), 1, + [19427] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1834), 7, + ACTIONS(1900), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -60716,67 +63352,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [18529] = 25, - ACTIONS(1567), 1, + [19520] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1712), 7, + ACTIONS(1673), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -60784,39 +63420,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [18622] = 10, - ACTIONS(1567), 1, + [19613] = 21, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1802), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - STATE(637), 1, + ACTIONS(1874), 1, + anon_sym_AMP, + ACTIONS(1876), 1, + anon_sym_CARET, + ACTIONS(1878), 1, + anon_sym_PIPE, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1830), 12, + ACTIONS(1848), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1856), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 20, + ACTIONS(1882), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1852), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1850), 11, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -60826,117 +63482,121 @@ static const 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, anon_sym_BQUOTE, - [18685] = 4, - ACTIONS(1644), 1, - anon_sym_EQ, + [19698] = 15, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1633), 1, + sym_optional_chain, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + STATE(658), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1637), 12, + ACTIONS(1643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1848), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1856), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1858), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1639), 27, + ACTIONS(1850), 17, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_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, - [18736] = 21, - ACTIONS(1567), 1, + [19771] = 22, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1788), 1, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, + anon_sym_AMP_AMP, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 11, + ACTIONS(1850), 10, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -60944,65 +63604,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [18821] = 22, - ACTIONS(1567), 1, + [19858] = 13, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, - anon_sym_AMP_AMP, - ACTIONS(1788), 1, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + STATE(658), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1860), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1858), 8, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1794), 1, - anon_sym_CARET, - ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1800), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1850), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [19927] = 19, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1633), 1, + sym_optional_chain, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1858), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 10, + ACTIONS(1850), 12, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -61010,46 +63720,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [18908] = 13, - ACTIONS(1567), 1, + [20008] = 20, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1800), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - STATE(637), 1, + ACTIONS(1874), 1, + anon_sym_AMP, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1798), 2, + ACTIONS(1856), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1830), 8, + ACTIONS(1880), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1882), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1828), 19, + ACTIONS(1866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1850), 12, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -61059,66 +63785,62 @@ static const 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_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_BQUOTE, - [18977] = 19, - ACTIONS(1567), 1, + [20091] = 21, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1788), 1, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(1800), 1, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - STATE(637), 1, + ACTIONS(1874), 1, + anon_sym_AMP, + ACTIONS(1876), 1, + anon_sym_CARET, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1830), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 12, + ACTIONS(1850), 11, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -61128,161 +63850,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [19058] = 20, - ACTIONS(1567), 1, + [20176] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1788), 1, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1800), 1, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1830), 1, + ACTIONS(1870), 1, + anon_sym_AMP_AMP, + ACTIONS(1872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1874), 1, + anon_sym_AMP, + ACTIONS(1876), 1, + anon_sym_CARET, + ACTIONS(1878), 1, anon_sym_PIPE, - STATE(637), 1, + ACTIONS(1884), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1886), 1, + sym__ternary_qmark, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 12, - sym__ternary_qmark, + ACTIONS(1902), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [19141] = 21, - ACTIONS(1567), 1, + [20269] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1788), 1, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, - anon_sym_CARET, - ACTIONS(1800), 1, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1830), 1, + ACTIONS(1870), 1, + anon_sym_AMP_AMP, + ACTIONS(1872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1874), 1, + anon_sym_AMP, + ACTIONS(1876), 1, + anon_sym_CARET, + ACTIONS(1878), 1, anon_sym_PIPE, - STATE(637), 1, + ACTIONS(1884), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1886), 1, + sym__ternary_qmark, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 11, - sym__ternary_qmark, + ACTIONS(1904), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [19226] = 12, - ACTIONS(1567), 1, + [20361] = 8, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - STATE(637), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1629), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1830), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -61291,48 +64011,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 19, + ACTIONS(1631), 22, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19293] = 10, - ACTIONS(1567), 1, + [20419] = 4, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1799), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1801), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, - ACTIONS(1569), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1802), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - STATE(637), 1, - sym_arguments, + 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, + [20469] = 6, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(832), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(786), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(826), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(828), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + 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(1830), 12, + anon_sym_BQUOTE, + [20523] = 4, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(826), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61345,166 +64150,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 20, + ACTIONS(828), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19356] = 17, - ACTIONS(1567), 1, + [20573] = 9, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - STATE(637), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1639), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1830), 4, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 14, + ACTIONS(1641), 20, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, - [19433] = 23, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(1569), 1, + [20633] = 8, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1896), 1, sym_optional_chain, - ACTIONS(1784), 1, - anon_sym_AMP_AMP, - ACTIONS(1786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, - anon_sym_CARET, - ACTIONS(1796), 1, - anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - STATE(637), 1, - sym_arguments, + STATE(758), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1635), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1798), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1637), 22, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + 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, - ACTIONS(1782), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [20691] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1700), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1828), 9, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1702), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19522] = 7, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1818), 1, - anon_sym_LPAREN, - STATE(700), 1, - sym_arguments, - STATE(758), 1, - sym_template_string, + [20739] = 5, + ACTIONS(790), 1, + sym__automatic_semicolon, + ACTIONS(830), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1563), 12, + ACTIONS(788), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61517,12 +64344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1565), 24, - sym__automatic_semicolon, + ACTIONS(786), 25, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -61542,7 +64369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [19579] = 5, + anon_sym_BQUOTE, + [20791] = 5, ACTIONS(83), 1, anon_sym_BQUOTE, STATE(758), 1, @@ -61550,7 +64378,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1577), 12, + ACTIONS(1635), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61563,7 +64391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1579), 25, + ACTIONS(1637), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61589,13 +64417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [19631] = 4, - ACTIONS(1644), 1, + [20843] = 4, + ACTIONS(1458), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1637), 12, + ACTIONS(1454), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61608,7 +64436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1639), 26, + ACTIONS(1456), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61635,15 +64463,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19681] = 5, - ACTIONS(712), 1, - sym__automatic_semicolon, - ACTIONS(718), 1, + [20893] = 4, + ACTIONS(1698), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(710), 12, + ACTIONS(1691), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61656,7 +64482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(708), 25, + ACTIONS(1693), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -61682,13 +64509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19733] = 4, - ACTIONS(1729), 1, - anon_sym_EQ, + [20943] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1722), 12, + ACTIONS(1820), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61701,7 +64526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1724), 26, + ACTIONS(1822), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61709,6 +64534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61728,21 +64554,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19783] = 8, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1820), 1, + [20991] = 9, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1824), 1, + ACTIONS(1906), 1, sym_optional_chain, - STATE(758), 1, - sym_template_string, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1577), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1645), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61755,13 +64584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1579), 22, + ACTIONS(1647), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61776,13 +64604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [19841] = 3, + anon_sym_BQUOTE, + [21051] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1678), 12, + ACTIONS(1724), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61795,7 +64622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1680), 27, + ACTIONS(1726), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61803,7 +64630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61823,13 +64649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19889] = 4, - ACTIONS(1459), 1, - anon_sym_EQ, + [21098] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1426), 12, + ACTIONS(878), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61842,7 +64666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 26, + ACTIONS(880), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61869,11 +64693,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19939] = 3, + [21145] = 25, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1914), 1, + anon_sym_AMP_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1918), 1, + anon_sym_GT_GT, + ACTIONS(1922), 1, + anon_sym_AMP, + ACTIONS(1924), 1, + anon_sym_CARET, + ACTIONS(1926), 1, + anon_sym_PIPE, + ACTIONS(1930), 1, + anon_sym_PERCENT, + ACTIONS(1932), 1, + anon_sym_STAR_STAR, + ACTIONS(1940), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1942), 1, + sym__ternary_qmark, + STATE(717), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1920), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1928), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1936), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1938), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1912), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1934), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1888), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [21236] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 12, + ACTIONS(1704), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61886,7 +64776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 27, + ACTIONS(1706), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61894,7 +64784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61914,88 +64803,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19987] = 25, - ACTIONS(1567), 1, + [21283] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1800), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1920), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1928), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1936), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1938), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1912), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1934), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1706), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [21374] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(898), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(900), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + anon_sym_BQUOTE, + [21421] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1712), 12, anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1790), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1714), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + 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, + [21468] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1767), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1769), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21515] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1755), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1757), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1836), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [20079] = 8, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - STATE(797), 1, - sym_arguments, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21562] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1595), 12, + ACTIONS(1836), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62008,13 +65062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1597), 22, + ACTIONS(1838), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -62031,24 +65089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20137] = 9, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - STATE(797), 1, - sym_arguments, + [21609] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1583), 12, + ACTIONS(1775), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62061,13 +65106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1585), 20, + ACTIONS(1777), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -62081,19 +65130,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20197] = 6, - ACTIONS(718), 1, + [21656] = 5, + ACTIONS(1570), 1, anon_sym_EQ, - ACTIONS(720), 1, - sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(708), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(714), 12, + ACTIONS(1568), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1454), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62106,11 +65157,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(716), 23, + ACTIONS(1456), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -62130,13 +65179,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20251] = 4, - ACTIONS(718), 1, - anon_sym_EQ, + [21707] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(714), 12, + ACTIONS(1679), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62149,7 +65196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(716), 26, + ACTIONS(1681), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -62176,24 +65223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20301] = 9, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - STATE(797), 1, - sym_arguments, + [21754] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1591), 12, + ACTIONS(1783), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62206,13 +65240,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1593), 20, + ACTIONS(1785), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -62226,78 +65264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [20361] = 25, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1846), 1, - anon_sym_AMP_AMP, - ACTIONS(1848), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, - anon_sym_CARET, - ACTIONS(1858), 1, - anon_sym_PIPE, - ACTIONS(1862), 1, - anon_sym_PERCENT, - ACTIONS(1864), 1, - anon_sym_STAR_STAR, - ACTIONS(1872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1874), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1842), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1826), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, anon_sym_BQUOTE, - [20452] = 3, + [21801] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1690), 12, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62310,7 +65284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1692), 26, + ACTIONS(1765), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -62337,77 +65311,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20499] = 25, - ACTIONS(1818), 1, + [21848] = 5, + ACTIONS(1458), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1558), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1454), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1456), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1858), 1, - anon_sym_PIPE, - ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1874), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1870), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1780), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20590] = 3, + [21899] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1611), 12, + ACTIONS(1812), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62420,7 +65374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1613), 26, + ACTIONS(1814), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -62447,11 +65401,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20637] = 3, + [21946] = 4, + ACTIONS(1562), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1615), 12, + ACTIONS(1454), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62464,12 +65420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1617), 26, + ACTIONS(1456), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -62491,13 +65446,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20684] = 4, - ACTIONS(1876), 1, - sym_regex_flags, + [21995] = 5, + ACTIONS(872), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1619), 13, + ACTIONS(864), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(868), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62510,12 +65468,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1621), 24, - sym__automatic_semicolon, + ACTIONS(870), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -62533,19 +65488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20733] = 5, - ACTIONS(740), 1, - sym__automatic_semicolon, + [22046] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(732), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(736), 12, + ACTIONS(1832), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62558,9 +65509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(738), 23, + ACTIONS(1834), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -62582,148 +65536,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20784] = 25, - ACTIONS(1818), 1, + [22093] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1846), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1848), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1854), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1856), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1858), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1862), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1872), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1874), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1852), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1860), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1866), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1631), 5, + ACTIONS(1902), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [20875] = 15, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1862), 1, - anon_sym_PERCENT, - ACTIONS(1864), 1, - anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, + [22184] = 5, + ACTIONS(1555), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1830), 7, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1828), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1552), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [20946] = 10, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1864), 1, - anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1830), 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1454), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62736,30 +65626,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 18, - sym__automatic_semicolon, + ACTIONS(1456), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21007] = 3, + [22235] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1625), 12, + ACTIONS(1635), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62772,7 +65665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1627), 26, + ACTIONS(1637), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -62799,393 +65692,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21054] = 21, - ACTIONS(1818), 1, + [22282] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, - anon_sym_CARET, - ACTIONS(1858), 1, - anon_sym_PIPE, - ACTIONS(1862), 1, - anon_sym_PERCENT, - ACTIONS(1864), 1, - anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1828), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1914), 1, anon_sym_AMP_AMP, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [21137] = 22, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1846), 1, - anon_sym_AMP_AMP, - ACTIONS(1850), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1854), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1856), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1858), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1862), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - STATE(797), 1, + ACTIONS(1940), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1942), 1, + sym__ternary_qmark, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1852), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1860), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1866), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 8, + ACTIONS(1900), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [21222] = 13, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1862), 1, - anon_sym_PERCENT, - ACTIONS(1864), 1, - anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, + [22373] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(1787), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1860), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1830), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 17, + ACTIONS(1789), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21289] = 19, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1862), 1, - anon_sym_PERCENT, - ACTIONS(1864), 1, - anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, + [22420] = 5, + ACTIONS(892), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1830), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(884), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(888), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1828), 10, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [21368] = 20, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1830), 1, - anon_sym_PIPE, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1854), 1, anon_sym_AMP, - ACTIONS(1862), 1, - anon_sym_PERCENT, - ACTIONS(1864), 1, - anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1828), 10, - sym__automatic_semicolon, + ACTIONS(890), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [21449] = 21, - ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1830), 1, - anon_sym_PIPE, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, + 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, + [22471] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(1795), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1828), 9, + ACTIONS(1797), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [21532] = 12, - ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1862), 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(1864), 1, anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, + 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, + [22518] = 5, + ACTIONS(862), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(854), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(858), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1830), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -63194,46 +65911,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 17, - sym__automatic_semicolon, + ACTIONS(860), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21597] = 10, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1864), 1, - anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, + [22569] = 5, + ACTIONS(902), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1830), 12, + ACTIONS(894), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(898), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63246,350 +65960,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 18, - sym__automatic_semicolon, + ACTIONS(900), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21658] = 17, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1862), 1, - anon_sym_PERCENT, - ACTIONS(1864), 1, - anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, + [22620] = 5, + ACTIONS(916), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(908), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(912), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1830), 4, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 12, - sym__automatic_semicolon, + ACTIONS(914), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [21733] = 23, - ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1858), 1, - anon_sym_PIPE, - ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, + 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, + [22671] = 5, + ACTIONS(926), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(918), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(922), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1828), 7, - sym__automatic_semicolon, + ACTIONS(924), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [21820] = 25, - ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1858), 1, - anon_sym_PIPE, - ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1872), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1874), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [22722] = 5, + ACTIONS(936), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(928), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(932), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1834), 5, - sym__automatic_semicolon, + ACTIONS(934), 23, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_BQUOTE, - [21911] = 25, - ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1858), 1, - anon_sym_PIPE, - ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1872), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1874), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [22773] = 5, + ACTIONS(882), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(874), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(878), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1676), 5, - sym__automatic_semicolon, + ACTIONS(880), 23, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_BQUOTE, - [22002] = 25, - ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, - anon_sym_GT_GT, - ACTIONS(1890), 1, - anon_sym_AMP, - ACTIONS(1892), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1894), 1, - anon_sym_PIPE, - ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1878), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1888), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1904), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1906), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1902), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1826), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22093] = 3, + [22824] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1629), 12, + ACTIONS(1716), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63602,7 +66185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1631), 26, + ACTIONS(1718), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -63629,214 +66212,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22140] = 25, - ACTIONS(1818), 1, + [22871] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1816), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1818), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, - ACTIONS(1820), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1858), 1, - anon_sym_PIPE, - ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1872), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1874), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [22918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(1454), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1700), 5, + ACTIONS(1456), 26, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, - anon_sym_SEMI, - anon_sym_BQUOTE, - [22231] = 25, - ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1858), 1, - anon_sym_PIPE, - ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1872), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1874), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [22965] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(1844), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1708), 5, + ACTIONS(1846), 26, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, - anon_sym_SEMI, - anon_sym_BQUOTE, - [22322] = 25, - ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1858), 1, - anon_sym_PIPE, - ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1874), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1870), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1712), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22413] = 5, - ACTIONS(730), 1, - sym__automatic_semicolon, + [23012] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(722), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(726), 12, + ACTIONS(1657), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63849,9 +66361,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(728), 23, + ACTIONS(1659), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -63873,199 +66388,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22464] = 25, - ACTIONS(1818), 1, + [23059] = 4, + ACTIONS(1944), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1661), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + ACTIONS(1663), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1820), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, - anon_sym_GT_GT, - ACTIONS(1890), 1, - anon_sym_AMP, - ACTIONS(1892), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1894), 1, - anon_sym_PIPE, - ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23108] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1667), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1888), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1904), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1906), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1631), 5, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1669), 26, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [22555] = 15, - ACTIONS(1818), 1, + anon_sym_of, anon_sym_LPAREN, - ACTIONS(1820), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1886), 1, - anon_sym_GT_GT, - ACTIONS(1898), 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(1900), 1, anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, + 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, + [23155] = 4, + ACTIONS(1944), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1661), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1888), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1830), 7, + anon_sym_of, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 15, + anon_sym_instanceof, + ACTIONS(1663), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22626] = 25, - ACTIONS(1818), 1, + [23204] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1846), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1848), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1854), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1856), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1858), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1862), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1872), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1874), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1852), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1860), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1866), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1814), 5, + ACTIONS(1898), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [22717] = 3, + [23295] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1633), 12, + ACTIONS(1671), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64078,7 +66605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1635), 26, + ACTIONS(1673), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -64105,130 +66632,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22764] = 25, - ACTIONS(1818), 1, + [23342] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1716), 5, + ACTIONS(1673), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [22855] = 5, - ACTIONS(1644), 1, - anon_sym_EQ, + [23433] = 15, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1918), 1, + anon_sym_GT_GT, + ACTIONS(1930), 1, + anon_sym_PERCENT, + ACTIONS(1932), 1, + anon_sym_STAR_STAR, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1912), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1637), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1920), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1928), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1858), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1639), 21, + ACTIONS(1850), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22906] = 5, - ACTIONS(1729), 1, + [23504] = 5, + ACTIONS(1698), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1914), 4, + ACTIONS(1946), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1722), 12, + ACTIONS(1691), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64241,7 +66778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1724), 21, + ACTIONS(1693), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -64263,11 +66800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22957] = 3, + [23555] = 5, + ACTIONS(1806), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1646), 12, + ACTIONS(1948), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1799), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64280,14 +66824,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1648), 26, - sym__automatic_semicolon, + ACTIONS(1801), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -64307,18 +66846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23004] = 5, - ACTIONS(718), 1, + [23606] = 5, + ACTIONS(830), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1916), 4, + ACTIONS(1950), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(714), 12, + ACTIONS(826), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64331,7 +66870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(716), 21, + ACTIONS(828), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -64353,11 +66892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23055] = 3, + [23657] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1686), 12, + ACTIONS(1675), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64370,7 +66909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1688), 26, + ACTIONS(1677), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -64397,11 +66936,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23102] = 3, + [23704] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1774), 12, + ACTIONS(1755), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64414,7 +66953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1776), 26, + ACTIONS(1757), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -64441,11 +66980,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23149] = 3, + [23751] = 10, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1932), 1, + anon_sym_STAR_STAR, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(756), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64458,259 +67012,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(758), 26, + ACTIONS(1850), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23196] = 3, + [23812] = 21, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1918), 1, + anon_sym_GT_GT, + ACTIONS(1922), 1, + anon_sym_AMP, + ACTIONS(1924), 1, + anon_sym_CARET, + ACTIONS(1926), 1, + anon_sym_PIPE, + ACTIONS(1930), 1, + anon_sym_PERCENT, + ACTIONS(1932), 1, + anon_sym_STAR_STAR, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1714), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1920), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1716), 26, + ACTIONS(1938), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1912), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1934), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1850), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [23895] = 22, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DOT, + ACTIONS(1906), 1, sym_optional_chain, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1918), 1, + anon_sym_GT_GT, + ACTIONS(1922), 1, + anon_sym_AMP, + ACTIONS(1924), 1, anon_sym_CARET, + ACTIONS(1926), 1, + anon_sym_PIPE, + ACTIONS(1930), 1, anon_sym_PERCENT, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23243] = 3, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1694), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1920), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 26, + ACTIONS(1938), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1912), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1934), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1850), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [23980] = 13, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DOT, + ACTIONS(1906), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1930), 1, anon_sym_PERCENT, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23290] = 3, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1739), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1928), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1858), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1741), 26, + ACTIONS(1850), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23337] = 3, + [24047] = 19, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1918), 1, + anon_sym_GT_GT, + ACTIONS(1930), 1, + anon_sym_PERCENT, + ACTIONS(1932), 1, + anon_sym_STAR_STAR, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1426), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1858), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1920), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 26, + ACTIONS(1938), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1912), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1934), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1850), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23384] = 3, + [24126] = 20, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1918), 1, + anon_sym_GT_GT, + ACTIONS(1922), 1, + anon_sym_AMP, + ACTIONS(1930), 1, + anon_sym_PERCENT, + ACTIONS(1932), 1, + anon_sym_STAR_STAR, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1920), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1749), 26, + ACTIONS(1938), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1912), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1934), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1850), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [24207] = 21, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(1892), 1, anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DOT, + ACTIONS(1906), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1918), 1, + anon_sym_GT_GT, + ACTIONS(1922), 1, + anon_sym_AMP, + ACTIONS(1924), 1, anon_sym_CARET, + ACTIONS(1930), 1, anon_sym_PERCENT, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(717), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1920), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1928), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1936), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1912), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1934), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1850), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [23431] = 3, + [24290] = 12, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1930), 1, + anon_sym_PERCENT, + ACTIONS(1932), 1, + anon_sym_STAR_STAR, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1710), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1858), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -64719,41 +67426,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1712), 26, + ACTIONS(1850), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23478] = 3, + [24355] = 10, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1932), 1, + anon_sym_STAR_STAR, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(776), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64766,38 +67478,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 26, + ACTIONS(1850), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23525] = 3, + [24416] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1650), 12, + ACTIONS(858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64810,7 +67514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1652), 26, + ACTIONS(860), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -64837,55 +67541,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23572] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1658), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1660), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, + [24463] = 23, + ACTIONS(1593), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1892), 1, anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DOT, + ACTIONS(1906), 1, sym_optional_chain, + ACTIONS(1914), 1, anon_sym_AMP_AMP, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1918), 1, + anon_sym_GT_GT, + ACTIONS(1922), 1, + anon_sym_AMP, + ACTIONS(1924), 1, anon_sym_CARET, + ACTIONS(1926), 1, + anon_sym_PIPE, + ACTIONS(1930), 1, anon_sym_PERCENT, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(717), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1920), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1928), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1936), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1912), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1934), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1850), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [23619] = 3, + [24550] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1577), 12, + ACTIONS(1649), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64898,7 +67622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1579), 26, + ACTIONS(1651), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -64925,11 +67649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23666] = 3, + [24597] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1735), 12, + ACTIONS(1720), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64942,7 +67666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1737), 26, + ACTIONS(1722), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -64969,11 +67693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23713] = 3, + [24644] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1682), 12, + ACTIONS(888), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64986,7 +67710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1684), 26, + ACTIONS(890), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -65013,62 +67737,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23760] = 10, - ACTIONS(1818), 1, + [24691] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1900), 1, + ACTIONS(1914), 1, + anon_sym_AMP_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1918), 1, + anon_sym_GT_GT, + ACTIONS(1922), 1, + anon_sym_AMP, + ACTIONS(1924), 1, + anon_sym_CARET, + ACTIONS(1926), 1, + anon_sym_PIPE, + ACTIONS(1930), 1, + anon_sym_PERCENT, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - STATE(797), 1, + ACTIONS(1940), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1942), 1, + sym__ternary_qmark, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1830), 12, + ACTIONS(1910), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1920), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1912), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1934), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(1890), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - [23821] = 3, + [24782] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1759), 12, + ACTIONS(1728), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -65081,7 +67820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1761), 26, + ACTIONS(1730), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -65108,78 +67847,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23868] = 21, - ACTIONS(1818), 1, + [24829] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1886), 1, + ACTIONS(1914), 1, + anon_sym_AMP_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - STATE(797), 1, + ACTIONS(1940), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1942), 1, + sym__ternary_qmark, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 9, + ACTIONS(1730), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [23951] = 5, - ACTIONS(750), 1, - sym__automatic_semicolon, + [24920] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(742), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(746), 12, + ACTIONS(1732), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -65192,9 +67930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(748), 23, + ACTIONS(1734), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -65216,74 +67957,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24002] = 22, - ACTIONS(1818), 1, + [24967] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1886), 1, + ACTIONS(1916), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - STATE(797), 1, + ACTIONS(1940), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1942), 1, + sym__ternary_qmark, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 8, + ACTIONS(1868), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [24087] = 3, + [25058] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(786), 12, + ACTIONS(912), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -65296,7 +68040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(788), 26, + ACTIONS(914), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -65323,11 +68067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24134] = 3, + [25105] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(796), 12, + ACTIONS(1736), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -65340,7 +68084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(798), 26, + ACTIONS(1738), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -65367,65 +68111,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24181] = 13, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1898), 1, - anon_sym_PERCENT, - ACTIONS(1900), 1, - anon_sym_STAR_STAR, - STATE(797), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1878), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1830), 8, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1828), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_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_BQUOTE, - [24248] = 3, + [25152] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1694), 12, + ACTIONS(1740), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -65438,7 +68128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 26, + ACTIONS(1742), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -65465,55 +68155,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24295] = 3, + [25199] = 25, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1956), 1, + anon_sym_AMP_AMP, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, + anon_sym_GT_GT, + ACTIONS(1964), 1, + anon_sym_AMP, + ACTIONS(1966), 1, + anon_sym_CARET, + ACTIONS(1968), 1, + anon_sym_PIPE, + ACTIONS(1972), 1, + anon_sym_PERCENT, + ACTIONS(1974), 1, + anon_sym_STAR_STAR, + ACTIONS(1982), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1984), 1, + sym__ternary_qmark, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1654), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1962), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1656), 26, + ACTIONS(1980), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1954), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1976), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1888), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_BQUOTE, + [25290] = 25, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DOT, + ACTIONS(1906), 1, sym_optional_chain, + ACTIONS(1956), 1, anon_sym_AMP_AMP, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1960), 1, + anon_sym_GT_GT, + ACTIONS(1964), 1, + anon_sym_AMP, + ACTIONS(1966), 1, anon_sym_CARET, + ACTIONS(1968), 1, + anon_sym_PIPE, + ACTIONS(1972), 1, anon_sym_PERCENT, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1982), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1984), 1, + sym__ternary_qmark, + STATE(717), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1962), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1978), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1980), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1954), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1976), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1706), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, anon_sym_BQUOTE, - [24342] = 3, + [25381] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1698), 12, + ACTIONS(922), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -65526,7 +68304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1700), 26, + ACTIONS(924), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -65553,78 +68331,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24389] = 19, - ACTIONS(1818), 1, + [25428] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1886), 1, + ACTIONS(1956), 1, + anon_sym_AMP_AMP, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, anon_sym_GT_GT, - ACTIONS(1898), 1, + ACTIONS(1964), 1, + anon_sym_AMP, + ACTIONS(1966), 1, + anon_sym_CARET, + ACTIONS(1968), 1, + anon_sym_PIPE, + ACTIONS(1972), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - STATE(797), 1, + ACTIONS(1982), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1984), 1, + sym__ternary_qmark, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1830), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1952), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1962), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1980), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1954), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1976), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 10, + ACTIONS(1900), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [24468] = 5, - ACTIONS(1459), 1, - anon_sym_EQ, + [25519] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1426), 12, + ACTIONS(868), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -65637,9 +68414,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 21, + ACTIONS(870), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -65659,321 +68441,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24519] = 25, - ACTIONS(1818), 1, + [25566] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1956), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1960), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1964), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1966), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1968), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1972), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1982), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1984), 1, sym__ternary_qmark, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1952), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1962), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1980), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1954), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1976), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1780), 5, + ACTIONS(1898), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_BQUOTE, - [24610] = 20, - ACTIONS(1818), 1, + [25657] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1830), 1, - anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1886), 1, + ACTIONS(1956), 1, + anon_sym_AMP_AMP, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1964), 1, anon_sym_AMP, - ACTIONS(1898), 1, + ACTIONS(1966), 1, + anon_sym_CARET, + ACTIONS(1968), 1, + anon_sym_PIPE, + ACTIONS(1972), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - STATE(797), 1, + ACTIONS(1982), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1984), 1, + sym__ternary_qmark, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1952), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1962), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1980), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1954), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1976), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 10, + ACTIONS(1673), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [24691] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1718), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1720), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, + [25748] = 15, + ACTIONS(1593), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1892), 1, anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DOT, + ACTIONS(1906), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1960), 1, + anon_sym_GT_GT, + ACTIONS(1972), 1, anon_sym_PERCENT, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24738] = 5, - ACTIONS(1532), 1, - anon_sym_EQ, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1530), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1426), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1962), 2, 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, - [24789] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(766), 12, - anon_sym_STAR, + ACTIONS(1970), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1858), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(768), 26, + ACTIONS(1850), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24836] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1770), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1772), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, + [25819] = 10, + ACTIONS(1593), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1892), 1, anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DOT, + ACTIONS(1906), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24883] = 5, - ACTIONS(780), 1, - sym__automatic_semicolon, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(772), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(776), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -65986,406 +68661,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(778), 23, + ACTIONS(1850), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_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, - [24934] = 25, - ACTIONS(1818), 1, + [25880] = 21, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, - anon_sym_AMP_AMP, - ACTIONS(1884), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1960), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1964), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1966), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1968), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1972), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, - sym__ternary_qmark, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1952), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1962), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1980), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1954), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1976), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1814), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [25025] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1603), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1605), 26, + ACTIONS(1850), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25072] = 4, - ACTIONS(1528), 1, - anon_sym_EQ, + [25963] = 22, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1956), 1, + anon_sym_AMP_AMP, + ACTIONS(1960), 1, + anon_sym_GT_GT, + ACTIONS(1964), 1, + anon_sym_AMP, + ACTIONS(1966), 1, + anon_sym_CARET, + ACTIONS(1968), 1, + anon_sym_PIPE, + ACTIONS(1972), 1, + anon_sym_PERCENT, + ACTIONS(1974), 1, + anon_sym_STAR_STAR, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1426), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1962), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 25, + ACTIONS(1980), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1954), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1976), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1850), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [26048] = 13, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DOT, + ACTIONS(1906), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1972), 1, anon_sym_PERCENT, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25121] = 3, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(736), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1970), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1858), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(738), 26, + ACTIONS(1850), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25168] = 3, + [26115] = 19, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1960), 1, + anon_sym_GT_GT, + ACTIONS(1972), 1, + anon_sym_PERCENT, + ACTIONS(1974), 1, + anon_sym_STAR_STAR, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(746), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1858), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1962), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(748), 26, + ACTIONS(1980), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1954), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1976), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1850), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25215] = 5, - ACTIONS(760), 1, - sym__automatic_semicolon, + [26194] = 20, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1960), 1, + anon_sym_GT_GT, + ACTIONS(1964), 1, + anon_sym_AMP, + ACTIONS(1972), 1, + anon_sym_PERCENT, + ACTIONS(1974), 1, + anon_sym_STAR_STAR, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(752), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(756), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1962), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(758), 23, + ACTIONS(1980), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1954), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1976), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1850), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_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, - [25266] = 21, - ACTIONS(1818), 1, + [26275] = 21, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1830), 1, - anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1886), 1, + ACTIONS(1960), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1964), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1966), 1, anon_sym_CARET, - ACTIONS(1898), 1, + ACTIONS(1972), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1952), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1962), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1980), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1954), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1976), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 9, + ACTIONS(1850), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [25349] = 12, - ACTIONS(1818), 1, + [26358] = 12, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1898), 1, + ACTIONS(1972), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1952), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1830), 10, + ACTIONS(1858), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -66396,11 +69077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 17, + ACTIONS(1850), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66414,26 +69095,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [25414] = 10, - ACTIONS(1818), 1, + [26423] = 10, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1900), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1830), 12, + ACTIONS(1858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -66446,11 +69127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 18, + ACTIONS(1850), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66465,56 +69146,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [25475] = 17, - ACTIONS(1818), 1, + [26484] = 17, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1886), 1, + ACTIONS(1960), 1, anon_sym_GT_GT, - ACTIONS(1898), 1, + ACTIONS(1972), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1952), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1962), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1880), 3, + ACTIONS(1954), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1976), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1830), 4, + ACTIONS(1858), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 12, + ACTIONS(1850), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66523,209 +69204,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [25550] = 3, + [26559] = 23, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1956), 1, + anon_sym_AMP_AMP, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, + anon_sym_GT_GT, + ACTIONS(1964), 1, + anon_sym_AMP, + ACTIONS(1966), 1, + anon_sym_CARET, + ACTIONS(1968), 1, + anon_sym_PIPE, + ACTIONS(1972), 1, + anon_sym_PERCENT, + ACTIONS(1974), 1, + anon_sym_STAR_STAR, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1702), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1962), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1704), 26, + ACTIONS(1980), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1954), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1976), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1850), 7, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [26646] = 25, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DOT, + ACTIONS(1906), 1, sym_optional_chain, + ACTIONS(1956), 1, anon_sym_AMP_AMP, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1960), 1, + anon_sym_GT_GT, + ACTIONS(1964), 1, + anon_sym_AMP, + ACTIONS(1966), 1, anon_sym_CARET, + ACTIONS(1968), 1, + anon_sym_PIPE, + ACTIONS(1972), 1, anon_sym_PERCENT, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1982), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1984), 1, + sym__ternary_qmark, + STATE(717), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1962), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1978), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1980), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1954), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1976), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1890), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, anon_sym_BQUOTE, - [25597] = 23, - ACTIONS(1818), 1, + [26737] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1956), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1960), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1964), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1966), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1968), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1972), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - STATE(797), 1, + ACTIONS(1982), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1984), 1, + sym__ternary_qmark, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1952), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1962), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1980), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1954), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1976), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 7, + ACTIONS(1730), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [25684] = 3, + [26828] = 25, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1956), 1, + anon_sym_AMP_AMP, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, + anon_sym_GT_GT, + ACTIONS(1964), 1, + anon_sym_AMP, + ACTIONS(1966), 1, + anon_sym_CARET, + ACTIONS(1968), 1, + anon_sym_PIPE, + ACTIONS(1972), 1, + anon_sym_PERCENT, + ACTIONS(1974), 1, + anon_sym_STAR_STAR, + ACTIONS(1982), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1984), 1, + sym__ternary_qmark, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1694), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1962), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 26, + ACTIONS(1980), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1954), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1976), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1761), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_BQUOTE, + [26919] = 25, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DOT, + ACTIONS(1906), 1, sym_optional_chain, + ACTIONS(1956), 1, anon_sym_AMP_AMP, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1960), 1, + anon_sym_GT_GT, + ACTIONS(1964), 1, + anon_sym_AMP, + ACTIONS(1966), 1, anon_sym_CARET, + ACTIONS(1968), 1, + anon_sym_PIPE, + ACTIONS(1972), 1, anon_sym_PERCENT, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1982), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25731] = 5, - ACTIONS(790), 1, - sym__automatic_semicolon, + ACTIONS(1984), 1, + sym__ternary_qmark, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(782), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(786), 12, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1962), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1978), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1980), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1954), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1976), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1781), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [27010] = 25, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1956), 1, + anon_sym_AMP_AMP, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, anon_sym_GT_GT, + ACTIONS(1964), 1, anon_sym_AMP, + ACTIONS(1966), 1, + anon_sym_CARET, + ACTIONS(1968), 1, anon_sym_PIPE, + ACTIONS(1972), 1, + anon_sym_PERCENT, + ACTIONS(1974), 1, + anon_sym_STAR_STAR, + ACTIONS(1982), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1984), 1, + sym__ternary_qmark, + STATE(717), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1962), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(788), 23, - sym__ternary_qmark, + ACTIONS(1980), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1954), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1976), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1793), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_BQUOTE, + [27101] = 25, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DOT, + ACTIONS(1906), 1, sym_optional_chain, + ACTIONS(1956), 1, anon_sym_AMP_AMP, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1960), 1, + anon_sym_GT_GT, + ACTIONS(1964), 1, + anon_sym_AMP, + ACTIONS(1966), 1, anon_sym_CARET, + ACTIONS(1968), 1, + anon_sym_PIPE, + ACTIONS(1972), 1, anon_sym_PERCENT, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1982), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1984), 1, + sym__ternary_qmark, + STATE(717), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1952), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1962), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1978), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1980), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1954), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1976), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1902), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, anon_sym_BQUOTE, - [25782] = 3, + [27192] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1607), 12, + ACTIONS(1687), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -66738,7 +69681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1609), 26, + ACTIONS(1689), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -66765,11 +69708,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25829] = 3, + [27239] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1662), 12, + ACTIONS(1744), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -66782,7 +69725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 26, + ACTIONS(1746), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -66809,11 +69752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25876] = 3, + [27286] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1694), 12, + ACTIONS(1748), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -66826,7 +69769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1696), 26, + ACTIONS(1750), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -66853,11 +69796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25923] = 3, + [27333] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(726), 12, + ACTIONS(1748), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -66870,7 +69813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(728), 26, + ACTIONS(1750), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -66897,77 +69840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25970] = 25, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1882), 1, - anon_sym_AMP_AMP, - ACTIONS(1884), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, - anon_sym_GT_GT, - ACTIONS(1890), 1, - anon_sym_AMP, - ACTIONS(1892), 1, - anon_sym_CARET, - ACTIONS(1894), 1, - anon_sym_PIPE, - ACTIONS(1898), 1, - anon_sym_PERCENT, - ACTIONS(1900), 1, - anon_sym_STAR_STAR, - ACTIONS(1908), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1878), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1888), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1904), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1906), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1902), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1816), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26061] = 3, + [27380] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1666), 12, + ACTIONS(1748), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -66980,7 +69857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 26, + ACTIONS(1750), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -67007,11 +69884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26108] = 3, + [27427] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 12, + ACTIONS(1748), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -67024,7 +69901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 26, + ACTIONS(1750), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -67051,11 +69928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26155] = 3, + [27474] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1670), 12, + ACTIONS(1759), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -67068,7 +69945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 26, + ACTIONS(1761), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -67095,145 +69972,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26202] = 25, - ACTIONS(1818), 1, + [27521] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1882), 1, - anon_sym_AMP_AMP, - ACTIONS(1884), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, - anon_sym_GT_GT, - ACTIONS(1890), 1, - anon_sym_AMP, ACTIONS(1892), 1, - anon_sym_CARET, - ACTIONS(1894), 1, - anon_sym_PIPE, - ACTIONS(1898), 1, - anon_sym_PERCENT, - ACTIONS(1900), 1, - anon_sym_STAR_STAR, - ACTIONS(1908), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1878), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1888), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1904), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1906), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1902), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1834), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26293] = 25, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1700), 5, + ACTIONS(1761), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [26384] = 4, - ACTIONS(1524), 1, - anon_sym_EQ, + [27612] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1426), 12, + ACTIONS(1771), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -67246,10 +70055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 25, + ACTIONS(1773), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, @@ -67272,11 +70082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26433] = 3, + [27659] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1706), 12, + ACTIONS(1779), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -67289,7 +70099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1708), 26, + ACTIONS(1781), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -67316,15 +70126,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26480] = 4, - ACTIONS(1876), 1, - sym_regex_flags, + [27706] = 25, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1914), 1, + anon_sym_AMP_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1918), 1, + anon_sym_GT_GT, + ACTIONS(1922), 1, + anon_sym_AMP, + ACTIONS(1924), 1, + anon_sym_CARET, + ACTIONS(1926), 1, + anon_sym_PIPE, + ACTIONS(1930), 1, + anon_sym_PERCENT, + ACTIONS(1932), 1, + anon_sym_STAR_STAR, + ACTIONS(1940), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1942), 1, + sym__ternary_qmark, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1619), 14, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1920), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1928), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1936), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1938), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1912), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1934), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1781), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [27797] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1791), 12, anon_sym_STAR, - anon_sym_of, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -67336,11 +70209,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1621), 23, + ACTIONS(1793), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -67358,80 +70232,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26529] = 25, - ACTIONS(1818), 1, + [27844] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1846), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1848), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1854), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1856), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1858), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1862), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1872), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1874), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1852), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1860), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1866), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1832), 5, + ACTIONS(1793), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [26620] = 3, + [27935] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1654), 12, + ACTIONS(1808), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -67444,7 +70319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1656), 26, + ACTIONS(1810), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -67471,16 +70346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26667] = 5, - ACTIONS(770), 1, - sym__automatic_semicolon, + [27982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(762), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(766), 12, + ACTIONS(932), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -67493,9 +70363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(768), 23, + ACTIONS(934), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -67517,16 +70390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26718] = 5, - ACTIONS(800), 1, - sym__automatic_semicolon, + [28029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(792), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(796), 12, + ACTIONS(1828), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -67539,9 +70407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(798), 23, + ACTIONS(1830), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -67563,11 +70434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26769] = 3, + [28076] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1743), 12, + ACTIONS(1840), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -67580,7 +70451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 26, + ACTIONS(1842), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -67607,11 +70478,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26816] = 3, + [28123] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 12, + ACTIONS(1653), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -67624,7 +70495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 26, + ACTIONS(1655), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -67651,150 +70522,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26863] = 25, - ACTIONS(1818), 1, + [28170] = 4, + ACTIONS(1566), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1454), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1456), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, anon_sym_LPAREN, - ACTIONS(1820), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, - anon_sym_GT_GT, - ACTIONS(1890), 1, - anon_sym_AMP, - ACTIONS(1892), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1894), 1, - anon_sym_PIPE, - ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1878), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1888), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1904), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1906), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1902), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1832), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26954] = 25, - ACTIONS(1818), 1, + [28219] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1956), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1960), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1964), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1966), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1968), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1972), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1982), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1984), 1, sym__ternary_qmark, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1952), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1962), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1980), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1954), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1976), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1676), 5, + ACTIONS(1868), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_BQUOTE, - [27045] = 5, - ACTIONS(1540), 1, - anon_sym_EQ, + [28310] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1537), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1426), 12, + ACTIONS(1708), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -67807,46 +70650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27096] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1599), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1601), 26, + ACTIONS(1710), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -67873,77 +70677,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27143] = 25, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1882), 1, - anon_sym_AMP_AMP, - ACTIONS(1884), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, - anon_sym_GT_GT, - ACTIONS(1890), 1, - anon_sym_AMP, - ACTIONS(1892), 1, - anon_sym_CARET, - ACTIONS(1894), 1, - anon_sym_PIPE, - ACTIONS(1898), 1, - anon_sym_PERCENT, - ACTIONS(1900), 1, - anon_sym_STAR_STAR, - ACTIONS(1908), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, + [28357] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1824), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1888), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1896), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1902), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1708), 5, + ACTIONS(1826), 26, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27234] = 3, + [28404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1763), 12, + ACTIONS(1683), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -67956,7 +70738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1765), 26, + ACTIONS(1685), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -67983,145 +70765,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27281] = 25, - ACTIONS(1818), 1, + [28451] = 17, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1846), 1, - anon_sym_AMP_AMP, - ACTIONS(1848), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, - anon_sym_CARET, - ACTIONS(1858), 1, - anon_sym_PIPE, - ACTIONS(1862), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1864), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1874), 1, - sym__ternary_qmark, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1852), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1860), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1866), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1816), 5, + ACTIONS(1858), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1850), 12, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [27372] = 25, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, - anon_sym_GT_GT, - ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, anon_sym_CARET, - ACTIONS(1858), 1, - anon_sym_PIPE, - ACTIONS(1862), 1, - anon_sym_PERCENT, - ACTIONS(1864), 1, - anon_sym_STAR_STAR, - ACTIONS(1872), 1, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1874), 1, - sym__ternary_qmark, - STATE(797), 1, - sym_arguments, + anon_sym_BQUOTE, + [28526] = 5, + ACTIONS(1500), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(1573), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1454), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1852), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1860), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1456), 21, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1844), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1866), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1716), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27463] = 3, + [28576] = 6, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(1950), 1, + anon_sym_of, + ACTIONS(1986), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 12, + ACTIONS(826), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -68132,12 +70890,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 26, - sym__automatic_semicolon, + ACTIONS(828), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -68159,83 +70914,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27510] = 25, - ACTIONS(1818), 1, + [28628] = 27, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - STATE(797), 1, + ACTIONS(1989), 1, + anon_sym_COMMA, + STATE(717), 1, sym_arguments, + STATE(1408), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1991), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1712), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [27601] = 6, - ACTIONS(718), 1, + [28722] = 6, + ACTIONS(1500), 1, anon_sym_EQ, - ACTIONS(1916), 1, + ACTIONS(1578), 1, anon_sym_of, - ACTIONS(1918), 1, + ACTIONS(1580), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(714), 11, + ACTIONS(1454), 11, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -68247,7 +71003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(716), 23, + ACTIONS(1456), 23, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -68271,149 +71027,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27653] = 27, - ACTIONS(1818), 1, + [28774] = 27, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - ACTIONS(1921), 1, + ACTIONS(1989), 1, anon_sym_COMMA, - ACTIONS(1924), 1, - anon_sym_RBRACE, - STATE(797), 1, + STATE(717), 1, sym_arguments, + STATE(1408), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1826), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1993), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27747] = 27, - ACTIONS(1818), 1, + [28868] = 27, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - ACTIONS(1924), 1, - anon_sym_RBRACE, - ACTIONS(1926), 1, + ACTIONS(1989), 1, anon_sym_COMMA, - STATE(797), 1, + STATE(717), 1, sym_arguments, + STATE(1408), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1816), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1995), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27841] = 5, - ACTIONS(1929), 1, + [28962] = 5, + ACTIONS(1997), 1, anon_sym_LPAREN, - ACTIONS(1932), 1, + ACTIONS(2000), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1426), 12, + ACTIONS(1454), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -68426,7 +71182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 23, + ACTIONS(1456), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -68450,221 +71206,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27891] = 5, - ACTIONS(1934), 1, + [29012] = 27, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1937), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1770), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1772), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(1892), 1, anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DOT, + ACTIONS(1906), 1, sym_optional_chain, + ACTIONS(1914), 1, anon_sym_AMP_AMP, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1918), 1, + anon_sym_GT_GT, + ACTIONS(1922), 1, + anon_sym_AMP, + ACTIONS(1924), 1, anon_sym_CARET, + ACTIONS(1926), 1, + anon_sym_PIPE, + ACTIONS(1930), 1, anon_sym_PERCENT, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27941] = 6, - ACTIONS(1644), 1, - anon_sym_EQ, - ACTIONS(1912), 1, - anon_sym_of, - ACTIONS(1939), 1, - anon_sym_in, + ACTIONS(1942), 1, + sym__ternary_qmark, + ACTIONS(2002), 1, + anon_sym_COMMA, + ACTIONS(2005), 1, + anon_sym_RBRACE, + STATE(717), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1637), 11, + ACTIONS(1888), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1910), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1920), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1639), 23, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1912), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1934), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27993] = 27, - ACTIONS(1818), 1, + [29106] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, - anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1898), 1, - anon_sym_PERCENT, - ACTIONS(1900), 1, - anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1942), 1, - anon_sym_COMMA, - STATE(797), 1, + STATE(658), 1, sym_arguments, - STATE(1379), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1944), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1880), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28087] = 5, - ACTIONS(1465), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1547), 3, + ACTIONS(2007), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1426), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 21, - sym__ternary_qmark, + [29196] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, + ACTIONS(1615), 1, anon_sym_LBRACK, + ACTIONS(1617), 1, anon_sym_DOT, + ACTIONS(1633), 1, sym_optional_chain, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, + ACTIONS(1874), 1, + anon_sym_AMP, + ACTIONS(1876), 1, + anon_sym_CARET, + ACTIONS(1878), 1, + anon_sym_PIPE, + ACTIONS(1884), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1886), 1, + sym__ternary_qmark, + STATE(658), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1860), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1880), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1852), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28137] = 6, - ACTIONS(1729), 1, - anon_sym_EQ, - ACTIONS(1914), 1, - anon_sym_of, - ACTIONS(1946), 1, - anon_sym_in, + ACTIONS(2009), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [29286] = 5, + ACTIONS(2011), 1, + anon_sym_LPAREN, + ACTIONS(2014), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1722), 11, + ACTIONS(1787), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -68675,10 +71424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1724), 23, + ACTIONS(1789), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -68699,415 +71448,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28189] = 27, - ACTIONS(1818), 1, + [29336] = 27, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - ACTIONS(1949), 1, - anon_sym_COMMA, - ACTIONS(1952), 1, + ACTIONS(2005), 1, anon_sym_RBRACE, - STATE(797), 1, + ACTIONS(2016), 1, + anon_sym_COMMA, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1826), 2, + ACTIONS(1898), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28283] = 27, - ACTIONS(1818), 1, + [29430] = 27, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, - sym__ternary_qmark, ACTIONS(1942), 1, + sym__ternary_qmark, + ACTIONS(2019), 1, anon_sym_COMMA, - STATE(797), 1, + ACTIONS(2022), 1, + anon_sym_RBRACE, + STATE(717), 1, sym_arguments, - STATE(1379), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1898), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1954), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1880), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28377] = 27, - ACTIONS(1818), 1, + [29524] = 26, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1956), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1960), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1964), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1966), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1968), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1972), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1982), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1984), 1, sym__ternary_qmark, - ACTIONS(1942), 1, - anon_sym_COMMA, - STATE(797), 1, + ACTIONS(2026), 1, + anon_sym_in, + STATE(717), 1, sym_arguments, - STATE(1379), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1952), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1954), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1962), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1978), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1980), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1956), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1880), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1976), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28471] = 25, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(1569), 1, - anon_sym_LBRACK, - ACTIONS(1571), 1, - anon_sym_DOT, - ACTIONS(1587), 1, - sym_optional_chain, - ACTIONS(1784), 1, - anon_sym_AMP_AMP, - ACTIONS(1786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, - anon_sym_CARET, - ACTIONS(1796), 1, - anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - sym__ternary_qmark, - STATE(637), 1, - sym_arguments, + ACTIONS(2024), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [29616] = 6, + ACTIONS(1698), 1, + anon_sym_EQ, + ACTIONS(1946), 1, + anon_sym_of, + ACTIONS(2029), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1691), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, - anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1958), 4, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1693), 23, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [28561] = 25, - ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1796), 1, - anon_sym_PIPE, - ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - sym__ternary_qmark, - STATE(637), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [29668] = 6, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1948), 1, + anon_sym_of, + ACTIONS(2032), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1799), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1798), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1801), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1804), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1960), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [28651] = 26, - ACTIONS(1818), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [29720] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1846), 1, - anon_sym_AMP_AMP, - ACTIONS(1848), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1850), 1, - anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, - ACTIONS(1856), 1, - anon_sym_CARET, - ACTIONS(1858), 1, - anon_sym_PIPE, + anon_sym_GT_GT, ACTIONS(1862), 1, anon_sym_PERCENT, ACTIONS(1864), 1, anon_sym_STAR_STAR, + ACTIONS(1870), 1, + anon_sym_AMP_AMP, ACTIONS(1872), 1, - anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, ACTIONS(1874), 1, + anon_sym_AMP, + ACTIONS(1876), 1, + anon_sym_CARET, + ACTIONS(1878), 1, + anon_sym_PIPE, + ACTIONS(1884), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1964), 1, - anon_sym_in, - STATE(797), 1, + ACTIONS(2035), 1, + anon_sym_COMMA, + ACTIONS(2037), 1, + anon_sym_RBRACK, + STATE(658), 1, sym_arguments, + STATE(1227), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1842), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1844), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1852), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1868), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1870), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1852), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1962), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [28743] = 6, - ACTIONS(1465), 1, + [29813] = 6, + ACTIONS(1803), 1, + anon_sym_RBRACK, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1550), 1, - anon_sym_of, - ACTIONS(1552), 1, - anon_sym_in, + ACTIONS(1948), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1426), 11, + ACTIONS(1799), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -69118,11 +71829,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 23, + ACTIONS(1801), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -69142,3864 +71851,3748 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28795] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(101), 1, - anon_sym_STAR, - ACTIONS(103), 1, + [29864] = 6, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(1752), 1, + anon_sym_RBRACK, + ACTIONS(1950), 1, anon_sym_COMMA, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(1971), 1, - anon_sym_RBRACE, - ACTIONS(1973), 1, - anon_sym_LBRACK, - ACTIONS(1975), 1, - anon_sym_async, - ACTIONS(1979), 1, - anon_sym_static, - STATE(1019), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, - STATE(1476), 1, - aux_sym_object_pattern_repeat1, - STATE(1499), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1977), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1981), 2, - anon_sym_get, - anon_sym_set, - STATE(1406), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1454), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1788), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(1967), 4, - anon_sym_export, - anon_sym_let, - anon_sym_await, - sym_identifier, - [28882] = 27, - ACTIONS(1567), 1, + ACTIONS(826), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(828), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [29915] = 27, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1633), 1, + sym_optional_chain, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, + anon_sym_AMP_AMP, + ACTIONS(1872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(1985), 1, + ACTIONS(2039), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28975] = 27, - ACTIONS(1567), 1, + [30008] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(1987), 1, + ACTIONS(2041), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29068] = 27, - ACTIONS(1567), 1, + [30101] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1800), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - ACTIONS(1983), 1, - anon_sym_COMMA, - ACTIONS(1989), 1, - anon_sym_RPAREN, - STATE(637), 1, + STATE(717), 1, sym_arguments, - STATE(1224), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1904), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29161] = 27, - ACTIONS(1567), 1, + [30190] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(1991), 1, - anon_sym_RPAREN, - STATE(637), 1, + ACTIONS(2043), 1, + anon_sym_RBRACK, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29254] = 27, - ACTIONS(1567), 1, + [30283] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(1993), 1, + ACTIONS(2045), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29347] = 27, - ACTIONS(1567), 1, + [30376] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(1995), 1, + ACTIONS(2047), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29440] = 27, - ACTIONS(1567), 1, + [30469] = 24, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(111), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(131), 1, + aux_sym_method_definition_token1, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2051), 1, + anon_sym_LBRACE, + ACTIONS(2053), 1, + anon_sym_RBRACE, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2057), 1, + anon_sym_async, + ACTIONS(2061), 1, + anon_sym_static, + STATE(1036), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, + STATE(1429), 1, + aux_sym_object_pattern_repeat1, + STATE(1452), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2059), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2063), 2, + anon_sym_get, + anon_sym_set, + STATE(1505), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1509), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1764), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2049), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [30556] = 24, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(111), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(131), 1, + aux_sym_method_definition_token1, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2051), 1, + anon_sym_LBRACE, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2067), 1, + anon_sym_RBRACE, + ACTIONS(2069), 1, + anon_sym_async, + ACTIONS(2071), 1, + anon_sym_static, + STATE(1036), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, + STATE(1424), 1, + aux_sym_object_repeat1, + STATE(1429), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2059), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2073), 2, + anon_sym_get, + anon_sym_set, + STATE(1421), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1505), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1764), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2065), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [30643] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(1997), 1, + ACTIONS(2075), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29533] = 27, - ACTIONS(1567), 1, + [30736] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(1999), 1, + ACTIONS(2077), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29626] = 27, - ACTIONS(1567), 1, + [30829] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2001), 1, + ACTIONS(2079), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29719] = 27, - ACTIONS(1567), 1, + [30922] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2003), 1, + ACTIONS(2081), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29812] = 27, - ACTIONS(1567), 1, + [31015] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2005), 1, + ACTIONS(2083), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29905] = 27, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(1569), 1, - anon_sym_LBRACK, - ACTIONS(1571), 1, - anon_sym_DOT, - ACTIONS(1587), 1, - sym_optional_chain, - ACTIONS(1784), 1, - anon_sym_AMP_AMP, - ACTIONS(1786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, - anon_sym_CARET, - ACTIONS(1796), 1, - anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - sym__ternary_qmark, - ACTIONS(1983), 1, + [31108] = 6, + ACTIONS(1552), 1, + anon_sym_RBRACK, + ACTIONS(1555), 1, + anon_sym_EQ, + ACTIONS(1568), 1, anon_sym_COMMA, - ACTIONS(2007), 1, - anon_sym_RPAREN, - STATE(637), 1, - sym_arguments, - STATE(1224), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1454), 12, anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1790), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1456), 21, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1808), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1804), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [29998] = 27, - ACTIONS(910), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [31159] = 27, + ACTIONS(938), 1, anon_sym_COMMA, - ACTIONS(1567), 1, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(2009), 1, + ACTIONS(2085), 1, anon_sym_RBRACK, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1483), 1, + STATE(1466), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30091] = 27, - ACTIONS(1567), 1, + [31252] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2011), 1, - anon_sym_SEMI, - STATE(637), 1, + ACTIONS(2087), 1, + anon_sym_RPAREN, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30184] = 27, - ACTIONS(1567), 1, + [31345] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2013), 1, - anon_sym_RPAREN, - STATE(637), 1, + ACTIONS(2089), 1, + anon_sym_SEMI, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30277] = 27, - ACTIONS(1567), 1, + [31438] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2015), 1, + ACTIONS(2091), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30370] = 25, - ACTIONS(1567), 1, + [31531] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(637), 1, + ACTIONS(2035), 1, + anon_sym_COMMA, + ACTIONS(2093), 1, + anon_sym_RBRACE, + STATE(658), 1, sym_arguments, + STATE(1227), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2017), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [30459] = 27, - ACTIONS(1567), 1, + [31624] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2019), 1, + ACTIONS(2095), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30552] = 27, - ACTIONS(910), 1, + [31717] = 27, + ACTIONS(938), 1, anon_sym_COMMA, - ACTIONS(1567), 1, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(2021), 1, + ACTIONS(2097), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1465), 1, + STATE(1486), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30645] = 25, - ACTIONS(1818), 1, + [31810] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, - anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1898), 1, - anon_sym_PERCENT, - ACTIONS(1900), 1, - anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(797), 1, + ACTIONS(2035), 1, + anon_sym_COMMA, + ACTIONS(2099), 1, + anon_sym_RBRACK, + STATE(658), 1, sym_arguments, + STATE(1227), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1836), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1880), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30734] = 27, - ACTIONS(1567), 1, + [31903] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2023), 1, - anon_sym_RBRACK, - STATE(637), 1, + ACTIONS(2101), 1, + anon_sym_RPAREN, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30827] = 27, - ACTIONS(1567), 1, + [31996] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2025), 1, + ACTIONS(2103), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [30920] = 6, - ACTIONS(1530), 1, - anon_sym_COMMA, - ACTIONS(1537), 1, - anon_sym_RBRACK, - ACTIONS(1540), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1426), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1882), 2, 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, - [30971] = 6, - ACTIONS(1641), 1, - anon_sym_RBRACK, - ACTIONS(1644), 1, - anon_sym_EQ, - ACTIONS(1912), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1637), 12, - anon_sym_STAR, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1639), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1866), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31022] = 6, - ACTIONS(1726), 1, - anon_sym_RBRACK, - ACTIONS(1729), 1, - anon_sym_EQ, - ACTIONS(1914), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1722), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1724), 21, - sym__ternary_qmark, + [32089] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, + ACTIONS(1615), 1, anon_sym_LBRACK, + ACTIONS(1617), 1, anon_sym_DOT, + ACTIONS(1633), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31073] = 6, - ACTIONS(718), 1, - anon_sym_EQ, - ACTIONS(1767), 1, - anon_sym_RBRACK, - ACTIONS(1916), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(714), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1854), 1, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(716), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1862), 1, anon_sym_PERCENT, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31124] = 25, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, - anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1898), 1, - anon_sym_PERCENT, - ACTIONS(1900), 1, - anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(797), 1, + ACTIONS(2035), 1, + anon_sym_COMMA, + ACTIONS(2105), 1, + anon_sym_RPAREN, + STATE(658), 1, sym_arguments, + STATE(1227), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1962), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [31213] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(101), 1, - anon_sym_STAR, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(1973), 1, - anon_sym_LBRACK, - ACTIONS(2029), 1, - anon_sym_RBRACE, - ACTIONS(2031), 1, - anon_sym_async, - ACTIONS(2033), 1, - anon_sym_static, - STATE(1019), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, - STATE(1461), 1, - aux_sym_object_repeat1, - STATE(1476), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1977), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2035), 2, - anon_sym_get, - anon_sym_set, - STATE(1407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1454), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1458), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1788), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2027), 4, - anon_sym_export, - anon_sym_let, - anon_sym_await, - sym_identifier, - [31300] = 27, - ACTIONS(1567), 1, + [32182] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1800), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - ACTIONS(1983), 1, - anon_sym_COMMA, - ACTIONS(2037), 1, - anon_sym_RPAREN, - STATE(637), 1, + STATE(717), 1, sym_arguments, - STATE(1224), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31393] = 27, - ACTIONS(910), 1, + ACTIONS(2024), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(1567), 1, + anon_sym_SEMI, + [32271] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(2039), 1, - anon_sym_RBRACK, - STATE(637), 1, + ACTIONS(2035), 1, + anon_sym_COMMA, + ACTIONS(2107), 1, + anon_sym_RPAREN, + STATE(658), 1, sym_arguments, - STATE(1429), 1, - aux_sym_array_repeat1, + STATE(1227), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31486] = 27, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(1567), 1, + [32364] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(2041), 1, - anon_sym_RPAREN, - STATE(637), 1, + ACTIONS(2035), 1, + anon_sym_COMMA, + ACTIONS(2109), 1, + anon_sym_RBRACK, + STATE(658), 1, sym_arguments, - STATE(1455), 1, - aux_sym_array_repeat1, + STATE(1227), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31579] = 27, - ACTIONS(1567), 1, + [32457] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2043), 1, - anon_sym_RBRACK, - STATE(637), 1, + ACTIONS(2111), 1, + anon_sym_SEMI, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31672] = 27, - ACTIONS(1567), 1, + [32550] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2045), 1, - anon_sym_RBRACE, - STATE(637), 1, + ACTIONS(2113), 1, + anon_sym_SEMI, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31765] = 27, - ACTIONS(1567), 1, + [32643] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2047), 1, - anon_sym_RBRACK, - STATE(637), 1, + ACTIONS(2115), 1, + anon_sym_COLON, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31858] = 27, - ACTIONS(1567), 1, + [32736] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2049), 1, - anon_sym_SEMI, - STATE(637), 1, + ACTIONS(2117), 1, + anon_sym_RPAREN, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31951] = 27, - ACTIONS(1567), 1, + [32829] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2051), 1, - anon_sym_SEMI, - STATE(637), 1, + ACTIONS(2119), 1, + anon_sym_RPAREN, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32044] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(101), 1, - anon_sym_STAR, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(1973), 1, - anon_sym_LBRACK, - ACTIONS(2055), 1, - anon_sym_RBRACE, - ACTIONS(2057), 1, - anon_sym_async, - ACTIONS(2059), 1, - anon_sym_static, - STATE(1019), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, - STATE(1461), 1, - aux_sym_object_repeat1, - STATE(1476), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1977), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2061), 2, - anon_sym_get, - anon_sym_set, - STATE(1407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1454), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1458), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1788), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2053), 4, - anon_sym_export, - anon_sym_let, - anon_sym_await, - sym_identifier, - [32131] = 27, - ACTIONS(1567), 1, + [32922] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2063), 1, + ACTIONS(2121), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32224] = 27, - ACTIONS(910), 1, + [33015] = 27, + ACTIONS(938), 1, anon_sym_COMMA, - ACTIONS(1567), 1, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(2065), 1, - anon_sym_RPAREN, - STATE(637), 1, + ACTIONS(2123), 1, + anon_sym_RBRACK, + STATE(658), 1, sym_arguments, - STATE(1436), 1, + STATE(1496), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32317] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(101), 1, - anon_sym_STAR, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(1973), 1, - anon_sym_LBRACK, - ACTIONS(2069), 1, - anon_sym_RBRACE, - ACTIONS(2071), 1, - anon_sym_async, - ACTIONS(2073), 1, - anon_sym_static, - STATE(1019), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, - STATE(1461), 1, - aux_sym_object_repeat1, - STATE(1476), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1977), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2075), 2, - anon_sym_get, - anon_sym_set, - STATE(1407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1454), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1458), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1788), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2067), 4, - anon_sym_export, - anon_sym_let, - anon_sym_await, - sym_identifier, - [32404] = 27, - ACTIONS(1567), 1, + [33108] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2077), 1, + ACTIONS(2125), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32497] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(101), 1, - anon_sym_STAR, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(1973), 1, - anon_sym_LBRACK, - ACTIONS(2081), 1, - anon_sym_RBRACE, - ACTIONS(2083), 1, - anon_sym_async, - ACTIONS(2085), 1, - anon_sym_static, - STATE(1019), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, - STATE(1461), 1, - aux_sym_object_repeat1, - STATE(1476), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1977), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2087), 2, - anon_sym_get, - anon_sym_set, - STATE(1407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1454), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1458), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1788), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2079), 4, - anon_sym_export, - anon_sym_let, - anon_sym_await, - sym_identifier, - [32584] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(101), 1, - anon_sym_STAR, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(1973), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - anon_sym_RBRACE, - ACTIONS(2093), 1, - anon_sym_async, - ACTIONS(2095), 1, - anon_sym_static, - STATE(1019), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, - STATE(1461), 1, - aux_sym_object_repeat1, - STATE(1476), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1977), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2097), 2, - anon_sym_get, - anon_sym_set, - STATE(1407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1454), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1458), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1788), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2089), 4, - anon_sym_export, - anon_sym_let, - anon_sym_await, - sym_identifier, - [32671] = 27, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(1567), 1, + [33201] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(2099), 1, - anon_sym_RBRACK, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1483), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32764] = 27, - ACTIONS(1567), 1, + ACTIONS(2127), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [33290] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2101), 1, - anon_sym_RBRACK, - STATE(637), 1, + ACTIONS(2129), 1, + anon_sym_SEMI, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32857] = 27, - ACTIONS(1567), 1, + [33383] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2103), 1, + ACTIONS(2131), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32950] = 27, - ACTIONS(1567), 1, + [33476] = 27, + ACTIONS(938), 1, + anon_sym_COMMA, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, - anon_sym_COMMA, - ACTIONS(2105), 1, - anon_sym_RPAREN, - STATE(637), 1, + ACTIONS(2133), 1, + anon_sym_RBRACK, + STATE(658), 1, sym_arguments, - STATE(1224), 1, - aux_sym_sequence_expression_repeat1, + STATE(1496), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33043] = 27, - ACTIONS(1567), 1, + [33569] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2107), 1, + ACTIONS(2135), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33136] = 27, - ACTIONS(1567), 1, + [33662] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2109), 1, + ACTIONS(2137), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33229] = 27, - ACTIONS(1567), 1, + [33755] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2111), 1, + ACTIONS(2139), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33322] = 27, - ACTIONS(1567), 1, + [33848] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2113), 1, - anon_sym_COLON, - STATE(637), 1, + ACTIONS(2141), 1, + anon_sym_RPAREN, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33415] = 27, - ACTIONS(1567), 1, + [33941] = 27, + ACTIONS(938), 1, + anon_sym_COMMA, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, - anon_sym_COMMA, - ACTIONS(2115), 1, + ACTIONS(2143), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, - aux_sym_sequence_expression_repeat1, + STATE(1500), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33508] = 27, - ACTIONS(1567), 1, + [34034] = 24, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(111), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(131), 1, + aux_sym_method_definition_token1, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2051), 1, + anon_sym_LBRACE, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_RBRACE, + ACTIONS(2149), 1, + anon_sym_async, + ACTIONS(2151), 1, + anon_sym_static, + STATE(1036), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, + STATE(1424), 1, + aux_sym_object_repeat1, + STATE(1429), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2059), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2153), 2, + anon_sym_get, + anon_sym_set, + STATE(1421), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1505), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1764), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2145), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [34121] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2117), 1, + ACTIONS(2155), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33601] = 27, - ACTIONS(1567), 1, + [34214] = 27, + ACTIONS(938), 1, + anon_sym_COMMA, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, - anon_sym_COMMA, - ACTIONS(2119), 1, + ACTIONS(2157), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, - aux_sym_sequence_expression_repeat1, + STATE(1437), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33694] = 27, - ACTIONS(1567), 1, + [34307] = 6, + ACTIONS(1695), 1, + anon_sym_RBRACK, + ACTIONS(1698), 1, + anon_sym_EQ, + ACTIONS(1946), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1691), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1693), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [34358] = 27, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1633), 1, + sym_optional_chain, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, + anon_sym_AMP_AMP, + ACTIONS(1872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2121), 1, + ACTIONS(2159), 1, anon_sym_SEMI, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33787] = 27, - ACTIONS(1567), 1, + [34451] = 24, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(111), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(131), 1, + aux_sym_method_definition_token1, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2051), 1, + anon_sym_LBRACE, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2163), 1, + anon_sym_RBRACE, + ACTIONS(2165), 1, + anon_sym_async, + ACTIONS(2167), 1, + anon_sym_static, + STATE(1036), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, + STATE(1424), 1, + aux_sym_object_repeat1, + STATE(1429), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2059), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2169), 2, + anon_sym_get, + anon_sym_set, + STATE(1421), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1505), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1764), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2161), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [34538] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2123), 1, - anon_sym_SEMI, - STATE(637), 1, + ACTIONS(2171), 1, + anon_sym_RPAREN, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33880] = 27, - ACTIONS(1567), 1, + [34631] = 24, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(111), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(131), 1, + aux_sym_method_definition_token1, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2051), 1, + anon_sym_LBRACE, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_RBRACE, + ACTIONS(2177), 1, + anon_sym_async, + ACTIONS(2179), 1, + anon_sym_static, + STATE(1036), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, + STATE(1424), 1, + aux_sym_object_repeat1, + STATE(1429), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2059), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2181), 2, + anon_sym_get, + anon_sym_set, + STATE(1421), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1505), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1764), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2173), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [34718] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2125), 1, + ACTIONS(2183), 1, anon_sym_SEMI, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33973] = 27, - ACTIONS(1567), 1, + [34811] = 24, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(111), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(131), 1, + aux_sym_method_definition_token1, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2051), 1, + anon_sym_LBRACE, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2187), 1, + anon_sym_RBRACE, + ACTIONS(2189), 1, + anon_sym_async, + ACTIONS(2191), 1, + anon_sym_static, + STATE(1036), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, + STATE(1424), 1, + aux_sym_object_repeat1, + STATE(1429), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2059), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2193), 2, + anon_sym_get, + anon_sym_set, + STATE(1421), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1505), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1764), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2185), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [34898] = 27, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(1983), 1, + ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(2127), 1, + ACTIONS(2195), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(658), 1, sym_arguments, - STATE(1224), 1, + STATE(1227), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34066] = 25, - ACTIONS(1567), 1, + [34991] = 21, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, - anon_sym_AMP_AMP, - ACTIONS(2135), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2145), 1, - anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, - sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1826), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34154] = 4, - ACTIONS(1623), 1, - sym_regex_flags, + ACTIONS(1850), 6, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [35071] = 4, + ACTIONS(1587), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1619), 14, + ACTIONS(1454), 12, anon_sym_STAR, - anon_sym_of, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -73011,9 +75604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1621), 20, + ACTIONS(1456), 22, sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -73030,420 +75623,421 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [34200] = 25, - ACTIONS(1818), 1, + [35117] = 25, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1914), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1916), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - STATE(797), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2163), 2, + ACTIONS(2221), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1880), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34288] = 25, - ACTIONS(1567), 1, + [35205] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1888), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34376] = 25, - ACTIONS(1567), 1, + [35293] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1716), 2, + ACTIONS(1706), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34464] = 25, - ACTIONS(1567), 1, + [35381] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1780), 2, + ACTIONS(1900), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34552] = 25, - ACTIONS(1567), 1, + [35469] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1826), 2, + ACTIONS(1898), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34640] = 25, - ACTIONS(1567), 1, + [35557] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1673), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34728] = 15, - ACTIONS(1567), 1, + [35645] = 15, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1830), 7, + ACTIONS(1858), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -73451,7 +76045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 12, + ACTIONS(1850), 12, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -73464,26 +76058,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [34796] = 10, - ACTIONS(1567), 1, + [35713] = 10, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1830), 12, + ACTIONS(1858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -73496,7 +76090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 15, + ACTIONS(1850), 15, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -73512,153 +76106,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [34854] = 21, - ACTIONS(1567), 1, + [35771] = 21, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 6, + ACTIONS(1850), 6, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [34934] = 22, - ACTIONS(1567), 1, + [35851] = 22, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 5, + ACTIONS(1850), 5, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35016] = 13, - ACTIONS(1567), 1, + [35933] = 13, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1830), 8, + ACTIONS(1858), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -73667,7 +76261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 14, + ACTIONS(1850), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -73682,56 +76276,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [35080] = 19, - ACTIONS(1567), 1, + [35997] = 19, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1830), 2, + ACTIONS(1858), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 7, + ACTIONS(1850), 7, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -73739,57 +76333,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35156] = 20, - ACTIONS(1567), 1, + [36073] = 20, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1830), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 7, + ACTIONS(1850), 7, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -73797,90 +76391,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35234] = 21, - ACTIONS(1567), 1, + [36151] = 21, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1830), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 6, + ACTIONS(1850), 6, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35314] = 12, - ACTIONS(1567), 1, + [36231] = 12, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1830), 10, + ACTIONS(1858), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -73891,7 +76485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 14, + ACTIONS(1850), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -73906,26 +76500,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [35376] = 10, - ACTIONS(1567), 1, + [36293] = 10, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1830), 12, + ACTIONS(1858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -73938,7 +76532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 15, + ACTIONS(1850), 15, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -73954,52 +76548,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [35434] = 17, - ACTIONS(1567), 1, + [36351] = 17, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1830), 4, + ACTIONS(1858), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 9, + ACTIONS(1850), 9, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -74009,705 +76603,641 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35506] = 23, - ACTIONS(1567), 1, + [36423] = 23, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 4, + ACTIONS(1850), 4, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35590] = 25, - ACTIONS(1567), 1, + [36507] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1834), 2, + ACTIONS(1890), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35678] = 25, - ACTIONS(1567), 1, + [36595] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1676), 2, + ACTIONS(1730), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35766] = 25, - ACTIONS(1567), 1, + [36683] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1700), 2, + ACTIONS(1761), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35854] = 25, - ACTIONS(1567), 1, + [36771] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1708), 2, + ACTIONS(1781), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35942] = 25, - ACTIONS(1567), 1, + [36859] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1712), 2, + ACTIONS(1793), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36030] = 25, - ACTIONS(1567), 1, + [36947] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1814), 2, + ACTIONS(1902), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36118] = 25, - ACTIONS(1567), 1, + [37035] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, - anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, - sym__ternary_qmark, - STATE(637), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1832), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(2199), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2209), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2217), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2227), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2223), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36206] = 26, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(1838), 1, - sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, - anon_sym_GT_GT, - ACTIONS(1890), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1898), 1, - anon_sym_PERCENT, - ACTIONS(1900), 1, - anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(2233), 1, - anon_sym_SEMI, - ACTIONS(2235), 1, - sym__automatic_semicolon, - STATE(797), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(2257), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36296] = 25, - ACTIONS(1567), 1, + [37123] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1924), 2, + ACTIONS(2005), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36384] = 25, - ACTIONS(1567), 1, + [37211] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, - anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(1800), 1, - anon_sym_PERCENT, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1952), 2, + ACTIONS(2022), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1782), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36472] = 4, - ACTIONS(1557), 1, + [37299] = 4, + ACTIONS(1583), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1426), 12, + ACTIONS(1454), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -74720,7 +77250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 22, + ACTIONS(1456), 22, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, @@ -74743,333 +77273,417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [36518] = 25, - ACTIONS(1567), 1, + [37345] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1832), 2, + ACTIONS(1868), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36606] = 25, - ACTIONS(1567), 1, + [37433] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1888), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36694] = 25, - ACTIONS(1567), 1, + [37521] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1716), 2, + ACTIONS(1706), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36782] = 25, - ACTIONS(1567), 1, + [37609] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1780), 2, + ACTIONS(1900), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36870] = 4, - ACTIONS(1561), 1, - anon_sym_EQ, + [37697] = 25, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1633), 1, + sym_optional_chain, + ACTIONS(2263), 1, + anon_sym_AMP_AMP, + ACTIONS(2265), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2267), 1, + anon_sym_GT_GT, + ACTIONS(2271), 1, + anon_sym_AMP, + ACTIONS(2273), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_PIPE, + ACTIONS(2279), 1, + anon_sym_PERCENT, + ACTIONS(2281), 1, + anon_sym_STAR_STAR, + ACTIONS(2289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2291), 1, + sym__ternary_qmark, + STATE(658), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1426), 12, + ACTIONS(1643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1898), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2259), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(2269), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 22, - sym__ternary_qmark, - anon_sym_of, + ACTIONS(2287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2261), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37785] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, + ACTIONS(1615), 1, anon_sym_LBRACK, + ACTIONS(1617), 1, anon_sym_DOT, + ACTIONS(1633), 1, sym_optional_chain, + ACTIONS(2263), 1, anon_sym_AMP_AMP, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2267), 1, + anon_sym_GT_GT, + ACTIONS(2271), 1, + anon_sym_AMP, + ACTIONS(2273), 1, anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_PIPE, + ACTIONS(2279), 1, anon_sym_PERCENT, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(2291), 1, + sym__ternary_qmark, + STATE(658), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1673), 2, + anon_sym_COLON, anon_sym_BQUOTE, - [36916] = 15, - ACTIONS(1567), 1, + ACTIONS(2259), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2269), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2277), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2285), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2261), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37873] = 15, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1830), 7, + ACTIONS(1858), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -75077,7 +77691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 12, + ACTIONS(1850), 12, sym__ternary_qmark, anon_sym_COLON, anon_sym_AMP_AMP, @@ -75090,26 +77704,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [36984] = 10, - ACTIONS(1567), 1, + [37941] = 10, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1830), 12, + ACTIONS(1858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -75122,7 +77736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 15, + ACTIONS(1850), 15, sym__ternary_qmark, anon_sym_COLON, anon_sym_AMP_AMP, @@ -75138,153 +77752,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [37042] = 21, - ACTIONS(1567), 1, + [37999] = 21, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 6, + ACTIONS(1850), 6, sym__ternary_qmark, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [37122] = 22, - ACTIONS(1567), 1, + [38079] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, - anon_sym_AMP_AMP, - ACTIONS(2137), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2145), 1, - anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2301), 1, + sym__ternary_qmark, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(1868), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 5, - sym__ternary_qmark, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [37204] = 13, - ACTIONS(1567), 1, + [38167] = 13, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1830), 8, + ACTIONS(1858), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -75293,7 +77910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 14, + ACTIONS(1850), 14, sym__ternary_qmark, anon_sym_COLON, anon_sym_AMP_AMP, @@ -75308,56 +77925,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [37268] = 19, - ACTIONS(1567), 1, + [38231] = 19, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1830), 2, + ACTIONS(1858), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 7, + ACTIONS(1850), 7, sym__ternary_qmark, anon_sym_COLON, anon_sym_AMP_AMP, @@ -75365,57 +77982,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [37344] = 20, - ACTIONS(1567), 1, + [38307] = 20, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1830), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 7, + ACTIONS(1850), 7, sym__ternary_qmark, anon_sym_COLON, anon_sym_AMP_AMP, @@ -75423,90 +78040,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [37422] = 21, - ACTIONS(1567), 1, + [38385] = 21, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1830), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 6, + ACTIONS(1850), 6, sym__ternary_qmark, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [37502] = 12, - ACTIONS(1567), 1, + [38465] = 12, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1830), 10, + ACTIONS(1858), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -75517,7 +78134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 14, + ACTIONS(1850), 14, sym__ternary_qmark, anon_sym_COLON, anon_sym_AMP_AMP, @@ -75532,26 +78149,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [37564] = 10, - ACTIONS(1567), 1, + [38527] = 10, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1830), 12, + ACTIONS(1858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -75564,7 +78181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 15, + ACTIONS(1850), 15, sym__ternary_qmark, anon_sym_COLON, anon_sym_AMP_AMP, @@ -75580,52 +78197,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [37622] = 17, - ACTIONS(1567), 1, + [38585] = 17, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1830), 4, + ACTIONS(1858), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 9, + ACTIONS(1850), 9, sym__ternary_qmark, anon_sym_COLON, anon_sym_AMP_AMP, @@ -75635,856 +78252,793 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [37694] = 23, - ACTIONS(1567), 1, + [38657] = 23, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 4, + ACTIONS(1850), 4, sym__ternary_qmark, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [37778] = 25, - ACTIONS(1567), 1, + [38741] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1834), 2, + ACTIONS(1890), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37866] = 25, - ACTIONS(1567), 1, + [38829] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1676), 2, + ACTIONS(1730), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37954] = 25, - ACTIONS(1567), 1, + [38917] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1700), 2, + ACTIONS(1761), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38042] = 25, - ACTIONS(1567), 1, + [39005] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1708), 2, + ACTIONS(1781), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38130] = 25, - ACTIONS(1567), 1, + [39093] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1712), 2, + ACTIONS(1793), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38218] = 25, - ACTIONS(1567), 1, + [39181] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1814), 2, + ACTIONS(1902), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38306] = 25, - ACTIONS(1567), 1, + [39269] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, - anon_sym_AMP_AMP, - ACTIONS(1786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(1796), 1, - anon_sym_PIPE, - ACTIONS(1800), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - sym__ternary_qmark, - STATE(637), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1778), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2237), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1782), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [38394] = 25, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(1569), 1, - anon_sym_LBRACK, - ACTIONS(1571), 1, - anon_sym_DOT, - ACTIONS(1587), 1, - sym_optional_chain, - ACTIONS(2203), 1, + ACTIONS(2293), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, + ACTIONS(2295), 1, anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, - anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, - anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2219), 1, - anon_sym_PERCENT, - ACTIONS(2221), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2299), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2301), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1888), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38482] = 25, - ACTIONS(1567), 1, + [39357] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2301), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1716), 2, + ACTIONS(1706), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38570] = 25, - ACTIONS(1567), 1, + [39445] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2301), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1780), 2, + ACTIONS(1900), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38658] = 25, - ACTIONS(1567), 1, + [39533] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2301), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1826), 2, + ACTIONS(1898), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38746] = 25, - ACTIONS(1567), 1, + [39621] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2301), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1673), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38834] = 15, - ACTIONS(1567), 1, + [39709] = 15, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1830), 7, + ACTIONS(1858), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -76492,7 +79046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 12, + ACTIONS(1850), 12, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -76505,26 +79059,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [38902] = 10, - ACTIONS(1567), 1, + [39777] = 10, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1830), 12, + ACTIONS(1858), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -76537,7 +79091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 15, + ACTIONS(1850), 15, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -76553,153 +79107,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [38960] = 21, - ACTIONS(1567), 1, + [39835] = 21, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + ACTIONS(2297), 1, + anon_sym_PIPE, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 6, + ACTIONS(1850), 6, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [39040] = 22, - ACTIONS(1567), 1, + [39915] = 22, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2297), 1, + anon_sym_PIPE, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 5, + ACTIONS(1850), 5, sym__ternary_qmark, anon_sym_of, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [39122] = 13, - ACTIONS(1567), 1, + [39997] = 13, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1830), 8, + ACTIONS(1858), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -76708,7 +79262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 14, + ACTIONS(1850), 14, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -76723,56 +79277,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [39186] = 19, - ACTIONS(1567), 1, + [40061] = 19, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1830), 2, + ACTIONS(1858), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 7, + ACTIONS(1850), 7, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -76780,57 +79334,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [39262] = 20, - ACTIONS(1567), 1, + [40137] = 20, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1830), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 7, + ACTIONS(1850), 7, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -76838,90 +79392,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [39340] = 21, - ACTIONS(1567), 1, + [40215] = 12, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1830), 1, - anon_sym_PIPE, - ACTIONS(2207), 1, - anon_sym_GT_GT, ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, - anon_sym_CARET, - ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(1858), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2223), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1828), 6, + ACTIONS(1850), 14, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_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_BQUOTE, - [39420] = 12, - ACTIONS(1567), 1, + [40277] = 10, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2219), 1, - anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(1858), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1830), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -76930,9 +79471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 14, + ACTIONS(1850), 15, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -76940,6 +79482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76947,559 +79490,617 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [39482] = 10, - ACTIONS(1567), 1, + [40335] = 17, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2221), 1, + ACTIONS(2201), 1, + anon_sym_GT_GT, + ACTIONS(2211), 1, + anon_sym_PERCENT, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1830), 12, + ACTIONS(2197), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2203), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2209), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2215), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1858), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1828), 15, + ACTIONS(1850), 9, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_BQUOTE, - [39540] = 17, - ACTIONS(1567), 1, + [40407] = 23, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2219), 1, + ACTIONS(2205), 1, + anon_sym_AMP, + ACTIONS(2207), 1, + anon_sym_CARET, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2201), 3, + ACTIONS(2217), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2219), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1830), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1828), 9, + ACTIONS(1850), 4, sym__ternary_qmark, anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [39612] = 23, - ACTIONS(1567), 1, + [40491] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - STATE(637), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2301), 1, + sym__ternary_qmark, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(1890), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1828), 4, - sym__ternary_qmark, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [39696] = 25, - ACTIONS(1567), 1, + [40579] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2301), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1834), 2, + ACTIONS(1730), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [39784] = 25, - ACTIONS(1567), 1, + [40667] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2301), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [39872] = 25, - ACTIONS(1567), 1, + [40755] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2301), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1700), 2, + ACTIONS(1781), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [39960] = 25, - ACTIONS(1567), 1, + [40843] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2301), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1708), 2, + ACTIONS(1793), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40048] = 25, - ACTIONS(1567), 1, + [40931] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2301), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1712), 2, + ACTIONS(1902), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2199), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40136] = 25, - ACTIONS(1567), 1, + [41019] = 4, + ACTIONS(1665), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1661), 14, + anon_sym_STAR, + anon_sym_of, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + ACTIONS(1663), 20, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [41065] = 26, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1906), 1, + sym_optional_chain, + ACTIONS(1914), 1, + anon_sym_AMP_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1918), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, + ACTIONS(1922), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(1924), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(1926), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(1930), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(1932), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(1940), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(1942), 1, sym__ternary_qmark, - STATE(637), 1, + ACTIONS(2303), 1, + anon_sym_SEMI, + ACTIONS(2305), 1, + sym__automatic_semicolon, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1814), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(1910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(1920), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(1928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(1936), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(1912), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(1934), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40224] = 6, - ACTIONS(1459), 1, + [41155] = 6, + ACTIONS(1458), 1, anon_sym_EQ, - ACTIONS(1550), 1, + ACTIONS(1578), 1, anon_sym_of, - ACTIONS(1552), 1, + ACTIONS(1580), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1426), 11, + ACTIONS(1454), 11, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -77511,7 +80112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 21, + ACTIONS(1456), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -77533,1246 +80134,1291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [40274] = 25, - ACTIONS(1567), 1, + [41205] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1832), 2, + ACTIONS(1868), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40362] = 25, - ACTIONS(1567), 1, + [41293] = 22, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, - sym__ternary_qmark, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40450] = 25, - ACTIONS(1567), 1, + ACTIONS(1850), 5, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [41375] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - ACTIONS(2239), 1, + ACTIONS(2307), 1, anon_sym_COLON, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40537] = 21, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(101), 1, - anon_sym_STAR, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(1973), 1, + [41462] = 25, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(2246), 1, - anon_sym_async, - ACTIONS(2248), 1, - anon_sym_static, - STATE(1019), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1633), 1, + sym_optional_chain, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, + anon_sym_AMP_AMP, + ACTIONS(1872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1874), 1, + anon_sym_AMP, + ACTIONS(1876), 1, + anon_sym_CARET, + ACTIONS(1878), 1, + anon_sym_PIPE, + ACTIONS(1884), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1886), 1, + sym__ternary_qmark, + ACTIONS(2309), 1, + anon_sym_RBRACK, + STATE(658), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1977), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2243), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2250), 2, - anon_sym_get, - anon_sym_set, - STATE(1407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1514), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1516), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1788), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2241), 4, - anon_sym_export, - anon_sym_let, - anon_sym_await, - sym_identifier, - [40616] = 25, - ACTIONS(1567), 1, + ACTIONS(1643), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1856), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1880), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1882), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1852), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [41549] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1870), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(1872), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, - anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(1874), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(1876), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(1878), 1, anon_sym_PIPE, - ACTIONS(2149), 1, - anon_sym_PERCENT, - ACTIONS(2151), 1, - anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(1884), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(1886), 1, sym__ternary_qmark, - ACTIONS(2252), 1, - anon_sym_COLON, - STATE(637), 1, + ACTIONS(2311), 1, + anon_sym_RBRACK, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(1848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(1856), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(1880), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(1852), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40703] = 25, - ACTIONS(1567), 1, + [41636] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - ACTIONS(2254), 1, - anon_sym_LBRACE, - STATE(637), 1, + ACTIONS(2313), 1, + anon_sym_COLON, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40790] = 25, - ACTIONS(1567), 1, + [41723] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - ACTIONS(2256), 1, + ACTIONS(2315), 1, anon_sym_COLON, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40877] = 25, - ACTIONS(1567), 1, + [41810] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - ACTIONS(2258), 1, + ACTIONS(2317), 1, anon_sym_COLON, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40964] = 25, - ACTIONS(1567), 1, + [41897] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2227), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2229), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2231), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2235), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2237), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2243), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2245), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2253), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2255), 1, sym__ternary_qmark, - ACTIONS(2260), 1, - anon_sym_COLON, - STATE(637), 1, + ACTIONS(2319), 1, + anon_sym_LBRACE, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2225), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41051] = 25, - ACTIONS(1567), 1, + [41984] = 21, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(131), 1, + aux_sym_method_definition_token1, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2051), 1, + anon_sym_LBRACE, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2326), 1, + anon_sym_async, + ACTIONS(2328), 1, + anon_sym_static, + STATE(1036), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2059), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2323), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2330), 2, + anon_sym_get, + anon_sym_set, + STATE(1510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1540), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1739), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1764), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2321), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [42063] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(1800), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - ACTIONS(2262), 1, - anon_sym_RBRACK, - STATE(637), 1, + ACTIONS(2332), 1, + anon_sym_COLON, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41138] = 25, - ACTIONS(1567), 1, + [42150] = 26, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(1784), 1, - anon_sym_AMP_AMP, - ACTIONS(1786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + ACTIONS(2024), 1, + anon_sym_of, + ACTIONS(2201), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, + ACTIONS(2205), 1, anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(2207), 1, anon_sym_CARET, - ACTIONS(1796), 1, - anon_sym_PIPE, - ACTIONS(1800), 1, + ACTIONS(2211), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(2293), 1, + anon_sym_AMP_AMP, + ACTIONS(2295), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(2301), 1, sym__ternary_qmark, - ACTIONS(2264), 1, - anon_sym_RBRACK, - STATE(637), 1, + ACTIONS(2334), 1, + anon_sym_in, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(2197), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(2199), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2203), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(2217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(2219), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(2215), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41225] = 25, - ACTIONS(1567), 1, + [42239] = 25, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - ACTIONS(2266), 1, + ACTIONS(2337), 1, anon_sym_COLON, - STATE(637), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [41312] = 26, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(1569), 1, - anon_sym_LBRACK, - ACTIONS(1571), 1, - anon_sym_DOT, - ACTIONS(1587), 1, - sym_optional_chain, - ACTIONS(1962), 1, - anon_sym_of, - ACTIONS(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, - anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, - anon_sym_CARET, - ACTIONS(2215), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, - anon_sym_PERCENT, - ACTIONS(2221), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, - sym__ternary_qmark, - ACTIONS(2268), 1, + ACTIONS(2261), 3, anon_sym_in, - STATE(637), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2199), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2201), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2209), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2217), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2227), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2223), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41401] = 24, - ACTIONS(1567), 1, + [42326] = 24, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1906), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - STATE(637), 1, + STATE(717), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41485] = 24, - ACTIONS(1818), 1, + [42410] = 24, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1633), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2263), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2265), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2267), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2275), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2279), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2281), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2289), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2291), 1, sym__ternary_qmark, - STATE(797), 1, + STATE(658), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1643), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2269), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2261), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41569] = 20, - ACTIONS(93), 1, - anon_sym_AT, + [42494] = 20, ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(109), 1, anon_sym_STAR, - ACTIONS(123), 1, + ACTIONS(131), 1, aux_sym_method_definition_token1, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2273), 1, + ACTIONS(2341), 1, anon_sym_COMMA, - ACTIONS(2275), 1, + ACTIONS(2343), 1, anon_sym_RBRACE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2279), 1, + ACTIONS(2347), 1, anon_sym_async, - ACTIONS(2283), 1, + ACTIONS(2351), 1, anon_sym_static, - STATE(1019), 1, + STATE(1036), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1107), 1, sym_decorator, - STATE(1449), 1, + STATE(1427), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2281), 2, + ACTIONS(2349), 2, sym_number, sym_private_property_identifier, - ACTIONS(2285), 2, + ACTIONS(2353), 2, anon_sym_get, anon_sym_set, - STATE(1402), 3, + STATE(1426), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1448), 3, + STATE(1439), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2339), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [42565] = 14, + ACTIONS(812), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2051), 1, + anon_sym_LBRACE, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(2359), 1, + anon_sym_RBRACE, + STATE(1429), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2361), 2, + sym_number, + sym_private_property_identifier, + STATE(1505), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1764), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(1863), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2271), 4, + ACTIONS(2355), 8, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, - [41640] = 21, - ACTIONS(93), 1, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [42623] = 21, + ACTIONS(101), 1, anon_sym_AT, - ACTIONS(2289), 1, + ACTIONS(2365), 1, anon_sym_STAR, - ACTIONS(2291), 1, + ACTIONS(2367), 1, anon_sym_RBRACE, - ACTIONS(2293), 1, + ACTIONS(2369), 1, anon_sym_SEMI, - ACTIONS(2295), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(2297), 1, + ACTIONS(2373), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(2375), 1, anon_sym_SQUOTE, - ACTIONS(2301), 1, + ACTIONS(2377), 1, anon_sym_async, - ACTIONS(2305), 1, + ACTIONS(2381), 1, anon_sym_static, - ACTIONS(2307), 1, + ACTIONS(2383), 1, aux_sym_method_definition_token1, - STATE(985), 1, + STATE(1005), 1, aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1037), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, - sym_method_definition, - STATE(1080), 1, + STATE(1092), 1, sym_class_static_block, - STATE(1097), 1, + STATE(1093), 1, + sym_method_definition, + STATE(1107), 1, sym_decorator, - STATE(1526), 1, + STATE(1731), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2303), 2, + ACTIONS(2379), 2, sym_number, sym_private_property_identifier, - ACTIONS(2309), 2, + ACTIONS(2385), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1244), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2287), 4, + ACTIONS(2363), 4, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, - [41712] = 21, - ACTIONS(93), 1, + [42695] = 21, + ACTIONS(101), 1, anon_sym_AT, - ACTIONS(2289), 1, + ACTIONS(2365), 1, anon_sym_STAR, - ACTIONS(2295), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(2297), 1, + ACTIONS(2373), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(2375), 1, anon_sym_SQUOTE, - ACTIONS(2301), 1, + ACTIONS(2377), 1, anon_sym_async, - ACTIONS(2305), 1, + ACTIONS(2381), 1, anon_sym_static, - ACTIONS(2307), 1, + ACTIONS(2383), 1, aux_sym_method_definition_token1, - ACTIONS(2311), 1, + ACTIONS(2387), 1, anon_sym_RBRACE, - ACTIONS(2313), 1, + ACTIONS(2389), 1, anon_sym_SEMI, - STATE(984), 1, + STATE(1007), 1, aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1037), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, - sym_method_definition, - STATE(1080), 1, + STATE(1092), 1, sym_class_static_block, - STATE(1097), 1, + STATE(1093), 1, + sym_method_definition, + STATE(1107), 1, sym_decorator, - STATE(1526), 1, + STATE(1731), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2303), 2, + ACTIONS(2379), 2, sym_number, sym_private_property_identifier, - ACTIONS(2309), 2, + ACTIONS(2385), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1244), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2287), 4, + ACTIONS(2363), 4, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, - [41784] = 21, - ACTIONS(93), 1, + [42767] = 18, + ACTIONS(101), 1, anon_sym_AT, - ACTIONS(2289), 1, + ACTIONS(109), 1, anon_sym_STAR, - ACTIONS(2293), 1, - anon_sym_SEMI, - ACTIONS(2295), 1, - anon_sym_LBRACK, - ACTIONS(2297), 1, + ACTIONS(131), 1, + aux_sym_method_definition_token1, + ACTIONS(942), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2301), 1, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2305), 1, + ACTIONS(2397), 1, anon_sym_static, - ACTIONS(2307), 1, - aux_sym_method_definition_token1, - ACTIONS(2315), 1, - anon_sym_RBRACE, - STATE(985), 1, - aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1036), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, - sym_method_definition, - STATE(1080), 1, - sym_class_static_block, - STATE(1097), 1, + STATE(1107), 1, sym_decorator, - STATE(1526), 1, - sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2303), 2, + ACTIONS(2349), 2, sym_number, sym_private_property_identifier, - ACTIONS(2309), 2, + ACTIONS(2393), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2399), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1439), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2287), 4, + STATE(1540), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(2391), 4, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, - [41856] = 21, - ACTIONS(2320), 1, + [42833] = 21, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(2365), 1, anon_sym_STAR, - ACTIONS(2323), 1, - anon_sym_RBRACE, - ACTIONS(2325), 1, - anon_sym_SEMI, - ACTIONS(2328), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(2331), 1, + ACTIONS(2373), 1, anon_sym_DQUOTE, - ACTIONS(2334), 1, + ACTIONS(2375), 1, anon_sym_SQUOTE, - ACTIONS(2337), 1, + ACTIONS(2377), 1, anon_sym_async, - ACTIONS(2343), 1, - anon_sym_AT, - ACTIONS(2346), 1, + ACTIONS(2381), 1, anon_sym_static, - ACTIONS(2349), 1, + ACTIONS(2383), 1, aux_sym_method_definition_token1, - STATE(985), 1, + ACTIONS(2401), 1, + anon_sym_RBRACE, + ACTIONS(2403), 1, + anon_sym_SEMI, + STATE(1001), 1, aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1037), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, - sym_method_definition, - STATE(1080), 1, + STATE(1092), 1, sym_class_static_block, - STATE(1097), 1, + STATE(1093), 1, + sym_method_definition, + STATE(1107), 1, sym_decorator, - STATE(1526), 1, + STATE(1731), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2340), 2, + ACTIONS(2379), 2, sym_number, sym_private_property_identifier, - ACTIONS(2352), 2, + ACTIONS(2385), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1244), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2317), 4, + ACTIONS(2363), 4, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, - [41928] = 14, - ACTIONS(883), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1075), 1, + [42905] = 21, + ACTIONS(2408), 1, + anon_sym_STAR, + ACTIONS(2411), 1, + anon_sym_RBRACE, + ACTIONS(2413), 1, + anon_sym_SEMI, + ACTIONS(2416), 1, + anon_sym_LBRACK, + ACTIONS(2419), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(2422), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(1973), 1, - anon_sym_LBRACK, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(2359), 1, - anon_sym_RBRACE, - STATE(1466), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2425), 1, + anon_sym_async, + ACTIONS(2431), 1, + anon_sym_AT, + ACTIONS(2434), 1, + anon_sym_static, + ACTIONS(2437), 1, + aux_sym_method_definition_token1, + STATE(1005), 1, + aux_sym_class_body_repeat1, + STATE(1037), 1, + aux_sym_export_statement_repeat1, + STATE(1092), 1, + sym_class_static_block, + STATE(1093), 1, + sym_method_definition, + STATE(1107), 1, + sym_decorator, + STATE(1731), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2361), 2, + ACTIONS(2428), 2, sym_number, sym_private_property_identifier, - STATE(1457), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1788), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1796), 3, + ACTIONS(2440), 2, + anon_sym_get, + anon_sym_set, + STATE(1244), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2355), 8, + ACTIONS(2405), 4, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [41986] = 14, - ACTIONS(883), 1, + [42977] = 14, + ACTIONS(812), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(2051), 1, anon_sym_LBRACE, - ACTIONS(1973), 1, + ACTIONS(2055), 1, anon_sym_LBRACK, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(2365), 1, + ACTIONS(2445), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1425), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -78780,19 +81426,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2361), 2, sym_number, sym_private_property_identifier, - STATE(1454), 3, + STATE(1420), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1788), 3, + STATE(1764), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(1796), 3, + STATE(1863), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2363), 8, + ACTIONS(2443), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -78801,217 +81447,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42044] = 21, - ACTIONS(93), 1, + [43035] = 21, + ACTIONS(101), 1, anon_sym_AT, - ACTIONS(2289), 1, + ACTIONS(2365), 1, anon_sym_STAR, - ACTIONS(2293), 1, + ACTIONS(2369), 1, anon_sym_SEMI, - ACTIONS(2295), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(2297), 1, + ACTIONS(2373), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(2375), 1, anon_sym_SQUOTE, - ACTIONS(2301), 1, + ACTIONS(2377), 1, anon_sym_async, - ACTIONS(2305), 1, + ACTIONS(2381), 1, anon_sym_static, - ACTIONS(2307), 1, + ACTIONS(2383), 1, aux_sym_method_definition_token1, - ACTIONS(2367), 1, + ACTIONS(2447), 1, anon_sym_RBRACE, - STATE(985), 1, + STATE(1005), 1, aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1037), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, - sym_method_definition, - STATE(1080), 1, + STATE(1092), 1, sym_class_static_block, - STATE(1097), 1, + STATE(1093), 1, + sym_method_definition, + STATE(1107), 1, sym_decorator, - STATE(1526), 1, + STATE(1731), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2303), 2, + ACTIONS(2379), 2, sym_number, sym_private_property_identifier, - ACTIONS(2309), 2, + ACTIONS(2385), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1244), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2287), 4, + ACTIONS(2363), 4, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, - [42116] = 18, - ACTIONS(93), 1, - anon_sym_AT, + [43107] = 21, ACTIONS(101), 1, - anon_sym_STAR, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(914), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, - anon_sym_async, - ACTIONS(2375), 1, - anon_sym_static, - STATE(1019), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2281), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2371), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2377), 2, - anon_sym_get, - anon_sym_set, - STATE(1448), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1516), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(2369), 4, - anon_sym_export, - anon_sym_let, - anon_sym_await, - sym_identifier, - [42182] = 21, - ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2289), 1, + ACTIONS(2365), 1, anon_sym_STAR, - ACTIONS(2295), 1, + ACTIONS(2369), 1, + anon_sym_SEMI, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(2297), 1, + ACTIONS(2373), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(2375), 1, anon_sym_SQUOTE, - ACTIONS(2301), 1, + ACTIONS(2377), 1, anon_sym_async, - ACTIONS(2305), 1, + ACTIONS(2381), 1, anon_sym_static, - ACTIONS(2307), 1, + ACTIONS(2383), 1, aux_sym_method_definition_token1, - ACTIONS(2379), 1, + ACTIONS(2449), 1, anon_sym_RBRACE, - ACTIONS(2381), 1, - anon_sym_SEMI, - STATE(988), 1, + STATE(1005), 1, aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1037), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, - sym_method_definition, - STATE(1080), 1, + STATE(1092), 1, sym_class_static_block, - STATE(1097), 1, + STATE(1093), 1, + sym_method_definition, + STATE(1107), 1, sym_decorator, - STATE(1526), 1, + STATE(1731), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2303), 2, + ACTIONS(2379), 2, sym_number, sym_private_property_identifier, - ACTIONS(2309), 2, + ACTIONS(2385), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1244), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2287), 4, + ACTIONS(2363), 4, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, - [42254] = 21, - ACTIONS(93), 1, + [43179] = 21, + ACTIONS(101), 1, anon_sym_AT, - ACTIONS(2289), 1, + ACTIONS(2365), 1, anon_sym_STAR, - ACTIONS(2295), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(2297), 1, + ACTIONS(2373), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(2375), 1, anon_sym_SQUOTE, - ACTIONS(2301), 1, + ACTIONS(2377), 1, anon_sym_async, - ACTIONS(2305), 1, + ACTIONS(2381), 1, anon_sym_static, - ACTIONS(2307), 1, - aux_sym_method_definition_token1, ACTIONS(2383), 1, + aux_sym_method_definition_token1, + ACTIONS(2451), 1, anon_sym_RBRACE, - ACTIONS(2385), 1, + ACTIONS(2453), 1, anon_sym_SEMI, - STATE(982), 1, + STATE(1008), 1, aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1037), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, - sym_method_definition, - STATE(1080), 1, + STATE(1092), 1, sym_class_static_block, - STATE(1097), 1, + STATE(1093), 1, + sym_method_definition, + STATE(1107), 1, sym_decorator, - STATE(1526), 1, + STATE(1731), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2303), 2, + ACTIONS(2379), 2, sym_number, sym_private_property_identifier, - ACTIONS(2309), 2, + ACTIONS(2385), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1244), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2287), 4, + ACTIONS(2363), 4, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, - [42326] = 12, - ACTIONS(883), 1, + [43251] = 12, + ACTIONS(812), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(2051), 1, anon_sym_LBRACE, - ACTIONS(1973), 1, + ACTIONS(2055), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -79019,22 +81617,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2361), 2, sym_number, sym_private_property_identifier, - ACTIONS(2389), 2, + ACTIONS(2457), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1514), 3, + STATE(1739), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1788), 3, + STATE(1764), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(1796), 3, + STATE(1863), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2387), 8, + ACTIONS(2455), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -79043,547 +81641,625 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42379] = 16, - ACTIONS(103), 1, + [43304] = 16, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(371), 1, + anon_sym_RBRACE, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(1115), 1, anon_sym_async, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(2393), 1, - anon_sym_RBRACE, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1418), 1, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 5, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, anon_sym_static, - [42438] = 15, - ACTIONS(103), 1, + [43363] = 16, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(171), 1, + ACTIONS(324), 1, anon_sym_RBRACE, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(1115), 1, + anon_sym_async, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1452), 1, + STATE(1457), 1, + aux_sym_object_repeat1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, - STATE(1487), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1109), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1117), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2461), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1712), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1113), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [43422] = 15, + ACTIONS(111), 1, + anon_sym_COMMA, + ACTIONS(371), 1, + anon_sym_RBRACE, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_EQ, + STATE(1457), 1, aux_sym_object_repeat1, + STATE(1477), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [42495] = 16, - ACTIONS(103), 1, + [43479] = 15, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(324), 1, + anon_sym_RBRACE, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_EQ, + STATE(1457), 1, + aux_sym_object_repeat1, + STATE(1477), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1109), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1117), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2461), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1712), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1113), 6, + anon_sym_export, + anon_sym_let, + anon_sym_await, anon_sym_async, - ACTIONS(2277), 1, + sym_identifier, + anon_sym_static, + [43536] = 15, + ACTIONS(111), 1, + anon_sym_COMMA, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - ACTIONS(2399), 1, + ACTIONS(2465), 1, anon_sym_RBRACE, - STATE(1418), 1, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [42554] = 15, - ACTIONS(103), 1, + [43593] = 15, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(369), 1, + anon_sym_RBRACE, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - ACTIONS(2401), 1, - anon_sym_RBRACE, - STATE(1418), 1, + STATE(1475), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [42611] = 16, - ACTIONS(103), 1, + [43650] = 16, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(369), 1, + anon_sym_RBRACE, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(1115), 1, anon_sym_async, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - ACTIONS(2401), 1, - anon_sym_RBRACE, - STATE(1418), 1, + STATE(1475), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 5, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, anon_sym_static, - [42670] = 15, - ACTIONS(103), 1, + [43709] = 15, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(351), 1, - anon_sym_RBRACE, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1418), 1, + ACTIONS(2467), 1, + anon_sym_RBRACE, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [42727] = 16, - ACTIONS(103), 1, + [43766] = 16, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(351), 1, - anon_sym_RBRACE, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(1115), 1, anon_sym_async, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1418), 1, + ACTIONS(2467), 1, + anon_sym_RBRACE, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 5, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, anon_sym_static, - [42786] = 15, - ACTIONS(103), 1, + [43825] = 16, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(1115), 1, + anon_sym_async, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - ACTIONS(2399), 1, + ACTIONS(2465), 1, anon_sym_RBRACE, - STATE(1418), 1, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1113), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, - [42843] = 15, - ACTIONS(103), 1, + [43884] = 15, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(2393), 1, - anon_sym_RBRACE, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1418), 1, + ACTIONS(2469), 1, + anon_sym_RBRACE, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [42900] = 16, - ACTIONS(103), 1, + [43941] = 16, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(216), 1, - anon_sym_RBRACE, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(1115), 1, anon_sym_async, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1418), 1, + ACTIONS(2469), 1, + anon_sym_RBRACE, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 5, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, anon_sym_static, - [42959] = 16, - ACTIONS(103), 1, + [44000] = 13, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(171), 1, - anon_sym_RBRACE, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, - anon_sym_async, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_STAR, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1452), 1, - aux_sym_object_pattern_repeat1, - STATE(1487), 1, + ACTIONS(2469), 1, + anon_sym_RBRACE, + STATE(1457), 1, aux_sym_object_repeat1, + STATE(1477), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [43018] = 15, - ACTIONS(103), 1, + anon_sym_get, + anon_sym_set, + [44052] = 13, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(216), 1, + ACTIONS(324), 1, anon_sym_RBRACE, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_STAR, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1418), 1, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [43075] = 13, - ACTIONS(103), 1, + anon_sym_get, + anon_sym_set, + [44104] = 13, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(216), 1, + ACTIONS(371), 1, anon_sym_RBRACE, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1418), 1, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -79592,37 +82268,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43127] = 13, - ACTIONS(103), 1, + [44156] = 13, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - ACTIONS(2401), 1, + ACTIONS(2465), 1, anon_sym_RBRACE, - STATE(1418), 1, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -79631,37 +82307,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43179] = 13, - ACTIONS(103), 1, + [44208] = 13, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(171), 1, + ACTIONS(369), 1, anon_sym_RBRACE, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1452), 1, - aux_sym_object_pattern_repeat1, - STATE(1487), 1, + STATE(1475), 1, aux_sym_object_repeat1, + STATE(1477), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -79670,37 +82346,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43231] = 13, - ACTIONS(103), 1, + [44260] = 13, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - ACTIONS(2399), 1, + ACTIONS(2467), 1, anon_sym_RBRACE, - STATE(1418), 1, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -79709,705 +82385,819 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43283] = 14, - ACTIONS(2295), 1, + [44312] = 14, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(2297), 1, + ACTIONS(2373), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(2375), 1, anon_sym_SQUOTE, - ACTIONS(2403), 1, + ACTIONS(2471), 1, anon_sym_STAR, - ACTIONS(2405), 1, + ACTIONS(2473), 1, anon_sym_LBRACE, - ACTIONS(2407), 1, + ACTIONS(2475), 1, anon_sym_async, - ACTIONS(2413), 1, + ACTIONS(2481), 1, sym__automatic_semicolon, - STATE(1081), 1, + STATE(1094), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2409), 2, + ACTIONS(2477), 2, sym_number, sym_private_property_identifier, - ACTIONS(2411), 2, + ACTIONS(2479), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 3, + ACTIONS(2461), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - STATE(1231), 3, + STATE(1261), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2287), 5, + ACTIONS(2363), 5, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, anon_sym_static, - [43337] = 13, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(351), 1, - anon_sym_RBRACE, - ACTIONS(1075), 1, + [44366] = 13, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(1115), 1, + anon_sym_async, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2397), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(2395), 2, + ACTIONS(1117), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + ACTIONS(2484), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [43389] = 13, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(1075), 1, + [44417] = 12, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_RBRACE, - ACTIONS(2397), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(2395), 2, + ACTIONS(1117), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + ACTIONS(2484), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, + [44466] = 18, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2487), 1, + anon_sym_export, + ACTIONS(2489), 1, + anon_sym_STAR, + ACTIONS(2491), 1, + anon_sym_class, + ACTIONS(2493), 1, + anon_sym_async, + ACTIONS(2497), 1, + anon_sym_static, + ACTIONS(2499), 1, + aux_sym_method_definition_token1, + ACTIONS(2501), 1, anon_sym_get, + ACTIONS(2503), 1, anon_sym_set, - [43441] = 13, - ACTIONS(1075), 1, + STATE(1069), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2495), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1113), 3, + anon_sym_let, + anon_sym_await, + sym_identifier, + STATE(1737), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [44527] = 14, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2273), 1, + ACTIONS(1115), 1, + anon_sym_async, + ACTIONS(2341), 1, anon_sym_COMMA, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(2416), 1, + ACTIONS(2505), 1, anon_sym_RBRACE, - STATE(1464), 1, + STATE(1430), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1113), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, - [43492] = 14, - ACTIONS(1075), 1, + [44580] = 13, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, - anon_sym_async, - ACTIONS(2273), 1, + ACTIONS(2341), 1, anon_sym_COMMA, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(2416), 1, + ACTIONS(2505), 1, anon_sym_RBRACE, - STATE(1464), 1, + STATE(1430), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, - sym_identifier, - anon_sym_static, - [43545] = 18, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2418), 1, - anon_sym_export, - ACTIONS(2420), 1, - anon_sym_STAR, - ACTIONS(2422), 1, - anon_sym_class, - ACTIONS(2424), 1, anon_sym_async, - ACTIONS(2428), 1, - anon_sym_static, - ACTIONS(2430), 1, - aux_sym_method_definition_token1, - ACTIONS(2432), 1, - anon_sym_get, - ACTIONS(2434), 1, - anon_sym_set, - STATE(1041), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2426), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1085), 3, - anon_sym_let, - anon_sym_await, sym_identifier, - STATE(1682), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [43606] = 13, - ACTIONS(1075), 1, + anon_sym_static, + [44631] = 10, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, - anon_sym_async, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_STAR, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2436), 2, + ACTIONS(2484), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [43657] = 12, - ACTIONS(1075), 1, + anon_sym_get, + anon_sym_set, + [44675] = 16, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2489), 1, anon_sym_STAR, - ACTIONS(2397), 1, - anon_sym_EQ, + ACTIONS(2493), 1, + anon_sym_async, + ACTIONS(2497), 1, + anon_sym_static, + ACTIONS(2499), 1, + aux_sym_method_definition_token1, + ACTIONS(2501), 1, + anon_sym_get, + ACTIONS(2503), 1, + anon_sym_set, + STATE(1069), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(2495), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2395), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2436), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1710), 3, + STATE(1737), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1113), 4, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, - anon_sym_static, - [43706] = 11, - ACTIONS(1075), 1, + [44731] = 16, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(2371), 1, + anon_sym_LBRACK, + ACTIONS(2373), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(2375), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2439), 1, + ACTIONS(2507), 1, anon_sym_STAR, - ACTIONS(2443), 1, + ACTIONS(2509), 1, + anon_sym_async, + ACTIONS(2513), 1, + anon_sym_static, + ACTIONS(2515), 1, + aux_sym_method_definition_token1, + ACTIONS(2517), 1, anon_sym_get, - ACTIONS(2445), 1, + ACTIONS(2519), 1, anon_sym_set, + STATE(1069), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2441), 2, + ACTIONS(2511), 2, sym_number, sym_private_property_identifier, - STATE(1598), 3, + STATE(1262), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2395), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(1085), 6, + ACTIONS(2363), 4, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, - anon_sym_static, - [43752] = 11, - ACTIONS(1075), 1, + [44787] = 12, + ACTIONS(2371), 1, + anon_sym_LBRACK, + ACTIONS(2373), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(2375), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(2521), 1, anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(2523), 1, + anon_sym_async, + ACTIONS(2527), 1, anon_sym_get, - ACTIONS(2453), 1, + ACTIONS(2529), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2449), 2, + ACTIONS(2525), 2, sym_number, sym_private_property_identifier, - STATE(1582), 3, + STATE(1269), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2395), 4, + ACTIONS(2461), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(1085), 6, + ACTIONS(2363), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, - [43798] = 16, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(1075), 1, + [44835] = 10, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2420), 1, + ACTIONS(2471), 1, anon_sym_STAR, - ACTIONS(2424), 1, - anon_sym_async, - ACTIONS(2428), 1, - anon_sym_static, - ACTIONS(2430), 1, - aux_sym_method_definition_token1, - ACTIONS(2432), 1, - anon_sym_get, - ACTIONS(2434), 1, - anon_sym_set, - STATE(1041), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2426), 2, + ACTIONS(2531), 2, sym_number, sym_private_property_identifier, - STATE(1682), 3, + ACTIONS(2533), 2, + anon_sym_get, + anon_sym_set, + STATE(1558), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 4, + ACTIONS(2461), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, - [43854] = 11, - ACTIONS(1075), 1, + anon_sym_static, + [44879] = 10, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2416), 1, - anon_sym_RBRACE, - STATE(1464), 1, - aux_sym_object_repeat1, + ACTIONS(2535), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(2537), 2, sym_number, sym_private_property_identifier, - ACTIONS(2395), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1710), 3, + ACTIONS(2539), 2, + anon_sym_get, + anon_sym_set, + STATE(1581), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(2461), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [43900] = 11, - ACTIONS(1075), 1, + [44923] = 12, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(1115), 1, + anon_sym_async, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2455), 2, + ACTIONS(2541), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1113), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, - [43946] = 12, - ACTIONS(2295), 1, - anon_sym_LBRACK, - ACTIONS(2297), 1, + [44971] = 11, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2457), 1, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2543), 1, anon_sym_STAR, - ACTIONS(2459), 1, - anon_sym_async, - ACTIONS(2463), 1, + ACTIONS(2547), 1, anon_sym_get, - ACTIONS(2465), 1, + ACTIONS(2549), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2545), 2, sym_number, sym_private_property_identifier, - STATE(1245), 3, + STATE(1600), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2395), 4, + ACTIONS(2461), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(2287), 5, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [43994] = 10, - ACTIONS(1075), 1, + [45017] = 11, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2341), 1, + anon_sym_COMMA, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2403), 1, - anon_sym_STAR, + ACTIONS(2505), 1, + anon_sym_RBRACE, + STATE(1430), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2467), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(2469), 2, + ACTIONS(2461), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1712), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1113), 8, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [45063] = 11, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2551), 1, + anon_sym_STAR, + ACTIONS(2555), 1, anon_sym_get, + ACTIONS(2557), 1, anon_sym_set, - STATE(1553), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2553), 2, + sym_number, + sym_private_property_identifier, + STATE(1583), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2395), 4, + ACTIONS(2461), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(1085), 6, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [44038] = 12, - ACTIONS(1075), 1, + [45109] = 11, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, - anon_sym_async, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2459), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + ACTIONS(1117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2455), 2, + ACTIONS(2541), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1710), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [44086] = 16, - ACTIONS(93), 1, + [45155] = 15, + ACTIONS(101), 1, anon_sym_AT, - ACTIONS(2295), 1, - anon_sym_LBRACK, - ACTIONS(2297), 1, - anon_sym_DQUOTE, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2471), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(1070), 1, + anon_sym_var, + ACTIONS(1074), 1, + anon_sym_using, + ACTIONS(1076), 1, + anon_sym_await, + ACTIONS(1081), 1, + anon_sym_class, + ACTIONS(1083), 1, anon_sym_async, - ACTIONS(2477), 1, - anon_sym_static, - ACTIONS(2479), 1, - aux_sym_method_definition_token1, - ACTIONS(2481), 1, - anon_sym_get, - ACTIONS(2483), 1, - anon_sym_set, - STATE(1041), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, + ACTIONS(1085), 1, + anon_sym_function, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2559), 1, + anon_sym_default, + STATE(443), 1, + sym_declaration, + STATE(1107), 1, sym_decorator, + STATE(1371), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1072), 2, + anon_sym_let, + anon_sym_const, + STATE(487), 6, + sym_variable_declaration, + sym_lexical_declaration, + sym_using_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [45208] = 8, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2475), 2, + ACTIONS(2561), 2, sym_number, sym_private_property_identifier, - STATE(1232), 3, + STATE(1586), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2287), 4, + ACTIONS(2461), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, - [44142] = 10, - ACTIONS(1075), 1, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [45247] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, + ACTIONS(2537), 2, sym_number, sym_private_property_identifier, - ACTIONS(2489), 2, - anon_sym_get, - anon_sym_set, - STATE(1580), 3, + STATE(1581), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2395), 4, + ACTIONS(2461), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(1085), 6, + ACTIONS(1113), 8, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [45286] = 6, + ACTIONS(2567), 1, + anon_sym_LPAREN, + ACTIONS(2569), 1, + anon_sym_DOT, + STATE(1111), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2565), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + ACTIONS(2563), 9, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, - [44186] = 10, - ACTIONS(1075), 1, + anon_sym_get, + anon_sym_set, + [45321] = 9, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2397), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2436), 2, + ACTIONS(2541), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1710), 3, + STATE(1712), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1113), 8, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [45362] = 8, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2571), 2, + sym_number, + sym_private_property_identifier, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(2461), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80416,29 +83206,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44230] = 8, - ACTIONS(1075), 1, + [45401] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2467), 2, + ACTIONS(2573), 2, sym_number, sym_private_property_identifier, - STATE(1553), 3, + STATE(1585), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2395), 4, + ACTIONS(2461), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80447,29 +83237,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44269] = 8, - ACTIONS(1075), 1, + [45440] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, + ACTIONS(2575), 2, sym_number, sym_private_property_identifier, - STATE(1580), 3, + STATE(1602), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2395), 4, + ACTIONS(2461), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80478,29 +83268,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44308] = 8, - ACTIONS(1075), 1, + [45479] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2491), 2, + ACTIONS(2531), 2, sym_number, sym_private_property_identifier, - STATE(1600), 3, + STATE(1558), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2395), 4, + ACTIONS(2461), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80509,91 +83299,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44347] = 8, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2493), 2, - sym_number, - sym_private_property_identifier, - STATE(1599), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2395), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(1085), 8, - anon_sym_export, - anon_sym_let, + [45518] = 14, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(1070), 1, + anon_sym_var, + ACTIONS(1074), 1, + anon_sym_using, + ACTIONS(1076), 1, anon_sym_await, + ACTIONS(1081), 1, + anon_sym_class, + ACTIONS(1083), 1, anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [44386] = 8, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, + ACTIONS(1085), 1, + anon_sym_function, + ACTIONS(2577), 1, + anon_sym_default, + STATE(443), 1, + sym_declaration, + STATE(1107), 1, + sym_decorator, + STATE(1371), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2495), 2, - sym_number, - sym_private_property_identifier, - STATE(1584), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2395), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(1085), 8, - anon_sym_export, + ACTIONS(1072), 2, anon_sym_let, - anon_sym_await, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [44425] = 8, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, + anon_sym_const, + STATE(487), 6, + sym_variable_declaration, + sym_lexical_declaration, + sym_using_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [45568] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2497), 2, - sym_number, - sym_private_property_identifier, - STATE(1585), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2395), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(1085), 8, + ACTIONS(2579), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80602,18 +83348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44464] = 6, - ACTIONS(2503), 1, - anon_sym_LPAREN, - ACTIONS(2505), 1, - anon_sym_DOT, - STATE(1106), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2501), 8, + ACTIONS(2581), 11, anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -80621,40 +83360,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - ACTIONS(2499), 9, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [44499] = 9, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, + [45596] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2395), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2455), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1710), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(2583), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80663,58 +83373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44540] = 15, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(936), 1, - anon_sym_var, - ACTIONS(940), 1, - anon_sym_using, - ACTIONS(942), 1, - anon_sym_await, - ACTIONS(947), 1, - anon_sym_class, - ACTIONS(949), 1, - anon_sym_async, - ACTIONS(951), 1, - anon_sym_function, - ACTIONS(2395), 1, - anon_sym_LPAREN, - ACTIONS(2507), 1, - anon_sym_default, - STATE(486), 1, - sym_declaration, - STATE(1097), 1, - sym_decorator, - STATE(1327), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(938), 2, - anon_sym_let, - anon_sym_const, - STATE(419), 6, - sym_variable_declaration, - sym_lexical_declaration, - sym_using_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [44593] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2509), 8, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2511), 11, + ACTIONS(2585), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -80726,47 +83385,47 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44621] = 14, - ACTIONS(93), 1, + [45624] = 14, + ACTIONS(101), 1, anon_sym_AT, - ACTIONS(936), 1, + ACTIONS(1070), 1, anon_sym_var, - ACTIONS(940), 1, + ACTIONS(1074), 1, anon_sym_using, - ACTIONS(942), 1, + ACTIONS(1076), 1, anon_sym_await, - ACTIONS(947), 1, + ACTIONS(1081), 1, anon_sym_class, - ACTIONS(949), 1, + ACTIONS(1083), 1, anon_sym_async, - ACTIONS(951), 1, + ACTIONS(1085), 1, anon_sym_function, - ACTIONS(2507), 1, + ACTIONS(2559), 1, anon_sym_default, - STATE(486), 1, + STATE(443), 1, sym_declaration, - STATE(1097), 1, + STATE(1107), 1, sym_decorator, - STATE(1327), 1, + STATE(1371), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(938), 2, + ACTIONS(1072), 2, anon_sym_let, anon_sym_const, - STATE(419), 6, + STATE(487), 6, sym_variable_declaration, sym_lexical_declaration, sym_using_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [44671] = 3, + [45674] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2587), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80775,7 +83434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2589), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -80787,11 +83446,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44699] = 3, + [45702] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2517), 8, + ACTIONS(2579), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80800,7 +83459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2519), 11, + ACTIONS(2581), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -80812,51 +83471,22 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44727] = 6, - ACTIONS(2525), 1, - anon_sym_AT, - STATE(1041), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, + [45730] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2523), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - aux_sym_method_definition_token1, - ACTIONS(2521), 9, + ACTIONS(2583), 8, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44761] = 4, - ACTIONS(2528), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(696), 8, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(694), 10, + ACTIONS(2585), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -80866,36 +83496,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44791] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2532), 9, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - ACTIONS(2530), 10, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [44819] = 3, + [45758] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2534), 8, + ACTIONS(2583), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80904,7 +83509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2536), 11, + ACTIONS(2585), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -80916,11 +83521,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44847] = 3, + [45786] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2538), 8, + ACTIONS(2587), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80929,7 +83534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2540), 11, + ACTIONS(2589), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -80941,11 +83546,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44875] = 3, + [45814] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2542), 8, + ACTIONS(2583), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80954,7 +83559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2544), 11, + ACTIONS(2585), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -80966,13 +83571,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44903] = 4, - ACTIONS(2546), 1, - sym__automatic_semicolon, + [45842] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(710), 8, + ACTIONS(2583), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80981,8 +83584,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(708), 10, + ACTIONS(2585), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -80992,11 +83596,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44933] = 3, + [45870] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2587), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81005,7 +83609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2589), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81017,11 +83621,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44961] = 3, + [45898] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2583), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81030,7 +83634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2585), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81042,11 +83646,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44989] = 3, + [45926] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2587), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81055,7 +83659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2589), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81067,61 +83671,39 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45017] = 3, + [45954] = 6, + ACTIONS(2595), 1, + anon_sym_AT, + STATE(1069), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2593), 7, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, aux_sym_method_definition_token1, - [45045] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2513), 8, + ACTIONS(2591), 9, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [45073] = 3, + [45988] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2548), 8, + ACTIONS(2598), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81130,7 +83712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2550), 11, + ACTIONS(2600), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81142,11 +83724,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45101] = 3, + [46016] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2548), 8, + ACTIONS(2602), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81155,7 +83737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2550), 11, + ACTIONS(2604), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81167,11 +83749,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45129] = 3, + [46044] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2548), 8, + ACTIONS(2579), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81180,7 +83762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2550), 11, + ACTIONS(2581), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81192,11 +83774,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45157] = 3, + [46072] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2548), 8, + ACTIONS(2587), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81205,7 +83787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2550), 11, + ACTIONS(2589), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81217,11 +83799,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45185] = 3, + [46100] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2548), 8, + ACTIONS(2583), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81230,7 +83812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2550), 11, + ACTIONS(2585), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81242,11 +83824,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45213] = 3, + [46128] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2548), 8, + ACTIONS(2587), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81255,7 +83837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2550), 11, + ACTIONS(2589), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81267,11 +83849,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45241] = 3, + [46156] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2579), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81280,7 +83862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2581), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81292,11 +83874,13 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45269] = 3, + [46184] = 4, + ACTIONS(2606), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(788), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81305,9 +83889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(786), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -81317,11 +83900,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45297] = 3, + [46214] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2583), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81330,7 +83913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2585), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81342,24 +83925,13 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45325] = 3, + [46242] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2610), 9, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -81367,36 +83939,24 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45353] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2513), 8, + ACTIONS(2608), 10, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_DOT, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [45381] = 3, + [46270] = 4, + ACTIONS(2612), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2552), 8, + ACTIONS(836), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81405,9 +83965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2554), 11, + ACTIONS(834), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -81417,11 +83976,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45409] = 3, + [46300] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2509), 8, + ACTIONS(2579), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81430,7 +83989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2511), 11, + ACTIONS(2581), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81442,11 +84001,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45437] = 3, + [46328] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2509), 8, + ACTIONS(2614), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81455,7 +84014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2511), 11, + ACTIONS(2616), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81467,47 +84026,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45465] = 14, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(936), 1, - anon_sym_var, - ACTIONS(940), 1, - anon_sym_using, - ACTIONS(942), 1, - anon_sym_await, - ACTIONS(947), 1, - anon_sym_class, - ACTIONS(949), 1, - anon_sym_async, - ACTIONS(951), 1, - anon_sym_function, - ACTIONS(2556), 1, - anon_sym_default, - STATE(486), 1, - sym_declaration, - STATE(1097), 1, - sym_decorator, - STATE(1327), 1, - aux_sym_export_statement_repeat1, + [46356] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(938), 2, - anon_sym_let, - anon_sym_const, - STATE(419), 6, - sym_variable_declaration, - sym_lexical_declaration, - sym_using_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [45515] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2509), 8, + ACTIONS(2579), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81516,7 +84039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2511), 11, + ACTIONS(2581), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81528,11 +84051,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45543] = 3, + [46384] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2509), 8, + ACTIONS(2583), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81541,7 +84064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2511), 11, + ACTIONS(2585), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81553,11 +84076,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45571] = 3, + [46412] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2509), 8, + ACTIONS(2618), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81566,7 +84089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2511), 11, + ACTIONS(2620), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81578,13 +84101,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45599] = 4, - ACTIONS(2562), 1, - anon_sym_SEMI, + [46440] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2558), 8, + ACTIONS(2583), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81593,9 +84114,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2560), 9, + ACTIONS(2585), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -81603,43 +84126,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45628] = 11, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, - anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_STAR, - ACTIONS(2569), 1, - anon_sym_get, - ACTIONS(2571), 1, - anon_sym_set, + [46468] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2567), 2, - sym_number, - sym_private_property_identifier, - STATE(1575), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 6, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_async, - sym_identifier, - anon_sym_static, - [45671] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2573), 8, + ACTIONS(2583), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81648,8 +84139,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2575), 10, + ACTIONS(2585), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -81659,28 +84151,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45698] = 9, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, - anon_sym_LPAREN, - ACTIONS(2577), 1, - anon_sym_EQ_GT, + [46496] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2579), 2, - sym_number, - sym_private_property_identifier, - STATE(1694), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(2622), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81689,11 +84164,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [45737] = 3, + ACTIONS(2624), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [46524] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(696), 8, + ACTIONS(2626), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81702,7 +84189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(694), 10, + ACTIONS(2628), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -81713,76 +84200,43 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45764] = 11, - ACTIONS(1075), 1, + [46551] = 11, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2630), 1, anon_sym_STAR, - ACTIONS(2585), 1, + ACTIONS(2634), 1, anon_sym_get, - ACTIONS(2587), 1, + ACTIONS(2636), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2583), 2, + ACTIONS(2632), 2, sym_number, sym_private_property_identifier, - STATE(1730), 3, + STATE(1604), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [45807] = 12, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, - anon_sym_LPAREN, - ACTIONS(2589), 1, - anon_sym_STAR, - ACTIONS(2591), 1, - anon_sym_async, - ACTIONS(2595), 1, - anon_sym_get, - ACTIONS(2597), 1, - anon_sym_set, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2593), 2, - sym_number, - sym_private_property_identifier, - STATE(1508), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 5, - anon_sym_export, - anon_sym_let, - anon_sym_await, - sym_identifier, - anon_sym_static, - [45852] = 3, + [46594] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2599), 8, + ACTIONS(2638), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81791,7 +84245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2601), 10, + ACTIONS(2640), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -81802,43 +84256,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45879] = 11, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, - anon_sym_LPAREN, - ACTIONS(2603), 1, - anon_sym_STAR, - ACTIONS(2607), 1, - anon_sym_get, - ACTIONS(2609), 1, - anon_sym_set, + [46621] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2605), 2, - sym_number, - sym_private_property_identifier, - STATE(1568), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 6, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_async, - sym_identifier, - anon_sym_static, - [45922] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2558), 8, + ACTIONS(2642), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81847,7 +84269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2560), 10, + ACTIONS(2644), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -81858,11 +84280,13 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45949] = 3, + [46648] = 4, + ACTIONS(2646), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2611), 8, + ACTIONS(2642), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81871,10 +84295,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2613), 10, + ACTIONS(2644), 9, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -81882,105 +84305,67 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45976] = 10, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_STAR, + [46677] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2489), 2, - anon_sym_get, - anon_sym_set, - STATE(1580), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(2649), 8, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [46017] = 10, - ACTIONS(1075), 1, + anon_sym_get, + anon_sym_set, + ACTIONS(2651), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, - anon_sym_LPAREN, - ACTIONS(2615), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2579), 2, sym_number, sym_private_property_identifier, - ACTIONS(2617), 2, - anon_sym_get, - anon_sym_set, - STATE(1694), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 6, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_async, - sym_identifier, - anon_sym_static, - [46058] = 11, - ACTIONS(1075), 1, + anon_sym_AT, + aux_sym_method_definition_token1, + [46704] = 11, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2653), 1, anon_sym_STAR, - ACTIONS(2623), 1, + ACTIONS(2657), 1, anon_sym_get, - ACTIONS(2625), 1, + ACTIONS(2659), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2621), 2, + ACTIONS(2655), 2, sym_number, sym_private_property_identifier, - STATE(1602), 3, + STATE(1730), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [46101] = 3, + [46747] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(702), 8, + ACTIONS(818), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81989,7 +84374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(700), 10, + ACTIONS(816), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -82000,26 +84385,28 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [46128] = 8, - ACTIONS(1075), 1, + [46774] = 9, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, + ACTIONS(2661), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2627), 2, + ACTIONS(2663), 2, sym_number, sym_private_property_identifier, - STATE(1604), 3, + STATE(1545), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82028,26 +84415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46164] = 8, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, - anon_sym_LPAREN, + [46813] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2629), 2, - sym_number, - sym_private_property_identifier, - STATE(1577), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(836), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82056,220 +84428,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46200] = 8, - ACTIONS(1075), 1, + ACTIONS(834), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [46840] = 11, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, + ACTIONS(2665), 1, + anon_sym_STAR, + ACTIONS(2669), 1, + anon_sym_get, + ACTIONS(2671), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2631), 2, + ACTIONS(2667), 2, sym_number, sym_private_property_identifier, - STATE(1570), 3, + STATE(1608), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [46236] = 11, - ACTIONS(1075), 1, + [46883] = 10, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2633), 1, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2535), 1, anon_sym_STAR, - ACTIONS(2635), 1, - anon_sym_async, - ACTIONS(2639), 1, - anon_sym_get, - ACTIONS(2641), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2637), 2, + ACTIONS(2537), 2, sym_number, sym_private_property_identifier, - STATE(1529), 3, + ACTIONS(2539), 2, + anon_sym_get, + anon_sym_set, + STATE(1581), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [46278] = 8, - ACTIONS(1075), 1, + [46924] = 11, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, + ACTIONS(2673), 1, + anon_sym_STAR, + ACTIONS(2677), 1, + anon_sym_get, + ACTIONS(2679), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2643), 2, + ACTIONS(2675), 2, sym_number, sym_private_property_identifier, - STATE(1539), 3, + STATE(1525), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [46314] = 8, - ACTIONS(1075), 1, + [46967] = 10, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, + ACTIONS(2681), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2645), 2, + ACTIONS(2663), 2, sym_number, sym_private_property_identifier, - STATE(1540), 3, + ACTIONS(2683), 2, + anon_sym_get, + anon_sym_set, + STATE(1545), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 6, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [46350] = 8, - ACTIONS(1075), 1, + [47008] = 12, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, + ACTIONS(2685), 1, + anon_sym_STAR, + ACTIONS(2687), 1, + anon_sym_async, + ACTIONS(2691), 1, + anon_sym_get, + ACTIONS(2693), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2647), 2, + ACTIONS(2689), 2, sym_number, sym_private_property_identifier, - STATE(1715), 3, + STATE(1532), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [46386] = 8, - ACTIONS(1075), 1, + [47053] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2649), 2, + ACTIONS(2695), 2, sym_number, sym_private_property_identifier, - STATE(1718), 3, + STATE(1615), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, - anon_sym_export, - anon_sym_let, - anon_sym_await, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [46422] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2501), 8, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - ACTIONS(2499), 9, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [46448] = 8, - ACTIONS(1075), 1, + [47089] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2651), 2, + ACTIONS(2697), 2, sym_number, sym_private_property_identifier, - STATE(1740), 3, + STATE(1576), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82278,26 +84654,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46484] = 8, - ACTIONS(1075), 1, + [47125] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2653), 2, + ACTIONS(2699), 2, sym_number, sym_private_property_identifier, - STATE(1741), 3, + STATE(1541), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82306,11 +84682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46520] = 3, + [47161] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2657), 8, + ACTIONS(2703), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -82319,7 +84695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - ACTIONS(2655), 9, + ACTIONS(2701), 9, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82329,26 +84705,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46546] = 8, - ACTIONS(1075), 1, + [47187] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2659), 2, + ACTIONS(2705), 2, sym_number, sym_private_property_identifier, - STATE(1562), 3, + STATE(1741), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82357,26 +84733,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46582] = 8, - ACTIONS(1075), 1, + [47223] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2579), 2, + ACTIONS(2707), 2, sym_number, sym_private_property_identifier, - STATE(1694), 3, + STATE(1724), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82385,11 +84761,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46618] = 3, + [47259] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1737), 8, + ACTIONS(2565), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -82398,7 +84774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - ACTIONS(1735), 9, + ACTIONS(2563), 9, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82408,56 +84784,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46644] = 10, - ACTIONS(1075), 1, + [47285] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2711), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2403), 1, - anon_sym_STAR, - ACTIONS(2661), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + ACTIONS(2709), 9, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_class, anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [47311] = 8, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2467), 2, + ACTIONS(2713), 2, sym_number, sym_private_property_identifier, - ACTIONS(2469), 2, - anon_sym_get, - anon_sym_set, - STATE(1553), 3, + STATE(1577), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [46684] = 8, - ACTIONS(1075), 1, + anon_sym_get, + anon_sym_set, + [47347] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2663), 2, + ACTIONS(2715), 2, sym_number, sym_private_property_identifier, - STATE(1569), 3, + STATE(1718), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82466,54 +84863,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46720] = 8, - ACTIONS(1075), 1, + [47383] = 10, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(1115), 1, + anon_sym_async, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, - anon_sym_LPAREN, + ACTIONS(2459), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2665), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - STATE(1561), 3, + ACTIONS(1117), 2, + anon_sym_get, + anon_sym_set, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [46756] = 8, - ACTIONS(1075), 1, + [47423] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, + ACTIONS(2717), 2, sym_number, sym_private_property_identifier, - STATE(1580), 3, + STATE(1630), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82522,42 +84921,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46792] = 11, - ACTIONS(1075), 1, + [47459] = 10, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2667), 1, + ACTIONS(2471), 1, anon_sym_STAR, - ACTIONS(2669), 1, + ACTIONS(2719), 1, anon_sym_async, - ACTIONS(2673), 1, - anon_sym_get, - ACTIONS(2675), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 2, + ACTIONS(2531), 2, sym_number, sym_private_property_identifier, - STATE(1583), 3, + ACTIONS(2533), 2, + anon_sym_get, + anon_sym_set, + STATE(1558), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 5, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, anon_sym_static, - [46834] = 3, + [47499] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2679), 8, + ACTIONS(1842), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -82566,7 +84964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - ACTIONS(2677), 9, + ACTIONS(1840), 9, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82576,26 +84974,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46860] = 8, - ACTIONS(1075), 1, + [47525] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1677), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + ACTIONS(1675), 9, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [47551] = 8, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2681), 2, + ACTIONS(2537), 2, sym_number, sym_private_property_identifier, - STATE(1593), 3, + STATE(1581), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82604,26 +85025,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46896] = 8, - ACTIONS(1075), 1, + [47587] = 11, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_async, + ACTIONS(2727), 1, + anon_sym_get, + ACTIONS(2729), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2725), 2, + sym_number, + sym_private_property_identifier, + STATE(1584), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1113), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [47629] = 8, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2683), 2, + ACTIONS(2731), 2, sym_number, sym_private_property_identifier, - STATE(1595), 3, + STATE(1690), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82632,26 +85084,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46932] = 8, - ACTIONS(1075), 1, + [47665] = 11, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2733), 1, + anon_sym_STAR, + ACTIONS(2735), 1, + anon_sym_async, + ACTIONS(2739), 1, + anon_sym_get, + ACTIONS(2741), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2737), 2, + sym_number, + sym_private_property_identifier, + STATE(1536), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1113), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [47707] = 8, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2685), 2, + ACTIONS(2743), 2, sym_number, sym_private_property_identifier, - STATE(1596), 3, + STATE(1595), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82660,56 +85143,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46968] = 10, - ACTIONS(1075), 1, + [47743] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2745), 2, + sym_number, + sym_private_property_identifier, + STATE(1597), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1113), 8, + anon_sym_export, + anon_sym_let, + anon_sym_await, anon_sym_async, - ACTIONS(2277), 1, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [47779] = 8, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_STAR, + ACTIONS(2461), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(2747), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + STATE(1598), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1113), 8, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_get, anon_sym_set, - STATE(1710), 3, + [47815] = 8, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2749), 2, + sym_number, + sym_private_property_identifier, + STATE(1605), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [47008] = 8, - ACTIONS(1075), 1, + anon_sym_get, + anon_sym_set, + [47851] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2687), 2, + ACTIONS(2751), 2, sym_number, sym_private_property_identifier, - STATE(1603), 3, + STATE(1606), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82718,26 +85255,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47044] = 8, - ACTIONS(1075), 1, + [47887] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2689), 2, + ACTIONS(2663), 2, sym_number, sym_private_property_identifier, - STATE(1576), 3, + STATE(1545), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82746,26 +85283,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47080] = 8, - ACTIONS(1075), 1, + [47923] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2691), 2, + ACTIONS(2753), 2, sym_number, sym_private_property_identifier, - STATE(1610), 3, + STATE(1537), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82774,26 +85311,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47116] = 8, - ACTIONS(1075), 1, + [47959] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2693), 2, + ACTIONS(2755), 2, sym_number, sym_private_property_identifier, - STATE(1611), 3, + STATE(1612), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82802,26 +85339,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47152] = 8, - ACTIONS(1075), 1, + [47995] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2695), 2, + ACTIONS(2757), 2, sym_number, sym_private_property_identifier, STATE(1613), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82830,26 +85367,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47188] = 8, - ACTIONS(1075), 1, + [48031] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2697), 2, + ACTIONS(2759), 2, sym_number, sym_private_property_identifier, - STATE(1614), 3, + STATE(1616), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82858,26 +85395,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47224] = 8, - ACTIONS(1075), 1, + [48067] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2699), 2, + ACTIONS(2761), 2, sym_number, sym_private_property_identifier, - STATE(1552), 3, + STATE(1618), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82886,34 +85423,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47260] = 3, + [48103] = 8, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1635), 8, - anon_sym_STAR, + ACTIONS(2763), 2, + sym_number, + sym_private_property_identifier, + STATE(1703), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1113), 8, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48139] = 8, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2345), 1, anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2765), 2, + sym_number, + sym_private_property_identifier, + STATE(1538), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1113), 8, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48175] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, + ACTIONS(1105), 1, anon_sym_SQUOTE, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2767), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - ACTIONS(1633), 9, + STATE(1564), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [47286] = 3, + [48211] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1745), 8, + ACTIONS(1834), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -82922,7 +85520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - ACTIONS(1743), 9, + ACTIONS(1832), 9, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82932,24 +85530,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47312] = 7, - ACTIONS(1075), 1, + [48237] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2701), 2, + ACTIONS(2531), 2, sym_number, sym_private_property_identifier, - STATE(1597), 3, + STATE(1558), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82958,24 +85556,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47345] = 7, - ACTIONS(1075), 1, + [48270] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2699), 2, + ACTIONS(2769), 2, sym_number, sym_private_property_identifier, - STATE(1552), 3, + STATE(1599), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82984,24 +85582,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47378] = 7, - ACTIONS(1075), 1, + [48303] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2579), 2, + ACTIONS(2771), 2, sym_number, sym_private_property_identifier, - STATE(1694), 3, + STATE(1603), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83010,24 +85608,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47411] = 7, - ACTIONS(1075), 1, + [48336] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2703), 2, + ACTIONS(2663), 2, sym_number, sym_private_property_identifier, - STATE(1559), 3, + STATE(1545), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83036,24 +85634,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47444] = 7, - ACTIONS(1075), 1, + [48369] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2705), 2, + ACTIONS(2773), 2, sym_number, sym_private_property_identifier, - STATE(1565), 3, + STATE(1582), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83062,24 +85660,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47477] = 7, - ACTIONS(1075), 1, + [48402] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(2775), 2, sym_number, sym_private_property_identifier, - STATE(1710), 3, + STATE(1617), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83088,24 +85686,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47510] = 7, - ACTIONS(1075), 1, + [48435] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2707), 2, + ACTIONS(2731), 2, sym_number, sym_private_property_identifier, - STATE(1726), 3, + STATE(1690), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83114,24 +85712,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47543] = 7, - ACTIONS(1075), 1, + [48468] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2709), 2, + ACTIONS(2777), 2, sym_number, sym_private_property_identifier, - STATE(1712), 3, + STATE(1523), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83140,24 +85738,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47576] = 7, - ACTIONS(1075), 1, + [48501] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2711), 2, + ACTIONS(2779), 2, sym_number, sym_private_property_identifier, - STATE(1739), 3, + STATE(1611), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83166,24 +85764,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47609] = 7, - ACTIONS(1075), 1, + [48534] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2713), 2, + ACTIONS(2781), 2, sym_number, sym_private_property_identifier, - STATE(1594), 3, + STATE(1575), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83192,24 +85790,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47642] = 7, - ACTIONS(1075), 1, + [48567] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2467), 2, + ACTIONS(1109), 2, sym_number, sym_private_property_identifier, - STATE(1553), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83218,24 +85816,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47675] = 7, - ACTIONS(1075), 1, + [48600] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, + ACTIONS(2783), 2, sym_number, sym_private_property_identifier, - STATE(1580), 3, + STATE(1614), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83244,24 +85842,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47708] = 7, - ACTIONS(1075), 1, + [48633] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2715), 2, + ACTIONS(2785), 2, sym_number, sym_private_property_identifier, - STATE(1601), 3, + STATE(1644), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83270,24 +85868,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47741] = 7, - ACTIONS(1075), 1, + [48666] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2717), 2, + ACTIONS(2787), 2, sym_number, sym_private_property_identifier, - STATE(1581), 3, + STATE(1570), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83296,24 +85894,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47774] = 7, - ACTIONS(1075), 1, + [48699] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2681), 2, + ACTIONS(2743), 2, sym_number, sym_private_property_identifier, - STATE(1593), 3, + STATE(1595), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83322,24 +85920,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47807] = 7, - ACTIONS(1075), 1, + [48732] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2719), 2, + ACTIONS(2537), 2, sym_number, sym_private_property_identifier, - STATE(1609), 3, + STATE(1581), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83348,24 +85946,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47840] = 7, - ACTIONS(1075), 1, + [48765] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2721), 2, + ACTIONS(2789), 2, sym_number, sym_private_property_identifier, - STATE(1612), 3, + STATE(1596), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83374,24 +85972,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47873] = 7, - ACTIONS(1075), 1, + [48798] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2723), 2, + ACTIONS(2791), 2, sym_number, sym_private_property_identifier, - STATE(1572), 3, + STATE(1713), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1113), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -83400,11 +85998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47906] = 2, + [48831] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2725), 15, + ACTIONS(2793), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83420,11 +86018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [47928] = 2, + [48853] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2727), 15, + ACTIONS(2795), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83440,11 +86038,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [47950] = 2, + [48875] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2729), 15, + ACTIONS(2797), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83460,11 +86058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [47972] = 2, + [48897] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2731), 15, + ACTIONS(2799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83480,11 +86078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [47994] = 2, + [48919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2733), 15, + ACTIONS(2801), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83500,11 +86098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [48016] = 2, + [48941] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2735), 15, + ACTIONS(2803), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83520,1484 +86118,1362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [48038] = 11, - ACTIONS(2297), 1, + [48963] = 11, + ACTIONS(2373), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(2375), 1, anon_sym_SQUOTE, - ACTIONS(2737), 1, + ACTIONS(2805), 1, sym_identifier, - ACTIONS(2739), 1, + ACTIONS(2807), 1, anon_sym_STAR, - ACTIONS(2741), 1, + ACTIONS(2809), 1, anon_sym_LBRACE, - ACTIONS(2745), 1, + ACTIONS(2813), 1, anon_sym_DOT, - STATE(1359), 1, + STATE(1342), 1, sym_string, - STATE(1625), 1, + STATE(1571), 1, sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2743), 2, + ACTIONS(2811), 2, anon_sym_LPAREN, sym_optional_chain, - STATE(1862), 2, + STATE(1760), 2, sym_namespace_import, sym_named_imports, - [48075] = 11, - ACTIONS(2747), 1, + [49000] = 8, + ACTIONS(2815), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_LT, + ACTIONS(2821), 1, + anon_sym_LT_SLASH, + STATE(601), 1, + sym_jsx_closing_element, + STATE(1166), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2817), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1165), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [49030] = 11, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2827), 1, anon_sym_COLON, - ACTIONS(2753), 1, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_DOT, - ACTIONS(2759), 1, + ACTIONS(2835), 1, anon_sym_SLASH_GT, - STATE(1185), 1, + STATE(1196), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48111] = 8, - ACTIONS(2761), 1, + [49066] = 8, + ACTIONS(2815), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2819), 1, anon_sym_LT, - ACTIONS(2767), 1, + ACTIONS(2821), 1, anon_sym_LT_SLASH, - STATE(1149), 1, + STATE(622), 1, + sym_jsx_closing_element, + STATE(1166), 1, sym_jsx_opening_element, - STATE(1259), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2837), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1176), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [49096] = 8, + ACTIONS(2815), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_LT, + ACTIONS(2841), 1, + anon_sym_LT_SLASH, + STATE(1166), 1, + sym_jsx_opening_element, + STATE(1329), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2763), 2, + ACTIONS(2839), 2, sym_jsx_text, sym_html_character_reference, - STATE(1160), 4, + STATE(1168), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [48141] = 11, - ACTIONS(2747), 1, + [49126] = 11, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2827), 1, anon_sym_COLON, - ACTIONS(2753), 1, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_DOT, - ACTIONS(2769), 1, + ACTIONS(2843), 1, anon_sym_SLASH_GT, - STATE(1177), 1, + STATE(1190), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48177] = 8, - ACTIONS(2761), 1, + [49162] = 8, + ACTIONS(2815), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2819), 1, anon_sym_LT, - ACTIONS(2771), 1, + ACTIONS(2841), 1, anon_sym_LT_SLASH, - STATE(611), 1, - sym_jsx_closing_element, - STATE(1149), 1, + STATE(1166), 1, sym_jsx_opening_element, + STATE(1275), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2763), 2, + ACTIONS(2837), 2, sym_jsx_text, sym_html_character_reference, - STATE(1160), 4, + STATE(1176), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [48207] = 8, - ACTIONS(2761), 1, + [49192] = 8, + ACTIONS(2815), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2819), 1, anon_sym_LT, - ACTIONS(2775), 1, + ACTIONS(2847), 1, anon_sym_LT_SLASH, - STATE(1149), 1, + STATE(1166), 1, sym_jsx_opening_element, - STATE(1255), 1, + STATE(1325), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2773), 2, + ACTIONS(2845), 2, sym_jsx_text, sym_html_character_reference, - STATE(1156), 4, + STATE(1170), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [48237] = 8, - ACTIONS(2761), 1, + [49222] = 8, + ACTIONS(2815), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2819), 1, anon_sym_LT, - ACTIONS(2767), 1, + ACTIONS(2847), 1, anon_sym_LT_SLASH, - STATE(1149), 1, + STATE(1166), 1, sym_jsx_opening_element, - STATE(1312), 1, + STATE(1278), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2777), 2, + ACTIONS(2837), 2, sym_jsx_text, sym_html_character_reference, - STATE(1146), 4, + STATE(1176), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [48267] = 11, - ACTIONS(2747), 1, + [49252] = 11, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2827), 1, anon_sym_COLON, - ACTIONS(2753), 1, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_DOT, - ACTIONS(2779), 1, + ACTIONS(2849), 1, anon_sym_SLASH_GT, - STATE(1182), 1, + STATE(1195), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48303] = 11, - ACTIONS(2747), 1, + [49288] = 11, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2827), 1, anon_sym_COLON, - ACTIONS(2753), 1, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_DOT, - ACTIONS(2781), 1, + ACTIONS(2851), 1, anon_sym_SLASH_GT, - STATE(1183), 1, + STATE(1205), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48339] = 8, - ACTIONS(2761), 1, + [49324] = 8, + ACTIONS(2815), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2819), 1, anon_sym_LT, - ACTIONS(2771), 1, + ACTIONS(2853), 1, anon_sym_LT_SLASH, - STATE(608), 1, + STATE(709), 1, sym_jsx_closing_element, - STATE(1149), 1, + STATE(1166), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2783), 2, + ACTIONS(2837), 2, sym_jsx_text, sym_html_character_reference, - STATE(1148), 4, + STATE(1176), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [48369] = 8, - ACTIONS(2761), 1, + [49354] = 8, + ACTIONS(2815), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2819), 1, anon_sym_LT, - ACTIONS(2785), 1, + ACTIONS(2853), 1, anon_sym_LT_SLASH, - STATE(790), 1, + STATE(823), 1, sym_jsx_closing_element, - STATE(1149), 1, + STATE(1166), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2763), 2, + ACTIONS(2855), 2, sym_jsx_text, sym_html_character_reference, - STATE(1160), 4, + STATE(1173), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [48399] = 8, - ACTIONS(2761), 1, + [49384] = 10, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, - anon_sym_LT, - ACTIONS(2785), 1, - anon_sym_LT_SLASH, - STATE(745), 1, - sym_jsx_closing_element, - STATE(1149), 1, - sym_jsx_opening_element, + ACTIONS(2829), 1, + anon_sym_GT, + ACTIONS(2831), 1, + sym_jsx_identifier, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(2835), 1, + anon_sym_SLASH_GT, + STATE(1185), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1266), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2787), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1154), 4, - sym_jsx_element, + STATE(1319), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [48429] = 8, - ACTIONS(2761), 1, + sym_jsx_attribute, + [49417] = 7, + ACTIONS(2857), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2863), 1, anon_sym_LT, - ACTIONS(2775), 1, + ACTIONS(2866), 1, anon_sym_LT_SLASH, - STATE(1149), 1, + STATE(1166), 1, sym_jsx_opening_element, - STATE(1290), 1, - sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2763), 2, + ACTIONS(2860), 2, sym_jsx_text, sym_html_character_reference, - STATE(1160), 4, + STATE(1176), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [48459] = 10, - ACTIONS(2747), 1, + [49444] = 10, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2827), 1, anon_sym_COLON, - ACTIONS(2753), 1, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2759), 1, + ACTIONS(2835), 1, anon_sym_SLASH_GT, - STATE(1173), 1, + STATE(1198), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48492] = 10, - ACTIONS(2747), 1, + [49477] = 10, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2827), 1, + anon_sym_COLON, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(2769), 1, + ACTIONS(2843), 1, anon_sym_SLASH_GT, - STATE(1178), 1, + STATE(1189), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48525] = 10, - ACTIONS(2747), 1, + [49510] = 10, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_DOT, - ACTIONS(2781), 1, + ACTIONS(2843), 1, anon_sym_SLASH_GT, - STATE(1167), 1, + STATE(1191), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48558] = 7, - ACTIONS(2789), 1, - anon_sym_LBRACE, - ACTIONS(2795), 1, - anon_sym_LT, - ACTIONS(2798), 1, - anon_sym_LT_SLASH, - STATE(1149), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2792), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1160), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [48585] = 10, - ACTIONS(2747), 1, + [49543] = 10, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2753), 1, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2779), 1, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(2849), 1, anon_sym_SLASH_GT, - STATE(1181), 1, + STATE(1208), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48618] = 10, - ACTIONS(2747), 1, + [49576] = 10, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2827), 1, + anon_sym_COLON, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(2759), 1, + ACTIONS(2851), 1, anon_sym_SLASH_GT, - STATE(1186), 1, + STATE(1204), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48651] = 10, - ACTIONS(2747), 1, + [49609] = 10, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2827), 1, + anon_sym_COLON, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(2779), 1, + ACTIONS(2849), 1, anon_sym_SLASH_GT, STATE(1184), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48684] = 10, - ACTIONS(2747), 1, + [49642] = 10, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2753), 1, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2781), 1, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(2851), 1, anon_sym_SLASH_GT, - STATE(1179), 1, + STATE(1206), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48717] = 10, - ACTIONS(2747), 1, + [49675] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2753), 1, - anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2769), 1, + ACTIONS(2868), 1, + anon_sym_GT, + ACTIONS(2870), 1, anon_sym_SLASH_GT, - STATE(1175), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48750] = 9, - ACTIONS(2747), 1, + [49705] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2800), 1, + ACTIONS(2872), 1, anon_sym_GT, - ACTIONS(2802), 1, + ACTIONS(2874), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48780] = 9, - ACTIONS(2747), 1, + [49735] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2804), 1, + ACTIONS(2876), 1, anon_sym_GT, - ACTIONS(2806), 1, + ACTIONS(2878), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48810] = 7, - ACTIONS(2749), 1, + [49765] = 9, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2808), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_DQUOTE, - ACTIONS(2812), 1, - anon_sym_SQUOTE, - STATE(1150), 1, - sym_jsx_opening_element, + ACTIONS(2829), 1, + anon_sym_GT, + ACTIONS(2831), 1, + sym_jsx_identifier, + ACTIONS(2843), 1, + anon_sym_SLASH_GT, + STATE(1192), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1266), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1291), 4, - sym_jsx_element, + STATE(1319), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [48836] = 9, - ACTIONS(1075), 1, + sym_jsx_attribute, + [49795] = 9, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2814), 1, + ACTIONS(2880), 1, sym_identifier, - ACTIONS(2816), 1, + ACTIONS(2882), 1, anon_sym_default, - ACTIONS(2818), 1, + ACTIONS(2884), 1, anon_sym_COMMA, - ACTIONS(2820), 1, + ACTIONS(2886), 1, anon_sym_RBRACE, - STATE(1443), 1, + STATE(1449), 1, sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1775), 2, + STATE(1827), 2, sym__module_export_name, sym_string, - [48866] = 7, - ACTIONS(2749), 1, - anon_sym_LBRACE, - ACTIONS(2808), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_DQUOTE, - ACTIONS(2812), 1, - anon_sym_SQUOTE, - STATE(1150), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1292), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [48892] = 8, - ACTIONS(2822), 1, + [49825] = 9, + ACTIONS(2823), 1, sym_identifier, ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - STATE(1171), 1, + ACTIONS(2868), 1, + anon_sym_GT, + ACTIONS(2888), 1, + anon_sym_SLASH_GT, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2828), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48920] = 8, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2835), 1, - anon_sym_COMMA, - ACTIONS(2837), 1, - anon_sym_RBRACE, - STATE(1414), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2833), 2, - anon_sym_default, - sym_identifier, - STATE(1423), 2, - sym__module_export_name, - sym_string, - [48948] = 9, - ACTIONS(2747), 1, + [49855] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2839), 1, + ACTIONS(2890), 1, anon_sym_GT, - ACTIONS(2841), 1, + ACTIONS(2892), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [48978] = 9, - ACTIONS(2747), 1, + [49885] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2759), 1, + ACTIONS(2872), 1, + anon_sym_GT, + ACTIONS(2894), 1, anon_sym_SLASH_GT, - STATE(1188), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49008] = 9, - ACTIONS(2747), 1, + [49915] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2839), 1, + ACTIONS(2876), 1, anon_sym_GT, - ACTIONS(2843), 1, + ACTIONS(2896), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49038] = 9, - ACTIONS(2747), 1, + [49945] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2779), 1, + ACTIONS(2835), 1, anon_sym_SLASH_GT, - STATE(1187), 1, + STATE(1186), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49068] = 9, - ACTIONS(2747), 1, + [49975] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, - sym_jsx_identifier, - ACTIONS(2845), 1, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2847), 1, + ACTIONS(2831), 1, + sym_jsx_identifier, + ACTIONS(2849), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1197), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49098] = 9, - ACTIONS(2747), 1, + [50005] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2804), 1, + ACTIONS(2890), 1, anon_sym_GT, - ACTIONS(2849), 1, + ACTIONS(2898), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49128] = 9, - ACTIONS(2747), 1, + [50035] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2839), 1, + ACTIONS(2890), 1, anon_sym_GT, - ACTIONS(2851), 1, + ACTIONS(2900), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49158] = 9, - ACTIONS(2747), 1, + [50065] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2800), 1, + ACTIONS(2876), 1, anon_sym_GT, - ACTIONS(2853), 1, + ACTIONS(2902), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49188] = 9, - ACTIONS(2747), 1, + [50095] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2839), 1, + ACTIONS(2868), 1, anon_sym_GT, - ACTIONS(2855), 1, + ACTIONS(2904), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49218] = 9, - ACTIONS(2747), 1, + [50125] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, - sym_jsx_identifier, - ACTIONS(2845), 1, + ACTIONS(2829), 1, anon_sym_GT, - ACTIONS(2857), 1, + ACTIONS(2831), 1, + sym_jsx_identifier, + ACTIONS(2851), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1207), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49248] = 9, - ACTIONS(2747), 1, - sym_identifier, - ACTIONS(2749), 1, + [50155] = 7, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, - sym_jsx_identifier, - ACTIONS(2845), 1, - anon_sym_GT, - ACTIONS(2859), 1, - anon_sym_SLASH_GT, - STATE(1171), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, - sym_jsx_namespace_name, + ACTIONS(2906), 1, + anon_sym_LT, + ACTIONS(2908), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_SQUOTE, + STATE(1169), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [49278] = 9, - ACTIONS(2747), 1, - sym_identifier, - ACTIONS(2749), 1, + sym_jsx_self_closing_element, + sym__jsx_string, + [50181] = 7, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, - sym_jsx_identifier, - ACTIONS(2804), 1, - anon_sym_GT, - ACTIONS(2861), 1, - anon_sym_SLASH_GT, - STATE(1171), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, - sym_jsx_namespace_name, + ACTIONS(2906), 1, + anon_sym_LT, + ACTIONS(2908), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_SQUOTE, + STATE(1169), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1318), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [49308] = 9, - ACTIONS(2747), 1, + sym_jsx_self_closing_element, + sym__jsx_string, + [50207] = 8, + ACTIONS(2912), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2915), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2920), 1, sym_jsx_identifier, - ACTIONS(2845), 1, - anon_sym_GT, - ACTIONS(2863), 1, - anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + ACTIONS(2918), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49338] = 9, - ACTIONS(2747), 1, + [50235] = 8, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2925), 1, + anon_sym_COMMA, + ACTIONS(2927), 1, + anon_sym_RBRACE, + STATE(1446), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2923), 2, + anon_sym_default, + sym_identifier, + STATE(1451), 2, + sym__module_export_name, + sym_string, + [50263] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2804), 1, + ACTIONS(2868), 1, anon_sym_GT, - ACTIONS(2865), 1, + ACTIONS(2929), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49368] = 9, - ACTIONS(2747), 1, + [50293] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2800), 1, + ACTIONS(2890), 1, anon_sym_GT, - ACTIONS(2867), 1, + ACTIONS(2931), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49398] = 9, - ACTIONS(2747), 1, + [50323] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2800), 1, + ACTIONS(2872), 1, anon_sym_GT, - ACTIONS(2869), 1, + ACTIONS(2933), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49428] = 9, - ACTIONS(2747), 1, + [50353] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2781), 1, + ACTIONS(2876), 1, + anon_sym_GT, + ACTIONS(2935), 1, anon_sym_SLASH_GT, - STATE(1166), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49458] = 9, - ACTIONS(2747), 1, + [50383] = 9, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, sym_jsx_identifier, - ACTIONS(2769), 1, + ACTIONS(2872), 1, + anon_sym_GT, + ACTIONS(2937), 1, anon_sym_SLASH_GT, - STATE(1180), 1, + STATE(1202), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1266), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1319), 2, sym_jsx_expression, sym_jsx_attribute, - [49488] = 7, - ACTIONS(1100), 1, - sym_identifier, - ACTIONS(1102), 1, + [50413] = 7, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, - anon_sym_of, - ACTIONS(1106), 1, + ACTIONS(1140), 1, anon_sym_LBRACK, - STATE(1390), 1, + ACTIONS(1450), 1, + sym_identifier, + ACTIONS(2939), 1, + anon_sym_of, + STATE(1358), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, + STATE(1239), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49513] = 7, - ACTIONS(1075), 1, + [50438] = 7, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2871), 1, + ACTIONS(2941), 1, anon_sym_RBRACE, - STATE(1541), 1, + STATE(1747), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2833), 2, + ACTIONS(2923), 2, anon_sym_default, sym_identifier, - STATE(1423), 2, + STATE(1451), 2, sym__module_export_name, sym_string, - [49538] = 8, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2814), 1, + [50463] = 7, + ACTIONS(1134), 1, sym_identifier, - ACTIONS(2816), 1, - anon_sym_default, - ACTIONS(2873), 1, - anon_sym_RBRACE, - STATE(1592), 1, - sym_import_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1775), 2, - sym__module_export_name, - sym_string, - [49565] = 7, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2875), 1, - anon_sym_RBRACE, - STATE(1541), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2833), 2, - anon_sym_default, - sym_identifier, - STATE(1423), 2, - sym__module_export_name, - sym_string, - [49590] = 7, - ACTIONS(1102), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - sym_identifier, - ACTIONS(2877), 1, + ACTIONS(1138), 1, anon_sym_of, - STATE(1385), 1, + ACTIONS(1140), 1, + anon_sym_LBRACK, + STATE(1380), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1202), 3, + STATE(1279), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49615] = 7, - ACTIONS(1100), 1, + [50488] = 7, + ACTIONS(1134), 1, sym_identifier, - ACTIONS(1102), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1138), 1, anon_sym_of, - ACTIONS(1106), 1, + ACTIONS(1140), 1, anon_sym_LBRACK, - STATE(1391), 1, + STATE(1357), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, + STATE(1279), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49640] = 7, - ACTIONS(1100), 1, + [50513] = 8, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2880), 1, sym_identifier, - ACTIONS(1102), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, - anon_sym_of, - ACTIONS(1106), 1, - anon_sym_LBRACK, - STATE(1380), 1, - sym_variable_declarator, + ACTIONS(2882), 1, + anon_sym_default, + ACTIONS(2943), 1, + anon_sym_RBRACE, + STATE(1626), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [49665] = 8, - ACTIONS(1075), 1, + STATE(1827), 2, + sym__module_export_name, + sym_string, + [50540] = 8, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, - ACTIONS(2814), 1, + ACTIONS(2880), 1, sym_identifier, - ACTIONS(2816), 1, + ACTIONS(2882), 1, anon_sym_default, - ACTIONS(2879), 1, + ACTIONS(2945), 1, anon_sym_RBRACE, - STATE(1592), 1, + STATE(1626), 1, sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1775), 2, + STATE(1827), 2, sym__module_export_name, sym_string, - [49692] = 7, - ACTIONS(1100), 1, + [50567] = 7, + ACTIONS(1134), 1, sym_identifier, - ACTIONS(1102), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1138), 1, anon_sym_of, - ACTIONS(1106), 1, + ACTIONS(1140), 1, anon_sym_LBRACK, - STATE(1385), 1, + STATE(1358), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, + STATE(1279), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49717] = 7, - ACTIONS(1102), 1, - anon_sym_LBRACE, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, + [50592] = 7, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2947), 1, + anon_sym_RBRACE, + STATE(1747), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2923), 2, + anon_sym_default, sym_identifier, - ACTIONS(2883), 1, + STATE(1451), 2, + sym__module_export_name, + sym_string, + [50617] = 7, + ACTIONS(1134), 1, + sym_identifier, + ACTIONS(1136), 1, + anon_sym_LBRACE, + ACTIONS(1138), 1, anon_sym_of, - STATE(1380), 1, + ACTIONS(1140), 1, + anon_sym_LBRACK, + STATE(1459), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1208), 3, + STATE(1279), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49742] = 7, - ACTIONS(1100), 1, + [50642] = 7, + ACTIONS(1134), 1, sym_identifier, - ACTIONS(1102), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1138), 1, anon_sym_of, - ACTIONS(1106), 1, + ACTIONS(1140), 1, anon_sym_LBRACK, - STATE(1415), 1, + STATE(1400), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, + STATE(1279), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49767] = 6, - ACTIONS(862), 1, - anon_sym_EQ, - ACTIONS(2889), 1, - sym__automatic_semicolon, - STATE(1425), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2885), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2887), 2, - anon_sym_of, - anon_sym_in, - [49789] = 6, - ACTIONS(1102), 1, + [50667] = 7, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(1106), 1, + ACTIONS(1140), 1, anon_sym_LBRACK, - ACTIONS(2892), 1, + ACTIONS(2949), 1, sym_identifier, - ACTIONS(2894), 1, + ACTIONS(2951), 1, anon_sym_of, + STATE(1357), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1495), 3, + STATE(1238), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49811] = 4, - ACTIONS(2896), 1, - anon_sym_COMMA, - STATE(1204), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1836), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [49829] = 6, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - STATE(1541), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2833), 2, - anon_sym_default, - sym_identifier, - STATE(1423), 2, - sym__module_export_name, - sym_string, - [49851] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2899), 7, + [50692] = 7, + ACTIONS(111), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_EQ, - anon_sym_RBRACK, - [49865] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2901), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_EQ, - anon_sym_RBRACK, - [49879] = 5, - ACTIONS(2903), 1, - anon_sym_EQ, - STATE(1285), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2887), 2, - anon_sym_of, - anon_sym_in, - ACTIONS(2885), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [49899] = 6, - ACTIONS(862), 1, - anon_sym_EQ, - ACTIONS(864), 1, - sym__automatic_semicolon, - STATE(1408), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(858), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2905), 2, - anon_sym_of, - anon_sym_in, - [49921] = 7, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - ACTIONS(2401), 1, + ACTIONS(2465), 1, anon_sym_RBRACE, - STATE(1418), 1, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - [49945] = 7, - ACTIONS(103), 1, + [50716] = 6, + ACTIONS(1136), 1, + anon_sym_LBRACE, + ACTIONS(1140), 1, + anon_sym_LBRACK, + ACTIONS(2953), 1, + sym_identifier, + ACTIONS(2955), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1470), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [50738] = 7, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - ACTIONS(2399), 1, + ACTIONS(2467), 1, anon_sym_RBRACE, - STATE(1418), 1, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - [49969] = 7, - ACTIONS(103), 1, + [50762] = 7, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(216), 1, + ACTIONS(324), 1, anon_sym_RBRACE, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1418), 1, + STATE(1457), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - [49993] = 6, - ACTIONS(1102), 1, + [50786] = 6, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(1106), 1, + ACTIONS(1140), 1, anon_sym_LBRACK, - ACTIONS(1469), 1, + ACTIONS(1493), 1, sym_identifier, - ACTIONS(2907), 1, + ACTIONS(2957), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1469), 3, + STATE(1479), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [50015] = 7, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(2393), 1, - anon_sym_RBRACE, - ACTIONS(2397), 1, - anon_sym_EQ, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2395), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [50039] = 5, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2909), 1, + [50808] = 7, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(2880), 1, sym_identifier, - ACTIONS(2913), 1, - anon_sym_EQ, + ACTIONS(2882), 1, + anon_sym_default, + STATE(1626), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, - sym_comment, - ACTIONS(2911), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [50059] = 5, - ACTIONS(2903), 1, - anon_sym_EQ, - STATE(1283), 1, - sym__initializer, + sym_comment, + STATE(1827), 2, + sym__module_export_name, + sym_string, + [50832] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2905), 2, - anon_sym_of, - anon_sym_in, - ACTIONS(858), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [50079] = 7, - ACTIONS(103), 1, + ACTIONS(2959), 7, anon_sym_COMMA, - ACTIONS(171), 1, anon_sym_RBRACE, - ACTIONS(2397), 1, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, anon_sym_EQ, - STATE(1452), 1, - aux_sym_object_pattern_repeat1, - STATE(1487), 1, - aux_sym_object_repeat1, + anon_sym_RBRACK, + [50846] = 4, + ACTIONS(2035), 1, + anon_sym_COMMA, + STATE(1232), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, - anon_sym_LPAREN, + ACTIONS(2961), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - [50103] = 2, + anon_sym_RBRACK, + [50864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2915), 7, + ACTIONS(2963), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, @@ -85005,11 +87481,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_EQ, anon_sym_RBRACK, - [50117] = 2, + [50878] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2917), 7, + ACTIONS(2965), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, @@ -85017,5824 +87493,5866 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_EQ, anon_sym_RBRACK, - [50131] = 7, - ACTIONS(103), 1, + [50892] = 7, + ACTIONS(111), 1, anon_sym_COMMA, - ACTIONS(351), 1, + ACTIONS(369), 1, anon_sym_RBRACE, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1418), 1, + STATE(1475), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - [50155] = 7, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2814), 1, - sym_identifier, - ACTIONS(2816), 1, - anon_sym_default, - STATE(1592), 1, - sym_import_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1775), 2, - sym__module_export_name, - sym_string, - [50179] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2919), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_EQ, - anon_sym_RBRACK, - [50193] = 6, - ACTIONS(1969), 1, + [50916] = 6, + ACTIONS(2051), 1, anon_sym_LBRACE, - ACTIONS(2921), 1, + ACTIONS(2967), 1, sym_identifier, - ACTIONS(2923), 1, + ACTIONS(2969), 1, anon_sym_of, - ACTIONS(2925), 1, + ACTIONS(2971), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1338), 3, + STATE(1383), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [50215] = 4, - ACTIONS(1983), 1, + [50938] = 4, + ACTIONS(2973), 1, anon_sym_COMMA, - STATE(1204), 1, + STATE(1232), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2927), 5, + ACTIONS(1904), 5, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [50233] = 3, - ACTIONS(2929), 1, - sym_identifier, + [50956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2931), 5, - anon_sym_LBRACE, + ACTIONS(2976), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, anon_sym_EQ, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [50248] = 4, - ACTIONS(2933), 1, + anon_sym_RBRACK, + [50970] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2978), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + anon_sym_RBRACK, + [50984] = 7, + ACTIONS(111), 1, + anon_sym_COMMA, + ACTIONS(2463), 1, + anon_sym_EQ, + ACTIONS(2469), 1, + anon_sym_RBRACE, + STATE(1457), 1, + aux_sym_object_repeat1, + STATE(1477), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2461), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [51008] = 5, + ACTIONS(2827), 1, + anon_sym_COLON, + ACTIONS(2980), 1, sym_identifier, - ACTIONS(2937), 1, + ACTIONS(2984), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2935), 4, + ACTIONS(2982), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [50265] = 2, + [51028] = 5, + ACTIONS(2988), 1, + anon_sym_EQ, + STATE(1272), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1912), 6, + ACTIONS(2986), 2, + anon_sym_of, + anon_sym_in, + ACTIONS(774), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, + [51048] = 5, + ACTIONS(2988), 1, + anon_sym_EQ, + STATE(1297), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2992), 2, + anon_sym_of, anon_sym_in, + ACTIONS(2990), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [51068] = 6, + ACTIONS(778), 1, anon_sym_EQ, - [50278] = 6, - ACTIONS(862), 1, + ACTIONS(2994), 1, + sym__automatic_semicolon, + STATE(1469), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2990), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2992), 2, + anon_sym_of, + anon_sym_in, + [51090] = 7, + ACTIONS(111), 1, + anon_sym_COMMA, + ACTIONS(371), 1, + anon_sym_RBRACE, + ACTIONS(2463), 1, anon_sym_EQ, - ACTIONS(2939), 1, + STATE(1457), 1, + aux_sym_object_repeat1, + STATE(1477), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2461), 2, anon_sym_LPAREN, - STATE(1515), 1, - sym_formal_parameters, - STATE(1702), 1, + anon_sym_COLON, + [51114] = 6, + ACTIONS(778), 1, + anon_sym_EQ, + ACTIONS(780), 1, + sym__automatic_semicolon, + STATE(1463), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2941), 2, - sym__automatic_semicolon, + ACTIONS(774), 2, + anon_sym_COMMA, anon_sym_SEMI, - [50299] = 5, - ACTIONS(2945), 1, + ACTIONS(2986), 2, + anon_sym_of, + anon_sym_in, + [51136] = 6, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + STATE(1747), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2923), 2, + anon_sym_default, + sym_identifier, + STATE(1451), 2, + sym__module_export_name, + sym_string, + [51158] = 5, + ACTIONS(2999), 1, anon_sym_BQUOTE, - ACTIONS(2947), 1, + ACTIONS(3001), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2943), 2, + ACTIONS(2997), 2, sym__template_chars, sym_escape_sequence, - STATE(1240), 2, + STATE(1249), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [50318] = 3, - ACTIONS(2949), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2951), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - [50333] = 6, - ACTIONS(862), 1, + [51177] = 6, + ACTIONS(778), 1, anon_sym_EQ, - ACTIONS(2939), 1, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1500), 1, - sym__initializer, STATE(1556), 1, sym_formal_parameters, + STATE(1670), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2953), 2, + ACTIONS(3005), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50354] = 6, - ACTIONS(862), 1, - anon_sym_EQ, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1557), 1, - sym_formal_parameters, - STATE(1678), 1, - sym__initializer, + [51198] = 5, + ACTIONS(3001), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3009), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2955), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50375] = 5, - ACTIONS(2960), 1, - anon_sym_BQUOTE, - ACTIONS(2962), 1, + ACTIONS(3007), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1243), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [51217] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1702), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [51230] = 5, + ACTIONS(3001), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3013), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2957), 2, + ACTIONS(3011), 2, sym__template_chars, sym_escape_sequence, - STATE(1233), 2, + STATE(1254), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [50394] = 2, + [51249] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2919), 6, + ACTIONS(1948), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, anon_sym_in, anon_sym_EQ, - [50407] = 2, + [51262] = 5, + ACTIONS(3018), 1, + anon_sym_BQUOTE, + ACTIONS(3020), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [50420] = 5, - ACTIONS(2965), 1, - anon_sym_default, - ACTIONS(2967), 1, - anon_sym_RBRACE, - ACTIONS(2969), 1, - anon_sym_case, + ACTIONS(3015), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1249), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [51281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1246), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [50439] = 2, + ACTIONS(1950), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [51294] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1680), 6, - anon_sym_as, + ACTIONS(1946), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [50452] = 2, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [51307] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2899), 6, + ACTIONS(2963), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, anon_sym_in, anon_sym_EQ, - [50465] = 5, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, + [51320] = 5, + ACTIONS(3023), 1, + anon_sym_default, + ACTIONS(3025), 1, + anon_sym_RBRACE, + ACTIONS(3027), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2971), 2, - anon_sym_default, - sym_identifier, - STATE(1805), 2, - sym__module_export_name, - sym_string, - [50484] = 5, - ACTIONS(2947), 1, + STATE(1258), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [51339] = 5, + ACTIONS(3001), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2975), 1, + ACTIONS(3029), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2973), 2, + ACTIONS(2997), 2, sym__template_chars, sym_escape_sequence, - STATE(1233), 2, + STATE(1249), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [50503] = 2, + [51358] = 5, + ACTIONS(2051), 1, + anon_sym_LBRACE, + ACTIONS(2971), 1, + anon_sym_LBRACK, + ACTIONS(3031), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1914), 6, + STATE(1856), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [51377] = 5, + ACTIONS(3023), 1, + anon_sym_default, + ACTIONS(3027), 1, + anon_sym_case, + ACTIONS(3033), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1253), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [51396] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2976), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, anon_sym_in, anon_sym_EQ, - [50516] = 5, - ACTIONS(2947), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2979), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2977), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1244), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [50535] = 5, - ACTIONS(2981), 1, + [51409] = 5, + ACTIONS(3035), 1, anon_sym_default, - ACTIONS(2984), 1, + ACTIONS(3038), 1, anon_sym_RBRACE, - ACTIONS(2986), 1, + ACTIONS(3040), 1, anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1243), 3, + STATE(1258), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [50554] = 5, - ACTIONS(2947), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2989), 1, - anon_sym_BQUOTE, + [51428] = 3, + ACTIONS(3043), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2973), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1233), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [50573] = 6, - ACTIONS(862), 1, + ACTIONS(3045), 5, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(2939), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51443] = 3, + ACTIONS(3047), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3049), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + [51458] = 6, + ACTIONS(778), 1, + anon_sym_EQ, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1617), 1, + STATE(1625), 1, sym_formal_parameters, - STATE(1732), 1, + STATE(1743), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2991), 2, + ACTIONS(3051), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50594] = 5, - ACTIONS(2965), 1, - anon_sym_default, - ACTIONS(2969), 1, - anon_sym_case, - ACTIONS(2993), 1, - anon_sym_RBRACE, + [51479] = 6, + ACTIONS(778), 1, + anon_sym_EQ, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1627), 1, + sym_formal_parameters, + STATE(1714), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1243), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [50613] = 2, + ACTIONS(3053), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51500] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2915), 6, + ACTIONS(2965), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, anon_sym_in, anon_sym_EQ, - [50626] = 2, + [51513] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2901), 6, + ACTIONS(2978), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, anon_sym_in, anon_sym_EQ, - [50639] = 2, + [51526] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2917), 6, + ACTIONS(2959), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, anon_sym_in, anon_sym_EQ, - [50652] = 5, - ACTIONS(1075), 1, + [51539] = 4, + ACTIONS(3055), 1, + sym_identifier, + ACTIONS(3059), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3057), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51556] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1822), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [51569] = 5, + ACTIONS(1103), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, + ACTIONS(1105), 1, anon_sym_SQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2995), 2, + ACTIONS(3061), 2, anon_sym_default, sym_identifier, - STATE(1543), 2, + STATE(1750), 2, sym__module_export_name, sym_string, - [50671] = 2, + [51588] = 6, + ACTIONS(778), 1, + anon_sym_EQ, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1572), 1, + sym__initializer, + STATE(1652), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1916), 6, + ACTIONS(3063), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - anon_sym_in, - anon_sym_EQ, - [50684] = 5, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(2925), 1, - anon_sym_LBRACK, - ACTIONS(2997), 1, + [51609] = 5, + ACTIONS(1103), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + anon_sym_SQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3065), 2, + anon_sym_default, sym_identifier, + STATE(1818), 2, + sym__module_export_name, + sym_string, + [51628] = 6, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(3067), 1, + anon_sym_export, + ACTIONS(3069), 1, + anon_sym_class, + STATE(1069), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1840), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [50703] = 3, - ACTIONS(2999), 1, - anon_sym_EQ, + [51648] = 4, + ACTIONS(3073), 1, + anon_sym_of, + ACTIONS(3075), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 4, + ACTIONS(3071), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [50717] = 3, - ACTIONS(3003), 1, + anon_sym_SEMI, + [51664] = 3, + ACTIONS(1720), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1722), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51678] = 3, + ACTIONS(1720), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3001), 4, + ACTIONS(1722), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [50731] = 3, - ACTIONS(1658), 1, + [51692] = 3, + ACTIONS(1724), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1660), 4, + ACTIONS(1726), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [50745] = 3, - ACTIONS(1603), 1, - sym_identifier, + [51706] = 3, + ACTIONS(1748), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1605), 4, + ACTIONS(1750), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [50759] = 3, - ACTIONS(3005), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51720] = 6, + ACTIONS(3077), 1, + sym_identifier, + ACTIONS(3079), 1, + anon_sym_LBRACE, + ACTIONS(3081), 1, + anon_sym_extends, + STATE(776), 1, + sym_class_body, + STATE(1717), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51740] = 3, + ACTIONS(1724), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3007), 4, + ACTIONS(1726), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [50773] = 3, - ACTIONS(1666), 1, + [51754] = 4, + ACTIONS(778), 1, + anon_sym_EQ, + STATE(1469), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2990), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [51770] = 3, + ACTIONS(1748), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 4, + ACTIONS(1750), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [50787] = 3, - ACTIONS(1670), 1, + [51784] = 3, + ACTIONS(1748), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 4, + ACTIONS(1750), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [50801] = 6, - ACTIONS(3009), 1, + [51798] = 3, + ACTIONS(3085), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3083), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51812] = 6, + ACTIONS(3087), 1, sym_identifier, - ACTIONS(3011), 1, + ACTIONS(3089), 1, anon_sym_GT, - ACTIONS(3013), 1, + ACTIONS(3091), 1, sym_jsx_identifier, - STATE(1163), 1, + STATE(1622), 1, sym_nested_identifier, - STATE(1176), 1, + STATE(1870), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50821] = 6, - ACTIONS(3015), 1, - sym_identifier, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3019), 1, - anon_sym_extends, - STATE(732), 1, - sym_class_body, - STATE(1510), 1, - sym_class_heritage, + [51832] = 3, + ACTIONS(1748), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50841] = 6, + ACTIONS(1750), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51846] = 6, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_COLON, - ACTIONS(2397), 1, + ACTIONS(2463), 1, anon_sym_EQ, - ACTIONS(3021), 1, + ACTIONS(3093), 1, anon_sym_RBRACE, - STATE(1419), 1, + STATE(1477), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50861] = 3, - ACTIONS(1694), 1, + [51866] = 3, + ACTIONS(1748), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 4, + ACTIONS(1750), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [50875] = 3, - ACTIONS(1694), 1, + [51880] = 6, + ACTIONS(3079), 1, + anon_sym_LBRACE, + ACTIONS(3081), 1, + anon_sym_extends, + ACTIONS(3095), 1, sym_identifier, + STATE(776), 1, + sym_class_body, + STATE(1717), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [50889] = 3, - ACTIONS(1694), 1, + [51900] = 3, + ACTIONS(1748), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 4, + ACTIONS(1750), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [50903] = 3, - ACTIONS(3025), 1, - anon_sym_LT, + [51914] = 6, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3099), 1, + anon_sym_GT, + ACTIONS(3101), 1, + sym_jsx_identifier, + STATE(1702), 1, + sym_nested_identifier, + STATE(1785), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3023), 4, - sym_jsx_text, + [51934] = 6, + ACTIONS(3079), 1, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [50917] = 6, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(3027), 1, - anon_sym_export, - ACTIONS(3029), 1, - anon_sym_class, - STATE(1041), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, + ACTIONS(3081), 1, + anon_sym_extends, + ACTIONS(3103), 1, + sym_identifier, + STATE(806), 1, + sym_class_body, + STATE(1621), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50937] = 6, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3019), 1, + [51954] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1702), 5, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [51966] = 5, + ACTIONS(2341), 1, + anon_sym_COMMA, + ACTIONS(2505), 1, + anon_sym_RBRACE, + STATE(1430), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2461), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [51984] = 6, + ACTIONS(3081), 1, anon_sym_extends, - ACTIONS(3031), 1, + ACTIONS(3105), 1, sym_identifier, - STATE(732), 1, + ACTIONS(3107), 1, + anon_sym_LBRACE, + STATE(624), 1, sym_class_body, - STATE(1510), 1, + STATE(1624), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50957] = 3, - ACTIONS(1694), 1, + [52004] = 3, + ACTIONS(1748), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1750), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [52018] = 3, + ACTIONS(1748), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1750), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [52032] = 3, + ACTIONS(1708), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 4, + ACTIONS(1710), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [50971] = 3, - ACTIONS(1599), 1, - sym_identifier, + [52046] = 4, + ACTIONS(3111), 1, + anon_sym_of, + ACTIONS(3113), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1601), 4, - anon_sym_LBRACE, + ACTIONS(3109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [52062] = 6, + ACTIONS(3115), 1, + sym_identifier, + ACTIONS(3117), 1, anon_sym_GT, + ACTIONS(3119), 1, sym_jsx_identifier, - anon_sym_SLASH_GT, - [50985] = 6, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3019), 1, - anon_sym_extends, - ACTIONS(3033), 1, - sym_identifier, - STATE(748), 1, - sym_class_body, - STATE(1656), 1, - sym_class_heritage, + STATE(1179), 1, + sym_nested_identifier, + STATE(1187), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51005] = 3, - ACTIONS(3037), 1, + [52082] = 3, + ACTIONS(3123), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3035), 4, + ACTIONS(3121), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [51019] = 6, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3019), 1, - anon_sym_extends, - ACTIONS(3039), 1, + [52096] = 3, + ACTIONS(3125), 1, sym_identifier, - STATE(748), 1, - sym_class_body, - STATE(1656), 1, - sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51039] = 2, + ACTIONS(3127), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [52110] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1680), 5, + ACTIONS(1822), 5, sym__automatic_semicolon, anon_sym_with, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [51051] = 3, - ACTIONS(1603), 1, + [52122] = 3, + ACTIONS(3123), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1605), 4, + ACTIONS(3121), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [51065] = 3, - ACTIONS(3041), 1, - sym_identifier, + [52136] = 3, + ACTIONS(3123), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3043), 4, + ACTIONS(3121), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [51079] = 5, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(2416), 1, - anon_sym_RBRACE, - STATE(1464), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2395), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [51097] = 3, - ACTIONS(3037), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [52150] = 3, + ACTIONS(3123), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3035), 4, + ACTIONS(3121), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [51111] = 6, - ACTIONS(3045), 1, + [52164] = 3, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(3047), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1797), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [52178] = 6, + ACTIONS(3129), 1, + sym_identifier, + ACTIONS(3131), 1, anon_sym_GT, - ACTIONS(3049), 1, + ACTIONS(3133), 1, sym_jsx_identifier, - STATE(1736), 1, + STATE(1521), 1, sym_nested_identifier, - STATE(1846), 1, + STATE(1771), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51131] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1530), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_RBRACK, - [51143] = 3, - ACTIONS(1666), 1, - anon_sym_LT, + [52198] = 3, + ACTIONS(3135), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 4, - sym_jsx_text, + ACTIONS(3137), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51157] = 3, - ACTIONS(3051), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [52212] = 3, + ACTIONS(3139), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1530), 4, + ACTIONS(1568), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [51171] = 4, - ACTIONS(3056), 1, - anon_sym_of, - ACTIONS(3058), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3054), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [51187] = 6, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3019), 1, - anon_sym_extends, - ACTIONS(3060), 1, - sym_identifier, - STATE(732), 1, - sym_class_body, - STATE(1510), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51207] = 4, - ACTIONS(3064), 1, - anon_sym_of, - ACTIONS(3066), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3062), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [51223] = 6, - ACTIONS(3019), 1, - anon_sym_extends, - ACTIONS(3068), 1, + [52226] = 6, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3070), 1, - anon_sym_LBRACE, - STATE(604), 1, - sym_class_body, - STATE(1738), 1, - sym_class_heritage, + ACTIONS(3144), 1, + anon_sym_GT, + ACTIONS(3146), 1, + sym_jsx_identifier, + STATE(1660), 1, + sym_nested_identifier, + STATE(1784), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51243] = 3, - ACTIONS(3074), 1, + [52246] = 3, + ACTIONS(1795), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3072), 4, + ACTIONS(1797), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [51257] = 6, - ACTIONS(3011), 1, - anon_sym_GT, - ACTIONS(3076), 1, - sym_identifier, - ACTIONS(3078), 1, - sym_jsx_identifier, - STATE(1158), 1, - sym_nested_identifier, - STATE(1190), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51277] = 6, - ACTIONS(3017), 1, + [52260] = 6, + ACTIONS(3079), 1, anon_sym_LBRACE, - ACTIONS(3019), 1, + ACTIONS(3081), 1, anon_sym_extends, - ACTIONS(3080), 1, + ACTIONS(3148), 1, sym_identifier, - STATE(748), 1, + STATE(806), 1, sym_class_body, - STATE(1656), 1, + STATE(1621), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51297] = 3, - ACTIONS(1670), 1, + [52280] = 3, + ACTIONS(1708), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 4, + ACTIONS(1710), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [51311] = 3, - ACTIONS(3082), 1, + [52294] = 6, + ACTIONS(3081), 1, + anon_sym_extends, + ACTIONS(3107), 1, + anon_sym_LBRACE, + ACTIONS(3150), 1, sym_identifier, + STATE(611), 1, + sym_class_body, + STATE(1519), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3084), 4, - anon_sym_LBRACE, + [52314] = 6, + ACTIONS(3117), 1, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [51325] = 3, - ACTIONS(3086), 1, + ACTIONS(3152), 1, sym_identifier, + ACTIONS(3154), 1, + sym_jsx_identifier, + STATE(1183), 1, + sym_nested_identifier, + STATE(1199), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3088), 4, - anon_sym_LBRACE, + [52334] = 6, + ACTIONS(3117), 1, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [51339] = 6, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(3090), 1, + ACTIONS(3156), 1, sym_identifier, - ACTIONS(3092), 1, - anon_sym_LBRACK, - ACTIONS(3094), 1, - sym_private_property_identifier, - STATE(609), 1, - sym_arguments, + ACTIONS(3158), 1, + sym_jsx_identifier, + STATE(1180), 1, + sym_nested_identifier, + STATE(1194), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51359] = 3, - ACTIONS(1694), 1, + [52354] = 3, + ACTIONS(3162), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 4, + ACTIONS(3160), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [51373] = 6, - ACTIONS(3096), 1, - sym_identifier, - ACTIONS(3098), 1, - anon_sym_GT, - ACTIONS(3100), 1, - sym_jsx_identifier, - STATE(1550), 1, - sym_nested_identifier, - STATE(1799), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51393] = 6, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(2395), 1, - anon_sym_COLON, - ACTIONS(2397), 1, - anon_sym_EQ, - ACTIONS(3102), 1, - anon_sym_RBRACE, - STATE(1452), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51413] = 4, - ACTIONS(2397), 1, + [52368] = 4, + ACTIONS(2463), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, + ACTIONS(2461), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2436), 2, + ACTIONS(2484), 2, anon_sym_COMMA, anon_sym_RBRACE, - [51429] = 6, - ACTIONS(3019), 1, - anon_sym_extends, - ACTIONS(3070), 1, - anon_sym_LBRACE, - ACTIONS(3104), 1, + [52384] = 3, + ACTIONS(3164), 1, sym_identifier, - STATE(615), 1, - sym_class_body, - STATE(1554), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51449] = 3, - ACTIONS(1694), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1696), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51463] = 3, - ACTIONS(1694), 1, - anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 4, - sym_jsx_text, + ACTIONS(3166), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51477] = 3, - ACTIONS(3108), 1, - anon_sym_LT, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [52398] = 3, + ACTIONS(3168), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3106), 4, - sym_jsx_text, + ACTIONS(3170), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51491] = 3, - ACTIONS(1694), 1, - anon_sym_LT, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [52412] = 3, + ACTIONS(3172), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 4, - sym_jsx_text, + ACTIONS(3174), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51505] = 6, - ACTIONS(3011), 1, anon_sym_GT, - ACTIONS(3110), 1, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [52426] = 6, + ACTIONS(3117), 1, + anon_sym_GT, + ACTIONS(3176), 1, sym_identifier, - ACTIONS(3112), 1, + ACTIONS(3178), 1, sym_jsx_identifier, - STATE(1159), 1, + STATE(1175), 1, sym_nested_identifier, - STATE(1189), 1, + STATE(1193), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51525] = 4, - ACTIONS(862), 1, - anon_sym_EQ, - STATE(1408), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(858), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [51541] = 3, - ACTIONS(3114), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3116), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [51555] = 6, - ACTIONS(93), 1, + [52446] = 6, + ACTIONS(101), 1, anon_sym_AT, - ACTIONS(3118), 1, + ACTIONS(3180), 1, anon_sym_export, - ACTIONS(3120), 1, + ACTIONS(3182), 1, anon_sym_class, - STATE(1041), 1, + STATE(1069), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1107), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51575] = 3, - ACTIONS(3122), 1, + [52466] = 6, + ACTIONS(3079), 1, + anon_sym_LBRACE, + ACTIONS(3081), 1, + anon_sym_extends, + ACTIONS(3184), 1, + sym_identifier, + STATE(806), 1, + sym_class_body, + STATE(1621), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52486] = 3, + ACTIONS(3186), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1530), 4, + ACTIONS(1568), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [51589] = 3, - ACTIONS(1599), 1, - anon_sym_LT, + [52500] = 3, + ACTIONS(1653), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1601), 4, - sym_jsx_text, + ACTIONS(1655), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51603] = 3, - ACTIONS(3037), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [52514] = 3, + ACTIONS(3191), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3035), 4, + ACTIONS(3189), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [51617] = 6, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(3125), 1, - sym_identifier, - ACTIONS(3127), 1, - anon_sym_LBRACK, - ACTIONS(3129), 1, - sym_private_property_identifier, - STATE(784), 1, - sym_arguments, + [52528] = 6, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(2461), 1, + anon_sym_COLON, + ACTIONS(2463), 1, + anon_sym_EQ, + ACTIONS(3193), 1, + anon_sym_RBRACE, + STATE(1458), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51637] = 4, - ACTIONS(862), 1, + [52548] = 3, + ACTIONS(3195), 1, anon_sym_EQ, - STATE(1425), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2885), 3, - sym__automatic_semicolon, + ACTIONS(1558), 4, anon_sym_COMMA, - anon_sym_SEMI, - [51653] = 3, - ACTIONS(1658), 1, - sym_identifier, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [52562] = 3, + ACTIONS(1653), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1660), 4, + ACTIONS(1655), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [51667] = 6, - ACTIONS(3131), 1, - sym_identifier, - ACTIONS(3133), 1, - anon_sym_GT, - ACTIONS(3135), 1, - sym_jsx_identifier, - STATE(1534), 1, - sym_nested_identifier, - STATE(1814), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51687] = 3, - ACTIONS(3025), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [52576] = 3, + ACTIONS(3191), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3023), 4, + ACTIONS(3189), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [51701] = 6, - ACTIONS(3137), 1, + [52590] = 6, + ACTIONS(3079), 1, + anon_sym_LBRACE, + ACTIONS(3081), 1, + anon_sym_extends, + ACTIONS(3197), 1, sym_identifier, - ACTIONS(3139), 1, - anon_sym_GT, - ACTIONS(3141), 1, - sym_jsx_identifier, - STATE(1512), 1, - sym_nested_identifier, - STATE(1861), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51721] = 2, + STATE(776), 1, + sym_class_body, + STATE(1717), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 5, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [51733] = 3, - ACTIONS(3037), 1, + [52610] = 3, + ACTIONS(3201), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3035), 4, + ACTIONS(3199), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [51747] = 6, - ACTIONS(3011), 1, - anon_sym_GT, - ACTIONS(3143), 1, - sym_identifier, - ACTIONS(3145), 1, - sym_jsx_identifier, - STATE(1162), 1, - sym_nested_identifier, - STATE(1174), 1, - sym_jsx_namespace_name, + [52624] = 4, + ACTIONS(778), 1, + anon_sym_EQ, + STATE(1463), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51767] = 3, - ACTIONS(3074), 1, + ACTIONS(774), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [52640] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1568), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACK, + [52652] = 3, + ACTIONS(3085), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3072), 4, + ACTIONS(3083), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [51781] = 6, + [52666] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3147), 1, - sym_html_character_reference, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(3152), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1320), 1, - aux_sym__jsx_string_repeat1, - [51800] = 4, - ACTIONS(3155), 1, - anon_sym_COMMA, - STATE(1335), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3157), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51815] = 5, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(3120), 1, - anon_sym_class, - STATE(1041), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51832] = 5, - ACTIONS(2939), 1, + ACTIONS(3203), 1, + anon_sym_SQUOTE, + STATE(1336), 1, + aux_sym_string_repeat2, + ACTIONS(3205), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52683] = 5, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(3159), 1, - sym_identifier, - ACTIONS(3161), 1, - anon_sym_STAR, - STATE(1531), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51849] = 3, - ACTIONS(3163), 1, - anon_sym_EQ, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(3208), 1, + sym_optional_chain, + STATE(658), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 3, + [52700] = 4, + ACTIONS(3210), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [51862] = 4, - ACTIONS(3155), 1, - anon_sym_COMMA, - STATE(1335), 1, - aux_sym_variable_declaration_repeat1, + STATE(1338), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3165), 2, + ACTIONS(1904), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51877] = 5, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(1822), 1, - anon_sym_DOT, - ACTIONS(3167), 1, - sym_optional_chain, - STATE(797), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51894] = 5, - ACTIONS(93), 1, + [52715] = 5, + ACTIONS(101), 1, anon_sym_AT, - ACTIONS(3169), 1, + ACTIONS(3069), 1, anon_sym_class, - STATE(1041), 1, + STATE(1069), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1107), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51911] = 5, + [52732] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3171), 1, + ACTIONS(3213), 1, anon_sym_DQUOTE, - STATE(1395), 1, + STATE(1403), 1, aux_sym_string_repeat1, - ACTIONS(3173), 2, + ACTIONS(3215), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [51928] = 5, + [52749] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3171), 1, + ACTIONS(3213), 1, anon_sym_SQUOTE, - STATE(1396), 1, + STATE(1336), 1, aux_sym_string_repeat2, - ACTIONS(3175), 2, + ACTIONS(3217), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [51945] = 5, + [52766] = 4, + ACTIONS(3219), 1, + anon_sym_with, + STATE(1534), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3221), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52781] = 5, + ACTIONS(3003), 1, + anon_sym_LPAREN, + ACTIONS(3223), 1, + sym_identifier, + ACTIONS(3225), 1, + anon_sym_STAR, + STATE(1749), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52798] = 4, + ACTIONS(3227), 1, + anon_sym_from, + STATE(1643), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3229), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52813] = 5, + ACTIONS(3231), 1, + anon_sym_LBRACE, + ACTIONS(3233), 1, + anon_sym_extends, + STATE(406), 1, + sym_class_body, + STATE(1725), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52830] = 3, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1558), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [52843] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3177), 1, + ACTIONS(3237), 1, anon_sym_DQUOTE, - STATE(1350), 1, + STATE(1348), 1, aux_sym_string_repeat1, - ACTIONS(3179), 2, + ACTIONS(3239), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [51962] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3177), 1, - anon_sym_SQUOTE, - STATE(1351), 1, - aux_sym_string_repeat2, - ACTIONS(3181), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [51979] = 5, + [52860] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3183), 1, + ACTIONS(3241), 1, anon_sym_DQUOTE, - STATE(1349), 1, + STATE(1403), 1, aux_sym_string_repeat1, - ACTIONS(3185), 2, + ACTIONS(3215), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [51996] = 5, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(1571), 1, - anon_sym_DOT, - ACTIONS(3187), 1, - sym_optional_chain, - STATE(637), 1, - sym_arguments, + [52877] = 5, + ACTIONS(802), 1, + anon_sym_COMMA, + ACTIONS(3243), 1, + anon_sym_EQ, + ACTIONS(3245), 1, + anon_sym_RBRACK, + STATE(1415), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52013] = 5, + [52894] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3183), 1, + ACTIONS(3241), 1, anon_sym_SQUOTE, - STATE(1352), 1, + STATE(1336), 1, aux_sym_string_repeat2, - ACTIONS(3189), 2, + ACTIONS(3217), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [52030] = 4, - ACTIONS(3191), 1, - anon_sym_COMMA, - STATE(1335), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3194), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52045] = 5, - ACTIONS(2939), 1, + [52911] = 5, + ACTIONS(3003), 1, anon_sym_LPAREN, - ACTIONS(3196), 1, + ACTIONS(3247), 1, sym_identifier, - ACTIONS(3198), 1, + ACTIONS(3249), 1, anon_sym_STAR, - STATE(1684), 1, + STATE(1636), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52062] = 4, - ACTIONS(3200), 1, - anon_sym_EQ, - STATE(1716), 1, - sym__initializer, + [52928] = 5, + ACTIONS(3107), 1, + anon_sym_LBRACE, + ACTIONS(3233), 1, + anon_sym_extends, + STATE(628), 1, + sym_class_body, + STATE(1634), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2905), 2, - anon_sym_of, - anon_sym_in, - [52077] = 4, - ACTIONS(3200), 1, + [52945] = 4, + ACTIONS(2461), 1, + anon_sym_COLON, + ACTIONS(2463), 1, anon_sym_EQ, - STATE(1729), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2887), 2, - anon_sym_of, - anon_sym_in, - [52092] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3202), 1, - anon_sym_DQUOTE, - STATE(1328), 1, - aux_sym_string_repeat1, - ACTIONS(3204), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [52109] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1916), 4, - anon_sym_of, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_EQ, - [52120] = 4, - ACTIONS(3155), 1, + ACTIONS(3251), 2, anon_sym_COMMA, - STATE(1335), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3206), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52135] = 2, + anon_sym_RBRACE, + [52960] = 4, + ACTIONS(2807), 1, + anon_sym_STAR, + ACTIONS(2809), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [52146] = 5, - ACTIONS(93), 1, + STATE(1779), 2, + sym_namespace_import, + sym_named_imports, + [52975] = 5, + ACTIONS(101), 1, anon_sym_AT, - ACTIONS(3029), 1, + ACTIONS(3253), 1, anon_sym_class, - STATE(1041), 1, + STATE(1069), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1107), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52163] = 4, - ACTIONS(3208), 1, + [52992] = 5, + ACTIONS(3219), 1, + anon_sym_with, + ACTIONS(3255), 1, + anon_sym_SEMI, + ACTIONS(3257), 1, + sym__automatic_semicolon, + STATE(1546), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53009] = 4, + ACTIONS(3259), 1, anon_sym_COMMA, - STATE(1344), 1, - aux_sym_sequence_expression_repeat1, + STATE(1389), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1836), 2, + ACTIONS(3261), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52178] = 5, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3211), 1, - anon_sym_extends, - STATE(755), 1, - sym_class_body, - STATE(1632), 1, - sym_class_heritage, + [53024] = 4, + ACTIONS(3259), 1, + anon_sym_COMMA, + STATE(1392), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52195] = 2, + ACTIONS(3263), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53039] = 4, + ACTIONS(3265), 1, + anon_sym_EQ, + STATE(1697), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1912), 4, + ACTIONS(2986), 2, anon_sym_of, - anon_sym_RPAREN, anon_sym_in, - anon_sym_EQ, - [52206] = 5, - ACTIONS(873), 1, - anon_sym_COMMA, - ACTIONS(3213), 1, - anon_sym_EQ, - ACTIONS(3215), 1, - anon_sym_RBRACK, - STATE(1430), 1, - aux_sym_array_pattern_repeat1, + [53054] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3267), 1, + sym_html_character_reference, + ACTIONS(3269), 1, + anon_sym_DQUOTE, + ACTIONS(3271), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1369), 1, + aux_sym__jsx_string_repeat1, + [53073] = 5, + ACTIONS(3003), 1, + anon_sym_LPAREN, + ACTIONS(3273), 1, + sym_identifier, + ACTIONS(3275), 1, + anon_sym_STAR, + STATE(1522), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52223] = 6, + [53090] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3217), 1, - sym_html_character_reference, - ACTIONS(3220), 1, + ACTIONS(3269), 1, anon_sym_SQUOTE, - ACTIONS(3222), 1, + ACTIONS(3277), 1, + sym_html_character_reference, + ACTIONS(3279), 1, sym_unescaped_single_jsx_string_fragment, - STATE(1348), 1, + STATE(1370), 1, aux_sym__jsx_string_repeat2, - [52242] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [53109] = 5, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(3281), 1, + anon_sym_class, + STATE(1069), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3225), 1, - anon_sym_DQUOTE, - STATE(1395), 1, - aux_sym_string_repeat1, - ACTIONS(3173), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [52259] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [53126] = 5, + ACTIONS(802), 1, + anon_sym_COMMA, + ACTIONS(3243), 1, + anon_sym_EQ, + ACTIONS(3283), 1, + anon_sym_RBRACK, + STATE(1468), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3227), 1, - anon_sym_DQUOTE, - STATE(1395), 1, - aux_sym_string_repeat1, - ACTIONS(3173), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [52276] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3227), 1, - anon_sym_SQUOTE, - STATE(1396), 1, - aux_sym_string_repeat2, - ACTIONS(3175), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [52293] = 5, + [53143] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3225), 1, + ACTIONS(3285), 1, anon_sym_SQUOTE, - STATE(1396), 1, + STATE(1402), 1, aux_sym_string_repeat2, - ACTIONS(3175), 2, + ACTIONS(3287), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [52310] = 5, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3211), 1, - anon_sym_extends, - STATE(798), 1, - sym_class_body, - STATE(1530), 1, - sym_class_heritage, + [53160] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52327] = 4, - ACTIONS(3229), 1, + ACTIONS(2461), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2541), 2, anon_sym_COMMA, - STATE(1354), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2017), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [52342] = 6, + anon_sym_RBRACE, + [53173] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3232), 1, - sym_html_character_reference, - ACTIONS(3234), 1, - anon_sym_SQUOTE, - ACTIONS(3236), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1348), 1, - aux_sym__jsx_string_repeat2, - [52361] = 6, + ACTIONS(3285), 1, + anon_sym_DQUOTE, + STATE(1401), 1, + aux_sym_string_repeat1, + ACTIONS(3289), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [53190] = 5, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(3291), 1, + sym_optional_chain, + STATE(717), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53207] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3238), 1, + ACTIONS(3293), 1, sym_html_character_reference, - ACTIONS(3240), 1, + ACTIONS(3295), 1, anon_sym_DQUOTE, - ACTIONS(3242), 1, + ACTIONS(3297), 1, sym_unescaped_double_jsx_string_fragment, - STATE(1384), 1, + STATE(1394), 1, aux_sym__jsx_string_repeat1, - [52380] = 5, + [53226] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3244), 1, - anon_sym_DQUOTE, - STATE(1361), 1, - aux_sym_string_repeat1, - ACTIONS(3246), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [52397] = 4, - ACTIONS(3248), 1, - anon_sym_from, - STATE(1666), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3250), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52412] = 4, - ACTIONS(3252), 1, - anon_sym_with, - STATE(1731), 1, - sym_import_attribute, + ACTIONS(3295), 1, + anon_sym_SQUOTE, + ACTIONS(3299), 1, + sym_html_character_reference, + ACTIONS(3301), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1410), 1, + aux_sym__jsx_string_repeat2, + [53245] = 5, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(3303), 1, + anon_sym_class, + STATE(1069), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3254), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52427] = 5, - ACTIONS(3070), 1, + [53262] = 5, + ACTIONS(3079), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3233), 1, anon_sym_extends, - STATE(619), 1, + STATE(737), 1, sym_class_body, - STATE(1566), 1, + STATE(1645), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52444] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3256), 1, - anon_sym_DQUOTE, - STATE(1395), 1, - aux_sym_string_repeat1, - ACTIONS(3173), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [52461] = 5, - ACTIONS(3017), 1, + [53279] = 5, + ACTIONS(3107), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3233), 1, anon_sym_extends, - STATE(100), 1, + STATE(629), 1, sym_class_body, - STATE(1537), 1, + STATE(1659), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52478] = 5, + [53296] = 4, + ACTIONS(3305), 1, + anon_sym_COMMA, + STATE(1374), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3308), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53311] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3256), 1, + ACTIONS(3237), 1, anon_sym_SQUOTE, - STATE(1396), 1, + STATE(1350), 1, aux_sym_string_repeat2, - ACTIONS(3175), 2, + ACTIONS(3310), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [52495] = 5, + [53328] = 5, + ACTIONS(3003), 1, + anon_sym_LPAREN, + ACTIONS(3312), 1, + sym_identifier, + ACTIONS(3314), 1, + anon_sym_STAR, + STATE(1636), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53345] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3202), 1, + ACTIONS(3316), 1, anon_sym_SQUOTE, - STATE(1329), 1, + STATE(1341), 1, aux_sym_string_repeat2, - ACTIONS(3258), 2, + ACTIONS(3318), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [52512] = 4, - ACTIONS(3155), 1, - anon_sym_COMMA, - STATE(1335), 1, - aux_sym_variable_declaration_repeat1, + [53362] = 5, + ACTIONS(101), 1, + anon_sym_AT, + ACTIONS(3182), 1, + anon_sym_class, + STATE(1069), 1, + aux_sym_export_statement_repeat1, + STATE(1107), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52527] = 2, + [53379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1914), 4, + ACTIONS(1948), 4, anon_sym_of, anon_sym_RPAREN, anon_sym_in, anon_sym_EQ, - [52538] = 5, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3211), 1, - anon_sym_extends, - STATE(97), 1, - sym_class_body, - STATE(1645), 1, - sym_class_heritage, + [53390] = 4, + ACTIONS(3259), 1, + anon_sym_COMMA, + STATE(1395), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52555] = 5, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3211), 1, - anon_sym_extends, - STATE(799), 1, - sym_class_body, - STATE(1607), 1, - sym_class_heritage, + ACTIONS(3320), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53405] = 5, + ACTIONS(3003), 1, + anon_sym_LPAREN, + ACTIONS(3322), 1, + sym_identifier, + ACTIONS(3324), 1, + anon_sym_STAR, + STATE(1574), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52572] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3244), 1, - anon_sym_SQUOTE, - STATE(1363), 1, - aux_sym_string_repeat2, - ACTIONS(3262), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [52589] = 5, - ACTIONS(3213), 1, - anon_sym_EQ, - ACTIONS(3264), 1, + [53422] = 4, + ACTIONS(3259), 1, anon_sym_COMMA, - ACTIONS(3266), 1, - anon_sym_RPAREN, - STATE(1486), 1, - aux_sym_formal_parameters_repeat1, + STATE(1374), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52606] = 4, - ACTIONS(2739), 1, - anon_sym_STAR, - ACTIONS(2741), 1, - anon_sym_LBRACE, + ACTIONS(3326), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53437] = 4, + ACTIONS(3265), 1, + anon_sym_EQ, + STATE(1698), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1833), 2, - sym_namespace_import, - sym_named_imports, - [52621] = 5, - ACTIONS(3252), 1, - anon_sym_with, - ACTIONS(3268), 1, - anon_sym_SEMI, - ACTIONS(3270), 1, - sym__automatic_semicolon, - STATE(1674), 1, - sym_import_attribute, + ACTIONS(2992), 2, + anon_sym_of, + anon_sym_in, + [53452] = 4, + ACTIONS(3328), 1, + anon_sym_COMMA, + STATE(1384), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52638] = 5, - ACTIONS(3070), 1, - anon_sym_LBRACE, - ACTIONS(3211), 1, - anon_sym_extends, - STATE(650), 1, - sym_class_body, - STATE(1624), 1, - sym_class_heritage, - ACTIONS(5), 2, + ACTIONS(2127), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [53467] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(3331), 1, + anon_sym_DQUOTE, + STATE(1403), 1, + aux_sym_string_repeat1, + ACTIONS(3215), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [53484] = 5, + ACTIONS(3), 1, sym_comment, - [52655] = 5, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3272), 1, - sym_identifier, - ACTIONS(3274), 1, - anon_sym_STAR, - STATE(1684), 1, - sym_formal_parameters, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(3333), 1, + anon_sym_DQUOTE, + STATE(1385), 1, + aux_sym_string_repeat1, + ACTIONS(3335), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [53501] = 5, + ACTIONS(3), 1, sym_comment, - [52672] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3331), 1, + anon_sym_SQUOTE, + STATE(1336), 1, + aux_sym_string_repeat2, + ACTIONS(3217), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [53518] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3276), 4, + ACTIONS(3337), 4, sym__template_chars, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [52683] = 5, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3278), 1, - sym_identifier, - ACTIONS(3280), 1, - anon_sym_STAR, - STATE(1684), 1, - sym_formal_parameters, + [53529] = 4, + ACTIONS(3259), 1, + anon_sym_COMMA, + STATE(1374), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52700] = 5, - ACTIONS(3211), 1, - anon_sym_extends, - ACTIONS(3282), 1, + ACTIONS(3339), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53544] = 5, + ACTIONS(3079), 1, anon_sym_LBRACE, - STATE(405), 1, + ACTIONS(3233), 1, + anon_sym_extends, + STATE(115), 1, sym_class_body, - STATE(1676), 1, + STATE(1728), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52717] = 5, - ACTIONS(2939), 1, + [53561] = 5, + ACTIONS(3003), 1, anon_sym_LPAREN, - ACTIONS(3284), 1, + ACTIONS(3341), 1, sym_identifier, - ACTIONS(3286), 1, + ACTIONS(3343), 1, anon_sym_STAR, - STATE(1665), 1, + STATE(1636), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52734] = 4, - ACTIONS(1942), 1, + [53578] = 4, + ACTIONS(3259), 1, anon_sym_COMMA, - STATE(1344), 1, - aux_sym_sequence_expression_repeat1, + STATE(1374), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2927), 2, + ACTIONS(3345), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52749] = 4, - ACTIONS(3155), 1, - anon_sym_COMMA, - STATE(1325), 1, - aux_sym_variable_declaration_repeat1, + [53593] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3288), 2, + ACTIONS(2461), 4, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - [52764] = 5, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(3290), 1, - anon_sym_class, - STATE(1041), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52781] = 5, - ACTIONS(873), 1, - anon_sym_COMMA, - ACTIONS(3213), 1, anon_sym_EQ, - ACTIONS(3292), 1, - anon_sym_RBRACK, - STATE(1451), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52798] = 5, - ACTIONS(3211), 1, - anon_sym_extends, - ACTIONS(3282), 1, - anon_sym_LBRACE, - STATE(413), 1, - sym_class_body, - STATE(1547), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52815] = 6, + [53604] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3234), 1, - anon_sym_DQUOTE, - ACTIONS(3294), 1, + ACTIONS(3347), 1, sym_html_character_reference, - ACTIONS(3296), 1, + ACTIONS(3350), 1, + anon_sym_DQUOTE, + ACTIONS(3352), 1, sym_unescaped_double_jsx_string_fragment, - STATE(1320), 1, + STATE(1394), 1, aux_sym__jsx_string_repeat1, - [52834] = 4, - ACTIONS(3155), 1, + [53623] = 4, + ACTIONS(3259), 1, anon_sym_COMMA, - STATE(1365), 1, + STATE(1374), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3355), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52849] = 5, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3300), 1, - sym_identifier, - ACTIONS(3302), 1, - anon_sym_STAR, - STATE(1665), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52866] = 5, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3304), 1, - sym_identifier, - ACTIONS(3306), 1, - anon_sym_STAR, - STATE(1746), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52883] = 5, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(3308), 1, - anon_sym_class, - STATE(1041), 1, - aux_sym_export_statement_repeat1, - STATE(1097), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52900] = 2, + [53638] = 5, + ACTIONS(3079), 1, + anon_sym_LBRACE, + ACTIONS(3233), 1, + anon_sym_extends, + STATE(727), 1, + sym_class_body, + STATE(1573), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1937), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [52911] = 4, - ACTIONS(3155), 1, - anon_sym_COMMA, - STATE(1341), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [53655] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3310), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52926] = 4, - ACTIONS(3155), 1, - anon_sym_COMMA, - STATE(1321), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(3312), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52941] = 5, - ACTIONS(3017), 1, + ACTIONS(3333), 1, + anon_sym_SQUOTE, + STATE(1387), 1, + aux_sym_string_repeat2, + ACTIONS(3357), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [53672] = 5, + ACTIONS(3079), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3233), 1, anon_sym_extends, - STATE(766), 1, + STATE(714), 1, sym_class_body, - STATE(1696), 1, + STATE(1733), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52958] = 5, - ACTIONS(2939), 1, + [53689] = 5, + ACTIONS(3003), 1, anon_sym_LPAREN, - ACTIONS(3314), 1, + ACTIONS(3359), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3361), 1, anon_sym_STAR, - STATE(1665), 1, + STATE(1749), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52975] = 4, - ACTIONS(2395), 1, - anon_sym_COLON, - ACTIONS(2397), 1, - anon_sym_EQ, + [53706] = 4, + ACTIONS(3259), 1, + anon_sym_COMMA, + STATE(1382), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3318), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [52990] = 5, + ACTIONS(3363), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53721] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3320), 1, + ACTIONS(3365), 1, anon_sym_DQUOTE, - STATE(1395), 1, + STATE(1403), 1, aux_sym_string_repeat1, - ACTIONS(3322), 2, + ACTIONS(3215), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [53007] = 5, + [53738] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3325), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1396), 1, + STATE(1336), 1, aux_sym_string_repeat2, - ACTIONS(3327), 2, + ACTIONS(3217), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [53024] = 3, + [53755] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3367), 1, + anon_sym_DQUOTE, + STATE(1403), 1, + aux_sym_string_repeat1, + ACTIONS(3369), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [53772] = 5, + ACTIONS(3079), 1, + anon_sym_LBRACE, + ACTIONS(3233), 1, + anon_sym_extends, + STATE(785), 1, + sym_class_body, + STATE(1562), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2455), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [53037] = 6, - ACTIONS(3), 1, + [53789] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(1950), 4, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + [53800] = 5, + ACTIONS(3243), 1, + anon_sym_EQ, + ACTIONS(3372), 1, + anon_sym_COMMA, + ACTIONS(3374), 1, + anon_sym_RPAREN, + STATE(1491), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3240), 1, - anon_sym_SQUOTE, - ACTIONS(3330), 1, - sym_html_character_reference, - ACTIONS(3332), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1355), 1, - aux_sym__jsx_string_repeat2, - [53056] = 4, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3334), 1, - sym_identifier, - STATE(1573), 1, - sym_formal_parameters, + sym_comment, + [53817] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53070] = 4, - ACTIONS(2939), 1, + ACTIONS(2014), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3336), 1, - sym_identifier, - STATE(1532), 1, - sym_formal_parameters, + anon_sym_SEMI, + anon_sym_EQ, + [53828] = 4, + ACTIONS(1989), 1, + anon_sym_COMMA, + STATE(1338), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53084] = 4, - ACTIONS(2939), 1, + ACTIONS(2961), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53843] = 5, + ACTIONS(3003), 1, anon_sym_LPAREN, - ACTIONS(3338), 1, + ACTIONS(3376), 1, sym_identifier, - STATE(1501), 1, + ACTIONS(3378), 1, + anon_sym_STAR, + STATE(1749), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53098] = 4, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(3340), 1, - anon_sym_RBRACE, - STATE(1467), 1, - aux_sym_object_repeat1, + [53860] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3380), 1, + sym_html_character_reference, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(3385), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1410), 1, + aux_sym__jsx_string_repeat2, + [53879] = 5, + ACTIONS(3079), 1, + anon_sym_LBRACE, + ACTIONS(3233), 1, + anon_sym_extends, + STATE(112), 1, + sym_class_body, + STATE(1740), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53112] = 4, - ACTIONS(1162), 1, - anon_sym_while, - ACTIONS(3342), 1, - anon_sym_else, - STATE(428), 1, - sym_else_clause, + [53896] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53126] = 3, - ACTIONS(2745), 1, - anon_sym_DOT, + ACTIONS(1946), 4, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + [53907] = 5, + ACTIONS(3231), 1, + anon_sym_LBRACE, + ACTIONS(3233), 1, + anon_sym_extends, + STATE(405), 1, + sym_class_body, + STATE(1716), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2743), 2, - anon_sym_LPAREN, - sym_optional_chain, - [53138] = 4, - ACTIONS(910), 1, + [53924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3316), 1, + anon_sym_DQUOTE, + STATE(1340), 1, + aux_sym_string_repeat1, + ACTIONS(3388), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [53941] = 4, + ACTIONS(802), 1, anon_sym_COMMA, - ACTIONS(2065), 1, - anon_sym_RPAREN, - STATE(1436), 1, - aux_sym_array_repeat1, + ACTIONS(3390), 1, + anon_sym_RBRACK, + STATE(1499), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53152] = 4, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(3344), 1, - anon_sym_RBRACE, - STATE(1441), 1, - aux_sym_object_repeat1, + [53955] = 3, + ACTIONS(1934), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53166] = 4, - ACTIONS(2939), 1, + ACTIONS(2000), 2, anon_sym_LPAREN, - ACTIONS(3346), 1, anon_sym_COLON, - STATE(1644), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [53180] = 2, + [53967] = 4, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(3392), 1, + anon_sym_RBRACE, + STATE(1444), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3054), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [53190] = 4, - ACTIONS(873), 1, + [53981] = 4, + ACTIONS(802), 1, anon_sym_COMMA, - ACTIONS(3292), 1, + ACTIONS(3245), 1, anon_sym_RBRACK, - STATE(1433), 1, + STATE(1415), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53204] = 3, - ACTIONS(3213), 1, - anon_sym_EQ, + [53995] = 4, + ACTIONS(938), 1, + anon_sym_COMMA, + ACTIONS(2133), 1, + anon_sym_RBRACK, + STATE(1496), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3348), 2, + [54009] = 4, + ACTIONS(2357), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [53216] = 4, - ACTIONS(3090), 1, - sym_identifier, - ACTIONS(3092), 1, - anon_sym_LBRACK, - ACTIONS(3094), 1, - sym_private_property_identifier, + ACTIONS(3394), 1, + anon_sym_RBRACE, + STATE(1460), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53230] = 4, - ACTIONS(3350), 1, - anon_sym_LBRACE, - ACTIONS(3352), 1, - anon_sym_LPAREN, - STATE(401), 1, - sym_statement_block, + [54023] = 4, + ACTIONS(2341), 1, + anon_sym_COMMA, + ACTIONS(3396), 1, + anon_sym_RBRACE, + STATE(1461), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53244] = 4, - ACTIONS(873), 1, - anon_sym_COMMA, - ACTIONS(3292), 1, - anon_sym_RBRACK, - STATE(1451), 1, - aux_sym_array_pattern_repeat1, + [54037] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53258] = 4, - ACTIONS(3354), 1, + ACTIONS(3398), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [54047] = 4, + ACTIONS(2341), 1, anon_sym_COMMA, - ACTIONS(3356), 1, + ACTIONS(3400), 1, anon_sym_RBRACE, - STATE(1463), 1, - aux_sym_export_clause_repeat1, + STATE(1443), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53272] = 2, + [54061] = 4, + ACTIONS(2341), 1, + anon_sym_COMMA, + ACTIONS(3396), 1, + anon_sym_RBRACE, + STATE(1443), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3194), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [53282] = 4, + [54075] = 4, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(3358), 1, + ACTIONS(3394), 1, anon_sym_RBRACE, - STATE(1421), 1, + STATE(1444), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53296] = 4, - ACTIONS(3360), 1, + [54089] = 4, + ACTIONS(2341), 1, anon_sym_COMMA, - ACTIONS(3363), 1, + ACTIONS(3402), 1, anon_sym_RBRACE, - STATE(1417), 1, + STATE(1431), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53310] = 4, - ACTIONS(2273), 1, + [54103] = 4, + ACTIONS(2341), 1, anon_sym_COMMA, - ACTIONS(3365), 1, + ACTIONS(3402), 1, anon_sym_RBRACE, - STATE(1417), 1, + STATE(1443), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53324] = 4, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(3367), 1, - anon_sym_RBRACE, - STATE(1421), 1, - aux_sym_object_pattern_repeat1, + [54117] = 3, + ACTIONS(3404), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53338] = 4, + ACTIONS(2811), 2, + anon_sym_LPAREN, + sym_optional_chain, + [54129] = 4, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(3369), 1, + ACTIONS(3406), 1, anon_sym_RBRACE, - STATE(1421), 1, + STATE(1444), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53352] = 4, - ACTIONS(3371), 1, + [54143] = 4, + ACTIONS(2341), 1, anon_sym_COMMA, - ACTIONS(3374), 1, + ACTIONS(3408), 1, anon_sym_RBRACE, - STATE(1421), 1, - aux_sym_object_pattern_repeat1, + STATE(1443), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53366] = 4, - ACTIONS(2273), 1, + [54157] = 4, + ACTIONS(2341), 1, anon_sym_COMMA, - ACTIONS(3376), 1, + ACTIONS(3410), 1, anon_sym_RBRACE, - STATE(1417), 1, + STATE(1443), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53380] = 3, - ACTIONS(3378), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3380), 2, + [54171] = 4, + ACTIONS(802), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [53392] = 4, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3382), 1, - anon_sym_GT, + ACTIONS(3283), 1, + anon_sym_RBRACK, + STATE(1468), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53406] = 2, + [54185] = 4, + ACTIONS(938), 1, + anon_sym_COMMA, + ACTIONS(2157), 1, + anon_sym_RPAREN, + STATE(1437), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3062), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [53416] = 4, - ACTIONS(3264), 1, + [54199] = 4, + ACTIONS(938), 1, anon_sym_COMMA, - ACTIONS(3266), 1, + ACTIONS(2157), 1, anon_sym_RPAREN, - STATE(1486), 1, - aux_sym_formal_parameters_repeat1, + STATE(1384), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53430] = 4, - ACTIONS(2297), 1, - anon_sym_DQUOTE, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1439), 1, - sym_string, + [54213] = 4, + ACTIONS(3412), 1, + anon_sym_COMMA, + ACTIONS(3415), 1, + anon_sym_RBRACE, + STATE(1435), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53444] = 4, - ACTIONS(2751), 1, + [54227] = 4, + ACTIONS(2827), 1, anon_sym_COLON, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_DOT, - ACTIONS(3384), 1, + ACTIONS(3417), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53458] = 4, - ACTIONS(910), 1, + [54241] = 4, + ACTIONS(938), 1, anon_sym_COMMA, - ACTIONS(3386), 1, - anon_sym_RBRACK, - STATE(1354), 1, + ACTIONS(3419), 1, + anon_sym_RPAREN, + STATE(1384), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53472] = 4, - ACTIONS(873), 1, + [54255] = 4, + ACTIONS(938), 1, anon_sym_COMMA, - ACTIONS(3388), 1, + ACTIONS(2085), 1, anon_sym_RBRACK, - STATE(1433), 1, - aux_sym_array_pattern_repeat1, + STATE(1466), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53486] = 3, - ACTIONS(1902), 1, - anon_sym_in, + [54269] = 4, + ACTIONS(3003), 1, + anon_sym_LPAREN, + ACTIONS(3421), 1, + anon_sym_COLON, + STATE(1560), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1932), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [53498] = 4, - ACTIONS(910), 1, + [54283] = 4, + ACTIONS(938), 1, anon_sym_COMMA, - ACTIONS(2021), 1, - anon_sym_RPAREN, - STATE(1354), 1, + ACTIONS(2085), 1, + anon_sym_RBRACK, + STATE(1384), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53512] = 4, - ACTIONS(3348), 1, - anon_sym_RBRACK, - ACTIONS(3390), 1, + [54297] = 4, + ACTIONS(802), 1, anon_sym_COMMA, - STATE(1433), 1, + ACTIONS(3283), 1, + anon_sym_RBRACK, + STATE(1499), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53526] = 3, - ACTIONS(3213), 1, + [54311] = 3, + ACTIONS(3243), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3393), 2, + ACTIONS(3423), 2, anon_sym_COMMA, anon_sym_RBRACE, - [53538] = 4, - ACTIONS(2879), 1, - anon_sym_RBRACE, - ACTIONS(3395), 1, - anon_sym_COMMA, - STATE(1477), 1, - aux_sym_named_imports_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [53552] = 4, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(3397), 1, - anon_sym_RPAREN, - STATE(1354), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [53566] = 4, - ACTIONS(910), 1, + [54323] = 4, + ACTIONS(3425), 1, anon_sym_COMMA, - ACTIONS(2041), 1, - anon_sym_RPAREN, - STATE(1455), 1, - aux_sym_array_repeat1, + ACTIONS(3428), 1, + anon_sym_RBRACE, + STATE(1443), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53580] = 4, - ACTIONS(910), 1, + [54337] = 4, + ACTIONS(3430), 1, anon_sym_COMMA, - ACTIONS(2041), 1, - anon_sym_RPAREN, - STATE(1354), 1, - aux_sym_array_repeat1, + ACTIONS(3433), 1, + anon_sym_RBRACE, + STATE(1444), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53594] = 2, + [54351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3399), 3, + ACTIONS(3435), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_from, anon_sym_SEMI, - [53604] = 4, - ACTIONS(3401), 1, - anon_sym_await, - ACTIONS(3403), 1, - anon_sym_LPAREN, - STATE(55), 1, - sym__for_header, + [54361] = 4, + ACTIONS(3437), 1, + anon_sym_COMMA, + ACTIONS(3439), 1, + anon_sym_RBRACE, + STATE(1504), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53618] = 4, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(3405), 1, - anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, + [54375] = 4, + ACTIONS(2827), 1, + anon_sym_COLON, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(3441), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53632] = 3, - ACTIONS(3407), 1, + [54389] = 3, + ACTIONS(3443), 1, anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3409), 2, + ACTIONS(3445), 2, anon_sym_COMMA, anon_sym_RBRACE, - [53644] = 4, - ACTIONS(3411), 1, + [54401] = 4, + ACTIONS(3447), 1, anon_sym_COMMA, - ACTIONS(3413), 1, + ACTIONS(3449), 1, anon_sym_RBRACE, - STATE(1435), 1, + STATE(1453), 1, aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53658] = 4, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3415), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [53672] = 4, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(2065), 1, - anon_sym_RPAREN, - STATE(1354), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [53686] = 3, - ACTIONS(3417), 1, - sym_identifier, + [54415] = 4, + ACTIONS(3451), 1, + anon_sym_await, + ACTIONS(3453), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53698] = 2, + [54429] = 3, + ACTIONS(3455), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3421), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [53708] = 4, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3423), 1, - anon_sym_COLON, - STATE(1644), 1, - sym_formal_parameters, + ACTIONS(3457), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54441] = 4, + ACTIONS(2341), 1, + anon_sym_COMMA, + ACTIONS(3459), 1, + anon_sym_RBRACE, + STATE(1443), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53722] = 4, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(3340), 1, + [54455] = 4, + ACTIONS(2943), 1, anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, + ACTIONS(3461), 1, + anon_sym_COMMA, + STATE(1435), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53736] = 4, - ACTIONS(910), 1, + [54469] = 4, + ACTIONS(938), 1, anon_sym_COMMA, - ACTIONS(2009), 1, + ACTIONS(2133), 1, anon_sym_RBRACK, - STATE(1354), 1, + STATE(1384), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53750] = 4, - ACTIONS(873), 1, + [54483] = 4, + ACTIONS(802), 1, anon_sym_COMMA, - ACTIONS(3425), 1, + ACTIONS(3245), 1, anon_sym_RBRACK, - STATE(1433), 1, + STATE(1499), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53764] = 4, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(3427), 1, - anon_sym_RBRACE, - STATE(1421), 1, - aux_sym_object_pattern_repeat1, + [54497] = 4, + ACTIONS(3463), 1, + anon_sym_await, + ACTIONS(3465), 1, + anon_sym_LPAREN, + STATE(61), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53778] = 2, + [54511] = 4, + ACTIONS(2341), 1, + anon_sym_COMMA, + ACTIONS(3467), 1, + anon_sym_RBRACE, + STATE(1443), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [53788] = 4, + [54525] = 4, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(3431), 1, + ACTIONS(3469), 1, anon_sym_RBRACE, - STATE(1416), 1, + STATE(1444), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53802] = 4, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(3433), 1, - anon_sym_RPAREN, - STATE(1354), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [53816] = 3, - ACTIONS(3435), 1, - sym_identifier, + [54539] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3437), 2, + ACTIONS(3308), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [53828] = 4, + [54549] = 4, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(3439), 1, + ACTIONS(3471), 1, anon_sym_RBRACE, - STATE(1420), 1, + STATE(1444), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53842] = 4, - ACTIONS(2273), 1, + [54563] = 4, + ACTIONS(2341), 1, anon_sym_COMMA, - ACTIONS(3441), 1, + ACTIONS(3473), 1, anon_sym_RBRACE, - STATE(1422), 1, + STATE(1443), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53856] = 4, - ACTIONS(3443), 1, - anon_sym_COMMA, - ACTIONS(3446), 1, - anon_sym_RBRACE, - STATE(1459), 1, - aux_sym_export_clause_repeat1, + [54577] = 3, + ACTIONS(3477), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53870] = 4, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(2009), 1, - anon_sym_RBRACK, - STATE(1483), 1, - aux_sym_array_repeat1, + ACTIONS(3475), 2, + anon_sym_of, + anon_sym_in, + [54589] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53884] = 4, - ACTIONS(2273), 1, + ACTIONS(3071), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3441), 1, - anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [53898] = 4, - ACTIONS(2939), 1, + anon_sym_SEMI, + [54599] = 4, + ACTIONS(3003), 1, anon_sym_LPAREN, - ACTIONS(3448), 1, + ACTIONS(3479), 1, sym_identifier, - STATE(1671), 1, + STATE(1592), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53912] = 4, - ACTIONS(2875), 1, - anon_sym_RBRACE, - ACTIONS(3450), 1, - anon_sym_COMMA, - STATE(1459), 1, - aux_sym_export_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [53926] = 4, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(3452), 1, - anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, + [54613] = 4, + ACTIONS(1196), 1, + anon_sym_while, + ACTIONS(3481), 1, + anon_sym_else, + STATE(470), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53940] = 4, - ACTIONS(910), 1, + [54627] = 4, + ACTIONS(938), 1, anon_sym_COMMA, - ACTIONS(3454), 1, - anon_sym_RPAREN, - STATE(1354), 1, + ACTIONS(3483), 1, + anon_sym_RBRACK, + STATE(1384), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53954] = 4, - ACTIONS(2357), 1, + [54641] = 4, + ACTIONS(3485), 1, anon_sym_COMMA, - ACTIONS(3439), 1, + ACTIONS(3488), 1, anon_sym_RBRACE, - STATE(1421), 1, - aux_sym_object_pattern_repeat1, + STATE(1467), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53968] = 4, - ACTIONS(2273), 1, + [54655] = 4, + ACTIONS(802), 1, anon_sym_COMMA, - ACTIONS(3456), 1, - anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, + ACTIONS(3490), 1, + anon_sym_RBRACK, + STATE(1499), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53982] = 3, - ACTIONS(953), 1, - sym__automatic_semicolon, + [54669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2905), 2, - anon_sym_of, - anon_sym_in, - [53994] = 3, - ACTIONS(3458), 1, + ACTIONS(3109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [54679] = 3, + ACTIONS(3494), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2887), 2, + ACTIONS(3492), 2, anon_sym_of, anon_sym_in, - [54006] = 4, - ACTIONS(3460), 1, - sym_identifier, - STATE(1034), 1, - sym_decorator_member_expression, - STATE(1094), 1, - sym_decorator_call_expression, + [54691] = 3, + ACTIONS(2813), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54020] = 4, - ACTIONS(2939), 1, + ACTIONS(2811), 2, anon_sym_LPAREN, - ACTIONS(3462), 1, - sym_identifier, - STATE(1501), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [54034] = 3, - ACTIONS(2999), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1550), 2, - anon_sym_of, - anon_sym_in, - [54046] = 4, - ACTIONS(2939), 1, + sym_optional_chain, + [54703] = 4, + ACTIONS(3003), 1, anon_sym_LPAREN, - ACTIONS(3464), 1, + ACTIONS(3496), 1, sym_identifier, - STATE(1501), 1, + STATE(1639), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54060] = 3, - ACTIONS(3213), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3466), 2, + [54717] = 4, + ACTIONS(938), 1, anon_sym_COMMA, + ACTIONS(2097), 1, anon_sym_RPAREN, - [54072] = 4, - ACTIONS(3466), 1, - anon_sym_RPAREN, - ACTIONS(3468), 1, - anon_sym_COMMA, - STATE(1475), 1, - aux_sym_formal_parameters_repeat1, + STATE(1486), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54086] = 4, - ACTIONS(2357), 1, + [54731] = 4, + ACTIONS(938), 1, anon_sym_COMMA, - ACTIONS(3431), 1, - anon_sym_RBRACE, - STATE(1421), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2097), 1, + anon_sym_RPAREN, + STATE(1384), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54100] = 4, - ACTIONS(3471), 1, + [54745] = 4, + ACTIONS(2341), 1, anon_sym_COMMA, - ACTIONS(3474), 1, + ACTIONS(3498), 1, anon_sym_RBRACE, - STATE(1477), 1, - aux_sym_named_imports_repeat1, + STATE(1443), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54114] = 3, - ACTIONS(3476), 1, + [54759] = 4, + ACTIONS(2827), 1, + anon_sym_COLON, + ACTIONS(2833), 1, anon_sym_DOT, + ACTIONS(3500), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2743), 2, - anon_sym_LPAREN, - sym_optional_chain, - [54126] = 4, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3478), 1, - sym_identifier, - STATE(1671), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [54140] = 4, - ACTIONS(910), 1, + [54773] = 4, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(2021), 1, - anon_sym_RPAREN, - STATE(1465), 1, - aux_sym_array_repeat1, + ACTIONS(3502), 1, + anon_sym_RBRACE, + STATE(1444), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54154] = 3, - ACTIONS(3163), 1, - anon_sym_EQ, + [54787] = 3, + ACTIONS(958), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1550), 2, + ACTIONS(2986), 2, anon_sym_of, anon_sym_in, - [54166] = 2, + [54799] = 3, + ACTIONS(3504), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 3, - sym__automatic_semicolon, + ACTIONS(2992), 2, + anon_sym_of, + anon_sym_in, + [54811] = 4, + ACTIONS(3227), 1, anon_sym_from, - anon_sym_SEMI, - [54176] = 4, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, - anon_sym_RBRACK, - STATE(1354), 1, - aux_sym_array_repeat1, + ACTIONS(3506), 1, + anon_sym_as, + STATE(1738), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54190] = 4, - ACTIONS(873), 1, - anon_sym_COMMA, - ACTIONS(3215), 1, - anon_sym_RBRACK, - STATE(1430), 1, - aux_sym_array_pattern_repeat1, + [54825] = 4, + ACTIONS(3003), 1, + anon_sym_LPAREN, + ACTIONS(3508), 1, + sym_identifier, + STATE(1746), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54204] = 4, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(2039), 1, - anon_sym_RBRACK, - STATE(1429), 1, - aux_sym_array_repeat1, + [54839] = 3, + ACTIONS(3243), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54218] = 4, - ACTIONS(918), 1, + ACTIONS(3510), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54851] = 4, + ACTIONS(3510), 1, anon_sym_RPAREN, - ACTIONS(3484), 1, + ACTIONS(3512), 1, anon_sym_COMMA, - STATE(1475), 1, + STATE(1483), 1, aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54232] = 4, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(3486), 1, - anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, + [54865] = 4, + ACTIONS(3003), 1, + anon_sym_LPAREN, + ACTIONS(3515), 1, + sym_identifier, + STATE(1746), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54246] = 2, + [54879] = 4, + ACTIONS(2827), 1, + anon_sym_COLON, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(3517), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 3, + [54893] = 4, + ACTIONS(938), 1, anon_sym_COMMA, + ACTIONS(3519), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [54256] = 4, - ACTIONS(3248), 1, - anon_sym_from, - ACTIONS(3488), 1, - anon_sym_as, - STATE(1686), 1, - sym__from_clause, + STATE(1384), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54270] = 4, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(2039), 1, - anon_sym_RBRACK, - STATE(1354), 1, - aux_sym_array_repeat1, + [54907] = 4, + ACTIONS(3521), 1, + sym_identifier, + STATE(1049), 1, + sym_decorator_member_expression, + STATE(1110), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54284] = 4, - ACTIONS(873), 1, - anon_sym_COMMA, - ACTIONS(3215), 1, - anon_sym_RBRACK, - STATE(1433), 1, - aux_sym_array_pattern_repeat1, + [54921] = 3, + ACTIONS(3235), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54298] = 4, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3490), 1, + ACTIONS(1578), 2, + anon_sym_of, + anon_sym_in, + [54933] = 3, + ACTIONS(3523), 1, sym_identifier, - STATE(1671), 1, - sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54312] = 3, - ACTIONS(3494), 1, + ACTIONS(3525), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [54945] = 3, + ACTIONS(3527), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, - anon_sym_of, - anon_sym_in, - [54324] = 4, - ACTIONS(3125), 1, - sym_identifier, - ACTIONS(3127), 1, - anon_sym_LBRACK, - ACTIONS(3129), 1, - sym_private_property_identifier, + ACTIONS(3529), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54957] = 4, + ACTIONS(946), 1, + anon_sym_RPAREN, + ACTIONS(3531), 1, + anon_sym_COMMA, + STATE(1483), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54338] = 3, - ACTIONS(3498), 1, - sym__automatic_semicolon, + [54971] = 4, + ACTIONS(3533), 1, + anon_sym_LBRACE, + ACTIONS(3535), 1, + anon_sym_LPAREN, + STATE(393), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 2, - anon_sym_of, - anon_sym_in, - [54350] = 4, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3500), 1, - anon_sym_GT, + [54985] = 4, + ACTIONS(3372), 1, + anon_sym_COMMA, + ACTIONS(3374), 1, + anon_sym_RPAREN, + STATE(1491), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54364] = 2, + [54999] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [54374] = 4, - ACTIONS(3504), 1, - anon_sym_await, - ACTIONS(3506), 1, - anon_sym_LPAREN, - STATE(69), 1, - sym__for_header, + ACTIONS(2127), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [55009] = 3, + ACTIONS(3243), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3537), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55021] = 4, + ACTIONS(938), 1, + anon_sym_COMMA, + ACTIONS(3539), 1, + anon_sym_RBRACK, + STATE(1384), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54388] = 4, - ACTIONS(2273), 1, + [55035] = 4, + ACTIONS(938), 1, anon_sym_COMMA, - ACTIONS(3344), 1, - anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, + ACTIONS(2143), 1, + anon_sym_RPAREN, + STATE(1500), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54402] = 2, + [55049] = 4, + ACTIONS(938), 1, + anon_sym_COMMA, + ACTIONS(2143), 1, + anon_sym_RPAREN, + STATE(1384), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54411] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(789), 1, - sym_statement_block, + [55063] = 4, + ACTIONS(3537), 1, + anon_sym_RBRACK, + ACTIONS(3541), 1, + anon_sym_COMMA, + STATE(1499), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54422] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(94), 1, - sym_statement_block, + [55077] = 4, + ACTIONS(938), 1, + anon_sym_COMMA, + ACTIONS(3544), 1, + anon_sym_RPAREN, + STATE(1384), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54433] = 3, - ACTIONS(3512), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_private_property_identifier, + [55091] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54444] = 3, - ACTIONS(3090), 1, + ACTIONS(3546), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [55101] = 4, + ACTIONS(3003), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, sym_identifier, - ACTIONS(3094), 1, - sym_private_property_identifier, + STATE(1746), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54455] = 2, + [55115] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1944), 2, + ACTIONS(3550), 3, sym__automatic_semicolon, + anon_sym_from, anon_sym_SEMI, - [54464] = 3, - ACTIONS(3516), 1, - anon_sym_LPAREN, - STATE(70), 1, - sym_parenthesized_expression, + [55125] = 4, + ACTIONS(2947), 1, + anon_sym_RBRACE, + ACTIONS(3552), 1, + anon_sym_COMMA, + STATE(1467), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54475] = 3, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3520), 1, - sym_private_property_identifier, + [55139] = 4, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(3406), 1, + anon_sym_RBRACE, + STATE(1417), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54486] = 3, - ACTIONS(2939), 1, + [55153] = 3, + ACTIONS(3195), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1578), 2, + anon_sym_of, + anon_sym_in, + [55165] = 4, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1571), 1, + ACTIONS(3554), 1, + sym_identifier, + STATE(1683), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54497] = 3, - ACTIONS(3125), 1, - sym_identifier, - ACTIONS(3129), 1, - sym_private_property_identifier, + [55179] = 4, + ACTIONS(2373), 1, + anon_sym_DQUOTE, + ACTIONS(2375), 1, + anon_sym_SQUOTE, + STATE(1501), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54508] = 3, - ACTIONS(3017), 1, - anon_sym_LBRACE, - STATE(783), 1, - sym_class_body, + [55193] = 4, + ACTIONS(2341), 1, + anon_sym_COMMA, + ACTIONS(3459), 1, + anon_sym_RBRACE, + STATE(1423), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54519] = 3, - ACTIONS(2751), 1, + [55207] = 4, + ACTIONS(3003), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, anon_sym_COLON, - ACTIONS(3382), 1, - anon_sym_GT, + STATE(1560), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54530] = 3, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3382), 1, - anon_sym_GT, + [55221] = 4, + ACTIONS(3003), 1, + anon_sym_LPAREN, + ACTIONS(3558), 1, + sym_identifier, + STATE(1683), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54541] = 2, + [55235] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1724), 2, + ACTIONS(3560), 3, sym__automatic_semicolon, + anon_sym_from, anon_sym_SEMI, - [54550] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3374), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54559] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1040), 1, - sym_statement_block, + [55245] = 4, + ACTIONS(3003), 1, + anon_sym_LPAREN, + ACTIONS(3562), 1, + sym_identifier, + STATE(1683), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54570] = 2, + [55259] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1515), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3363), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54579] = 3, - ACTIONS(3516), 1, - anon_sym_LPAREN, - STATE(54), 1, - sym_parenthesized_expression, + [55270] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(111), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54590] = 3, - ACTIONS(3510), 1, + [55281] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(95), 1, + STATE(418), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54601] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1714), 1, - sym_formal_parameters, + [55292] = 3, + ACTIONS(3533), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54612] = 3, - ACTIONS(3516), 1, - anon_sym_LPAREN, - STATE(40), 1, - sym_parenthesized_expression, + [55303] = 3, + ACTIONS(3533), 1, + anon_sym_LBRACE, + STATE(1059), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54623] = 2, + [55314] = 3, + ACTIONS(3107), 1, + anon_sym_LBRACE, + STATE(654), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1688), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54632] = 2, + [55325] = 3, + ACTIONS(2827), 1, + anon_sym_COLON, + ACTIONS(3441), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1692), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54641] = 3, - ACTIONS(3516), 1, - anon_sym_LPAREN, - STATE(56), 1, - sym_parenthesized_expression, + [55336] = 3, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(3441), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54652] = 3, - ACTIONS(3510), 1, + [55347] = 3, + ACTIONS(3566), 1, anon_sym_LBRACE, - STATE(736), 1, + STATE(663), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54663] = 3, - ACTIONS(2395), 1, + [55358] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - ACTIONS(2577), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [54674] = 2, + STATE(1727), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54683] = 3, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(3500), 1, - anon_sym_GT, + [55369] = 3, + ACTIONS(3568), 1, + anon_sym_LPAREN, + STATE(46), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54694] = 3, - ACTIONS(2395), 1, + [55380] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_EQ_GT, + STATE(1593), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54705] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1578), 1, - sym_formal_parameters, + [55391] = 3, + ACTIONS(3570), 1, + sym_identifier, + ACTIONS(3572), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54716] = 3, - ACTIONS(3017), 1, - anon_sym_LBRACE, - STATE(768), 1, - sym_class_body, + [55402] = 3, + ACTIONS(3568), 1, + anon_sym_LPAREN, + STATE(47), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54727] = 3, - ACTIONS(3526), 1, + [55413] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(627), 1, + STATE(1084), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54738] = 3, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(631), 1, - sym_statement_block, + [55424] = 3, + ACTIONS(3568), 1, + anon_sym_LPAREN, + STATE(49), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54749] = 3, - ACTIONS(3510), 1, + [55435] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(782), 1, + STATE(1063), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54760] = 3, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3500), 1, - anon_sym_GT, + [55446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54771] = 3, - ACTIONS(3528), 1, + ACTIONS(3574), 2, + anon_sym_of, + anon_sym_in, + [55455] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(58), 1, - sym__for_header, + STATE(1655), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54782] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1533), 1, - sym_formal_parameters, + [55466] = 3, + ACTIONS(3576), 1, + anon_sym_LBRACE, + STATE(1548), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54793] = 3, - ACTIONS(3017), 1, - anon_sym_LBRACE, - STATE(93), 1, - sym_class_body, + [55477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54804] = 2, + ACTIONS(3578), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55486] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3530), 2, + ACTIONS(3580), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [54813] = 3, - ACTIONS(2939), 1, + [55495] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1579), 1, + STATE(1554), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54824] = 3, - ACTIONS(2939), 1, + [55506] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1589), 1, + STATE(1669), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54835] = 2, + [55517] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1678), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54844] = 3, - ACTIONS(3350), 1, + [55528] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1045), 1, + STATE(1088), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54855] = 2, + [55539] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3532), 2, + ACTIONS(3428), 2, anon_sym_COMMA, anon_sym_RBRACE, - [54864] = 3, - ACTIONS(2939), 1, + [55548] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1700), 1, + STATE(1633), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54875] = 3, - ACTIONS(3534), 1, - anon_sym_LBRACE, - STATE(403), 1, - sym_statement_block, + [55559] = 3, + ACTIONS(3582), 1, + anon_sym_LPAREN, + STATE(40), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55570] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1594), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54886] = 3, - ACTIONS(3534), 1, + [55581] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(415), 1, + STATE(1073), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54897] = 3, - ACTIONS(3282), 1, - anon_sym_LBRACE, - STATE(392), 1, - sym_class_body, + [55592] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1685), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54908] = 2, + [55603] = 3, + ACTIONS(3584), 1, + anon_sym_SEMI, + ACTIONS(3586), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1937), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [54917] = 3, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(3415), 1, - anon_sym_GT, + [55614] = 3, + ACTIONS(3588), 1, + anon_sym_COMMA, + ACTIONS(3590), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54928] = 3, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3415), 1, - anon_sym_GT, + [55625] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54939] = 3, - ACTIONS(3350), 1, + ACTIONS(3592), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55634] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1064), 1, + STATE(1066), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54950] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1704), 1, - sym_formal_parameters, + [55645] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54961] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1556), 1, - sym_formal_parameters, + ACTIONS(3594), 2, + anon_sym_of, + anon_sym_in, + [55654] = 3, + ACTIONS(3533), 1, + anon_sym_LBRACE, + STATE(1075), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54972] = 3, - ACTIONS(3070), 1, + [55665] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(643), 1, - sym_class_body, + STATE(113), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54983] = 3, - ACTIONS(2939), 1, + [55676] = 3, + ACTIONS(2461), 1, anon_sym_LPAREN, - STATE(1567), 1, - sym_formal_parameters, + ACTIONS(2661), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54994] = 3, - ACTIONS(2405), 1, + [55687] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1044), 1, + STATE(1081), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55005] = 3, - ACTIONS(2405), 1, + [55698] = 3, + ACTIONS(3596), 1, anon_sym_LBRACE, - STATE(1045), 1, + STATE(407), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55016] = 3, - ACTIONS(3350), 1, + [55709] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1065), 1, + STATE(1085), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55027] = 3, - ACTIONS(2939), 1, + [55720] = 3, + ACTIONS(2461), 1, anon_sym_LPAREN, - STATE(1705), 1, - sym_formal_parameters, + ACTIONS(3598), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55038] = 3, - ACTIONS(2939), 1, + [55731] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1574), 1, + STATE(1625), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55049] = 3, - ACTIONS(2939), 1, + [55742] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1706), 1, + STATE(1637), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55060] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1707), 1, - sym_formal_parameters, + [55753] = 3, + ACTIONS(3533), 1, + anon_sym_LBRACE, + STATE(1085), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55071] = 3, - ACTIONS(2939), 1, + [55764] = 3, + ACTIONS(2827), 1, + anon_sym_COLON, + ACTIONS(3517), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55775] = 3, + ACTIONS(3079), 1, + anon_sym_LBRACE, + STATE(772), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55786] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1586), 1, + STATE(1640), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55082] = 3, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(1066), 1, - sym_statement_block, + [55797] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1528), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55093] = 3, - ACTIONS(2939), 1, + [55808] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1711), 1, + STATE(1641), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55104] = 3, - ACTIONS(3070), 1, - anon_sym_LBRACE, - STATE(644), 1, - sym_class_body, + [55819] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1742), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55115] = 3, - ACTIONS(3526), 1, + [55830] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(645), 1, + STATE(1086), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55126] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1719), 1, - sym_formal_parameters, + [55841] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55137] = 3, - ACTIONS(2939), 1, + ACTIONS(1838), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55850] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1720), 1, + STATE(1700), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55148] = 3, - ACTIONS(2939), 1, + [55861] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1721), 1, + STATE(1719), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55159] = 3, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_statement_block, + [55872] = 3, + ACTIONS(3227), 1, + anon_sym_from, + STATE(1356), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55170] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1735), 1, - sym_formal_parameters, + [55883] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55181] = 3, - ACTIONS(3526), 1, + ACTIONS(3600), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55892] = 3, + ACTIONS(3079), 1, anon_sym_LBRACE, - STATE(641), 1, - sym_statement_block, + STATE(734), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55192] = 3, - ACTIONS(3510), 1, + [55903] = 3, + ACTIONS(3566), 1, anon_sym_LBRACE, - STATE(702), 1, + STATE(640), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55203] = 3, - ACTIONS(2939), 1, + [55914] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1742), 1, + STATE(1518), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55214] = 3, - ACTIONS(2939), 1, + [55925] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1743), 1, + STATE(1530), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55225] = 3, - ACTIONS(2939), 1, + [55936] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1744), 1, + STATE(1549), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55236] = 3, - ACTIONS(3350), 1, + [55947] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1069), 1, + STATE(1087), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55247] = 3, - ACTIONS(3350), 1, + [55958] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1070), 1, + STATE(1057), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55258] = 3, - ACTIONS(2939), 1, + [55969] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1608), 1, + STATE(1722), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55269] = 3, - ACTIONS(2939), 1, + [55980] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1615), 1, + STATE(1646), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55280] = 3, - ACTIONS(2939), 1, + [55991] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1616), 1, + STATE(1650), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55291] = 3, - ACTIONS(2939), 1, + [56002] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1618), 1, + STATE(1651), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55302] = 3, - ACTIONS(2939), 1, + [56013] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1619), 1, + STATE(1653), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55313] = 3, - ACTIONS(2939), 1, + [56024] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1621), 1, + STATE(1654), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55324] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(752), 1, - sym_statement_block, + [56035] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1656), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55335] = 3, - ACTIONS(2939), 1, + [56046] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1622), 1, + STATE(1657), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55346] = 3, - ACTIONS(2939), 1, + [56057] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1623), 1, + STATE(1658), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55357] = 3, - ACTIONS(3350), 1, + [56068] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(1037), 1, + STATE(768), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55368] = 3, - ACTIONS(2939), 1, + [56079] = 3, + ACTIONS(3533), 1, + anon_sym_LBRACE, + STATE(1064), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56090] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1626), 1, + STATE(1661), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55379] = 2, + [56101] = 3, + ACTIONS(3566), 1, + anon_sym_LBRACE, + STATE(651), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3536), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [55388] = 2, + [56112] = 3, + ACTIONS(3533), 1, + anon_sym_LBRACE, + STATE(1083), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3474), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [55397] = 3, - ACTIONS(2939), 1, + [56123] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(736), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56134] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1630), 1, + STATE(1662), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55408] = 3, - ACTIONS(2939), 1, + [56145] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1631), 1, + STATE(1663), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55419] = 3, - ACTIONS(2939), 1, + [56156] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1633), 1, + STATE(1664), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55430] = 3, - ACTIONS(2939), 1, + [56167] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1634), 1, + STATE(1668), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55441] = 3, - ACTIONS(2939), 1, + [56178] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1635), 1, + STATE(1672), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55452] = 3, - ACTIONS(2939), 1, + [56189] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1636), 1, + STATE(1676), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55463] = 3, - ACTIONS(2939), 1, + [56200] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1637), 1, + STATE(1686), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55474] = 3, - ACTIONS(2939), 1, + [56211] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1638), 1, + STATE(1688), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55485] = 3, - ACTIONS(2939), 1, + [56222] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1639), 1, + STATE(1689), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55496] = 3, - ACTIONS(2939), 1, + [56233] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1640), 1, + STATE(1691), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55507] = 3, - ACTIONS(2939), 1, + [56244] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1641), 1, + STATE(1695), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55518] = 3, - ACTIONS(2939), 1, + [56255] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1642), 1, + STATE(1696), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55529] = 3, - ACTIONS(2939), 1, + [56266] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1643), 1, + STATE(1701), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55540] = 3, - ACTIONS(3538), 1, - anon_sym_COMMA, - ACTIONS(3540), 1, - anon_sym_from, + [56277] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1632), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55551] = 3, - ACTIONS(3017), 1, - anon_sym_LBRACE, - STATE(724), 1, - sym_class_body, + [56288] = 3, + ACTIONS(3602), 1, + anon_sym_SEMI, + ACTIONS(3604), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55562] = 3, - ACTIONS(2405), 1, + [56299] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1064), 1, + STATE(1065), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55573] = 3, - ACTIONS(2939), 1, + [56310] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1704), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56321] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1646), 1, + STATE(1705), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55584] = 3, - ACTIONS(2939), 1, + [56332] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1647), 1, + STATE(1706), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55595] = 3, - ACTIONS(2939), 1, + [56343] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1650), 1, + STATE(1709), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55606] = 3, - ACTIONS(2939), 1, + [56354] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1651), 1, + STATE(1710), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55617] = 3, - ACTIONS(2939), 1, + [56365] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1652), 1, + STATE(1711), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55628] = 3, - ACTIONS(2939), 1, + [56376] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1653), 1, + STATE(1517), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55639] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1065), 1, - sym_statement_block, + [56387] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1544), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55650] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1066), 1, - sym_statement_block, + [56398] = 3, + ACTIONS(3568), 1, + anon_sym_LPAREN, + STATE(41), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55661] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_statement_block, + [56409] = 3, + ACTIONS(2827), 1, + anon_sym_COLON, + ACTIONS(3500), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55672] = 3, - ACTIONS(2405), 1, + [56420] = 3, + ACTIONS(3079), 1, anon_sym_LBRACE, - STATE(1069), 1, - sym_statement_block, + STATE(743), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55683] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1070), 1, - sym_statement_block, + [56431] = 3, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(3500), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55694] = 2, + [56442] = 3, + ACTIONS(3227), 1, + anon_sym_from, + STATE(1609), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(716), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55703] = 3, - ACTIONS(2405), 1, + [56453] = 3, + ACTIONS(3107), 1, anon_sym_LBRACE, - STATE(1037), 1, - sym_statement_block, + STATE(609), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55714] = 3, - ACTIONS(3526), 1, + [56464] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(620), 1, + STATE(1070), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55725] = 3, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(605), 1, - sym_statement_block, + [56475] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55736] = 3, - ACTIONS(3070), 1, + ACTIONS(3415), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56484] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(612), 1, - sym_class_body, + STATE(1088), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55747] = 3, - ACTIONS(3248), 1, - anon_sym_from, - STATE(1372), 1, - sym__from_clause, + [56495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55758] = 3, - ACTIONS(3510), 1, + ACTIONS(3606), 2, anon_sym_LBRACE, - STATE(774), 1, - sym_statement_block, + anon_sym_EQ_GT, + [56504] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55769] = 3, - ACTIONS(2939), 1, + ACTIONS(3510), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56513] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1524), 1, + STATE(1551), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55780] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(772), 1, - sym_statement_block, + [56524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55791] = 3, - ACTIONS(3510), 1, + ACTIONS(1995), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56533] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(773), 1, + STATE(1067), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55802] = 3, - ACTIONS(2405), 1, + [56544] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1046), 1, + STATE(1061), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55813] = 3, - ACTIONS(2405), 1, + [56555] = 3, + ACTIONS(3107), 1, anon_sym_LBRACE, - STATE(1048), 1, - sym_statement_block, + STATE(615), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55824] = 3, - ACTIONS(3017), 1, - anon_sym_LBRACE, - STATE(786), 1, - sym_class_body, + [56566] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1707), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55835] = 3, - ACTIONS(2405), 1, + [56577] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(1049), 1, + STATE(745), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55846] = 3, - ACTIONS(2405), 1, + [56588] = 3, + ACTIONS(3566), 1, anon_sym_LBRACE, - STATE(1050), 1, + STATE(627), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55857] = 3, - ACTIONS(2405), 1, + [56599] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1051), 1, + STATE(1062), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55868] = 3, - ACTIONS(2405), 1, + [56610] = 3, + ACTIONS(3566), 1, anon_sym_LBRACE, - STATE(1052), 1, + STATE(638), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55879] = 3, - ACTIONS(2405), 1, + [56621] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(1059), 1, + STATE(738), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55890] = 3, - ACTIONS(2405), 1, + [56632] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(1060), 1, + STATE(739), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55901] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1061), 1, - sym_statement_block, + [56643] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55912] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1062), 1, - sym_statement_block, + ACTIONS(828), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56652] = 3, + ACTIONS(3608), 1, + anon_sym_SEMI, + ACTIONS(3610), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55923] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1063), 1, - sym_statement_block, + [56663] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1567), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55934] = 3, - ACTIONS(2405), 1, + [56674] = 3, + ACTIONS(3079), 1, anon_sym_LBRACE, - STATE(1039), 1, - sym_statement_block, + STATE(740), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55945] = 3, - ACTIONS(3526), 1, + [56685] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(636), 1, + STATE(1082), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55956] = 3, - ACTIONS(3350), 1, + [56696] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1040), 1, + STATE(374), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55967] = 3, - ACTIONS(3017), 1, + [56707] = 3, + ACTIONS(3612), 1, anon_sym_LBRACE, - STATE(98), 1, - sym_class_body, + STATE(424), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55978] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1053), 1, - sym_statement_block, + [56718] = 3, + ACTIONS(3582), 1, + anon_sym_LPAREN, + STATE(69), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55989] = 3, - ACTIONS(2405), 1, + [56729] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1054), 1, + STATE(1076), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56000] = 2, + [56740] = 3, + ACTIONS(2473), 1, + anon_sym_LBRACE, + STATE(1083), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3542), 2, - anon_sym_of, - anon_sym_in, - [56009] = 2, + [56751] = 3, + ACTIONS(2473), 1, + anon_sym_LBRACE, + STATE(1056), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 2, - anon_sym_of, - anon_sym_in, - [56018] = 3, - ACTIONS(2405), 1, + [56762] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1055), 1, + STATE(1081), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56029] = 3, - ACTIONS(2405), 1, + [56773] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1056), 1, + STATE(1060), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56040] = 3, - ACTIONS(2405), 1, + [56784] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1057), 1, + STATE(1056), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56051] = 3, - ACTIONS(2405), 1, + [56795] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1058), 1, + STATE(1072), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56062] = 3, - ACTIONS(3546), 1, - sym_identifier, - ACTIONS(3548), 1, - anon_sym_STAR, + [56806] = 3, + ACTIONS(3566), 1, + anon_sym_LBRACE, + STATE(608), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56073] = 3, - ACTIONS(3550), 1, - sym_identifier, - ACTIONS(3552), 1, - anon_sym_STAR, + [56817] = 3, + ACTIONS(3566), 1, + anon_sym_LBRACE, + STATE(610), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56084] = 3, - ACTIONS(3017), 1, + [56828] = 3, + ACTIONS(3107), 1, anon_sym_LBRACE, - STATE(807), 1, + STATE(618), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56095] = 3, - ACTIONS(3516), 1, - anon_sym_LPAREN, - STATE(71), 1, - sym_parenthesized_expression, + [56839] = 3, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(3517), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56106] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1683), 1, - sym_formal_parameters, + [56850] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(741), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56117] = 2, + [56861] = 3, + ACTIONS(2473), 1, + anon_sym_LBRACE, + STATE(1071), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3554), 2, + [56872] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [56126] = 2, + STATE(1074), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3556), 2, + [56883] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [56135] = 2, + STATE(1078), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [56144] = 2, + [56894] = 3, + ACTIONS(3533), 1, + anon_sym_LBRACE, + STATE(1071), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1956), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56153] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1502), 1, - sym_formal_parameters, + [56905] = 3, + ACTIONS(2473), 1, + anon_sym_LBRACE, + STATE(1091), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56164] = 3, - ACTIONS(3558), 1, - anon_sym_SEMI, - ACTIONS(3560), 1, - sym__automatic_semicolon, + [56916] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56175] = 3, - ACTIONS(3510), 1, + ACTIONS(3614), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [56925] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(779), 1, + STATE(1084), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56186] = 3, - ACTIONS(3562), 1, - anon_sym_SEMI, - ACTIONS(3564), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [56197] = 3, - ACTIONS(3566), 1, + [56936] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(478), 1, - sym_switch_body, + STATE(1060), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56208] = 3, - ACTIONS(3516), 1, - anon_sym_LPAREN, - STATE(57), 1, - sym_parenthesized_expression, + [56947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56219] = 2, + ACTIONS(3616), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3568), 2, + ACTIONS(3618), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [56228] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1518), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [56239] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(764), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [56250] = 3, - ACTIONS(3510), 1, + [56965] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(99), 1, + STATE(1086), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56261] = 2, + [56976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3570), 2, + ACTIONS(3620), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56270] = 3, - ACTIONS(3572), 1, - anon_sym_SEMI, - ACTIONS(3574), 1, - sym__automatic_semicolon, + [56985] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN, + STATE(397), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56281] = 3, - ACTIONS(2939), 1, + [56996] = 3, + ACTIONS(3568), 1, anon_sym_LPAREN, - STATE(1672), 1, - sym_formal_parameters, + STATE(44), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56292] = 3, - ACTIONS(3282), 1, + [57007] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(398), 1, - sym_class_body, + STATE(1087), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56303] = 3, - ACTIONS(3516), 1, - anon_sym_LPAREN, - STATE(1667), 1, - sym_parenthesized_expression, + [57018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56314] = 2, + ACTIONS(1801), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57027] = 3, + ACTIONS(3533), 1, + anon_sym_LBRACE, + STATE(1072), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3576), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56323] = 3, - ACTIONS(3510), 1, + [57038] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(96), 1, + STATE(478), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56334] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1545), 1, - sym_formal_parameters, + [57049] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(710), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56345] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1546), 1, - sym_formal_parameters, + [57060] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56356] = 3, - ACTIONS(2939), 1, + ACTIONS(2014), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [57069] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1542), 1, + STATE(1552), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56367] = 3, - ACTIONS(3534), 1, + [57080] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(409), 1, + STATE(723), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56378] = 3, - ACTIONS(3510), 1, + [57091] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(699), 1, + STATE(118), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56389] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3578), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56398] = 3, - ACTIONS(3580), 1, - anon_sym_SEMI, - ACTIONS(3582), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [56409] = 3, - ACTIONS(3584), 1, - anon_sym_LPAREN, - STATE(395), 1, - sym_parenthesized_expression, + [57102] = 3, + ACTIONS(3533), 1, + anon_sym_LBRACE, + STATE(1082), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56420] = 3, - ACTIONS(3350), 1, + [57113] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(458), 1, + STATE(1057), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56431] = 2, + [57124] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3586), 2, + ACTIONS(3624), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56440] = 3, - ACTIONS(3350), 1, + [57133] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1044), 1, + STATE(1064), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56451] = 3, - ACTIONS(3350), 1, + [57144] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1053), 1, + STATE(1065), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56462] = 3, - ACTIONS(3248), 1, - anon_sym_from, - STATE(1664), 1, - sym__from_clause, + [57155] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1665), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56473] = 3, - ACTIONS(3350), 1, + [57166] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1054), 1, + STATE(1067), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56484] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1551), 1, - sym_formal_parameters, + [57177] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56495] = 2, + ACTIONS(3537), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57186] = 3, + ACTIONS(2827), 1, + anon_sym_COLON, + ACTIONS(3417), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1954), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56504] = 3, - ACTIONS(3017), 1, - anon_sym_LBRACE, - STATE(743), 1, - sym_class_body, + [57197] = 3, + ACTIONS(3568), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56515] = 3, - ACTIONS(3528), 1, - anon_sym_LPAREN, - STATE(53), 1, - sym__for_header, + [57208] = 3, + ACTIONS(2473), 1, + anon_sym_LBRACE, + STATE(1061), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56526] = 3, - ACTIONS(2405), 1, + [57219] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1078), 1, + STATE(1062), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56537] = 2, + [57230] = 3, + ACTIONS(3073), 1, + anon_sym_of, + ACTIONS(3075), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3348), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56546] = 3, - ACTIONS(3534), 1, + [57241] = 3, + ACTIONS(3111), 1, + anon_sym_of, + ACTIONS(3113), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57252] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1680), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57263] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(408), 1, + STATE(778), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56557] = 3, - ACTIONS(3350), 1, + [57274] = 3, + ACTIONS(3566), 1, anon_sym_LBRACE, - STATE(1055), 1, + STATE(645), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56568] = 2, + [57285] = 3, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(3417), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3588), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56577] = 3, - ACTIONS(3590), 1, - anon_sym_LBRACE, - STATE(1685), 1, - sym_object, + [57296] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1721), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56588] = 3, - ACTIONS(3350), 1, + [57307] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1046), 1, + STATE(1059), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56599] = 3, - ACTIONS(3350), 1, + [57318] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1048), 1, + STATE(1063), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56610] = 3, - ACTIONS(3350), 1, + [57329] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1049), 1, + STATE(1066), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56621] = 3, - ACTIONS(3350), 1, + [57340] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(1050), 1, + STATE(120), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56632] = 3, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(381), 1, - sym_statement_block, + [57351] = 3, + ACTIONS(3626), 1, + sym_identifier, + ACTIONS(3628), 1, + sym_jsx_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56643] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1628), 1, - sym_formal_parameters, + [57362] = 3, + ACTIONS(2473), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56654] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1690), 1, - sym_formal_parameters, + [57373] = 3, + ACTIONS(2473), 1, + anon_sym_LBRACE, + STATE(1073), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56665] = 3, - ACTIONS(3350), 1, + [57384] = 3, + ACTIONS(2473), 1, anon_sym_LBRACE, - STATE(1051), 1, + STATE(1075), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56676] = 3, - ACTIONS(2939), 1, + [57395] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1691), 1, + STATE(1744), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56687] = 3, - ACTIONS(2939), 1, + [57406] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1629), 1, + STATE(1610), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56698] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(754), 1, - sym_statement_block, + [57417] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56709] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1693), 1, - sym_formal_parameters, + ACTIONS(3630), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56720] = 3, - ACTIONS(3056), 1, - anon_sym_of, - ACTIONS(3058), 1, - anon_sym_in, + ACTIONS(1738), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57435] = 3, + ACTIONS(3231), 1, + anon_sym_LBRACE, + STATE(412), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56731] = 3, - ACTIONS(3350), 1, + [57446] = 3, + ACTIONS(3079), 1, anon_sym_LBRACE, - STATE(1056), 1, - sym_statement_block, + STATE(828), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56742] = 3, - ACTIONS(2939), 1, + [57457] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1701), 1, + STATE(1638), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56753] = 3, - ACTIONS(3350), 1, + [57468] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1052), 1, + STATE(1074), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56764] = 3, - ACTIONS(3350), 1, + [57479] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1991), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57488] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1059), 1, + STATE(1078), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56775] = 3, - ACTIONS(3350), 1, + [57499] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(1060), 1, + STATE(783), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56786] = 2, + [57510] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1993), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57519] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1590), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57530] = 3, + ACTIONS(3231), 1, + anon_sym_LBRACE, + STATE(403), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3393), 2, + ACTIONS(3423), 2, anon_sym_COMMA, anon_sym_RBRACE, - [56795] = 3, - ACTIONS(3350), 1, + [57550] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1057), 1, + STATE(1076), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56806] = 3, - ACTIONS(3592), 1, - sym_identifier, - ACTIONS(3594), 1, - sym_jsx_identifier, + [57561] = 3, + ACTIONS(3079), 1, + anon_sym_LBRACE, + STATE(121), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56817] = 3, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(1058), 1, - sym_statement_block, + [57572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56828] = 3, - ACTIONS(2939), 1, + ACTIONS(3632), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57581] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1558), 1, + STATE(1578), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56839] = 2, + [57592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3596), 2, + ACTIONS(3634), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56848] = 3, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(407), 1, - sym_statement_block, + [57601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56859] = 3, - ACTIONS(3064), 1, + ACTIONS(3636), 2, anon_sym_of, - ACTIONS(3066), 1, anon_sym_in, + [57610] = 3, + ACTIONS(3079), 1, + anon_sym_LBRACE, + STATE(820), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56870] = 3, - ACTIONS(2939), 1, + [57621] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3638), 2, + anon_sym_of, + anon_sym_in, + [57630] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1564), 1, + STATE(1754), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56881] = 2, + [57641] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1755), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3598), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56890] = 2, + [57652] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1539), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3600), 2, - sym__automatic_semicolon, + [57663] = 3, + ACTIONS(3640), 1, anon_sym_SEMI, - [56899] = 3, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(3384), 1, - anon_sym_GT, + ACTIONS(3642), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56910] = 2, + [57674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 2, - anon_sym_of, - anon_sym_in, - [56919] = 3, - ACTIONS(3350), 1, + ACTIONS(3433), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57683] = 3, + ACTIONS(3079), 1, anon_sym_LBRACE, - STATE(1061), 1, - sym_statement_block, + STATE(114), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56930] = 3, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3384), 1, - anon_sym_GT, + [57694] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1579), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57705] = 3, + ACTIONS(3596), 1, + anon_sym_LBRACE, + STATE(404), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56941] = 2, + [57716] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1749), 2, + ACTIONS(3644), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56950] = 3, - ACTIONS(3070), 1, + [57725] = 3, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(595), 1, - sym_class_body, + STATE(1070), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56961] = 3, - ACTIONS(2939), 1, + [57736] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1717), 1, + STATE(1684), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56972] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1723), 1, - sym_formal_parameters, + [57747] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(819), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56983] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1725), 1, - sym_formal_parameters, + [57758] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56994] = 3, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(1062), 1, - sym_statement_block, + ACTIONS(3488), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57767] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57005] = 3, - ACTIONS(3350), 1, + ACTIONS(1742), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57776] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(1063), 1, + STATE(814), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57016] = 3, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(1039), 1, - sym_statement_block, + [57787] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57027] = 3, - ACTIONS(2939), 1, + ACTIONS(3646), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57796] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3648), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57805] = 3, + ACTIONS(3650), 1, + sym_identifier, + ACTIONS(3652), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57816] = 3, + ACTIONS(3003), 1, anon_sym_LPAREN, - STATE(1679), 1, + STATE(1555), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57038] = 3, - ACTIONS(3526), 1, + [57827] = 3, + ACTIONS(3596), 1, anon_sym_LBRACE, - STATE(596), 1, + STATE(394), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57049] = 2, + [57838] = 3, + ACTIONS(3596), 1, + anon_sym_LBRACE, + STATE(396), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3604), 2, - anon_sym_of, - anon_sym_in, - [57058] = 2, - ACTIONS(1991), 1, - anon_sym_RPAREN, + [57849] = 3, + ACTIONS(3568), 1, + anon_sym_LPAREN, + STATE(1648), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57066] = 2, - ACTIONS(2101), 1, - anon_sym_RBRACK, + [57860] = 3, + ACTIONS(3003), 1, + anon_sym_LPAREN, + STATE(1589), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57074] = 2, - ACTIONS(2109), 1, - anon_sym_RPAREN, + [57871] = 2, + ACTIONS(3654), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57082] = 2, - ACTIONS(3606), 1, - sym_identifier, + [57879] = 2, + ACTIONS(2079), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57090] = 2, - ACTIONS(3413), 1, - anon_sym_RBRACE, + [57887] = 2, + ACTIONS(3590), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57098] = 2, - ACTIONS(2019), 1, - anon_sym_RBRACE, + [57895] = 2, + ACTIONS(2111), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57106] = 2, - ACTIONS(3608), 1, - anon_sym_target, + [57903] = 2, + ACTIONS(3598), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57114] = 2, - ACTIONS(3610), 1, - anon_sym_while, + [57911] = 2, + ACTIONS(2247), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57122] = 2, - ACTIONS(1804), 1, - anon_sym_in, + [57919] = 2, + ACTIONS(3656), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57130] = 2, - ACTIONS(2003), 1, - anon_sym_RPAREN, + [57927] = 2, + ACTIONS(2089), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57138] = 2, - ACTIONS(3608), 1, - anon_sym_meta, + [57935] = 2, + ACTIONS(3658), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57146] = 2, - ACTIONS(3612), 1, - anon_sym_COLON, + [57943] = 2, + ACTIONS(3660), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57154] = 2, - ACTIONS(1989), 1, - anon_sym_RPAREN, + [57951] = 2, + ACTIONS(3662), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57162] = 2, - ACTIONS(2005), 1, + [57959] = 2, + ACTIONS(2083), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57170] = 2, - ACTIONS(2999), 1, - anon_sym_EQ, + [57967] = 2, + ACTIONS(3664), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57178] = 2, - ACTIONS(3614), 1, - anon_sym_EQ_GT, + [57975] = 2, + ACTIONS(3441), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57186] = 2, - ACTIONS(2111), 1, - anon_sym_RPAREN, + [57983] = 2, + ACTIONS(3666), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57194] = 2, - ACTIONS(2045), 1, - anon_sym_RBRACE, + [57991] = 2, + ACTIONS(2119), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57202] = 2, - ACTIONS(3616), 1, - anon_sym_from, + [57999] = 2, + ACTIONS(2155), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57210] = 2, - ACTIONS(2395), 1, - anon_sym_LPAREN, + [58007] = 2, + ACTIONS(3668), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57218] = 2, - ACTIONS(2577), 1, - anon_sym_EQ_GT, + [58015] = 2, + ACTIONS(2121), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [58023] = 2, + ACTIONS(3670), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3618), 1, - sym_regex_pattern, - [57236] = 3, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3620), 1, - anon_sym_SLASH2, - [57246] = 2, - ACTIONS(2189), 1, - anon_sym_in, + [58031] = 2, + ACTIONS(3672), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57254] = 2, - ACTIONS(3622), 1, + [58039] = 2, + ACTIONS(3674), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57262] = 2, - ACTIONS(2127), 1, + [58047] = 2, + ACTIONS(2075), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57270] = 2, - ACTIONS(2015), 1, + [58055] = 2, + ACTIONS(2081), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57278] = 2, - ACTIONS(3624), 1, - anon_sym_as, + [58063] = 2, + ACTIONS(2125), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57286] = 2, - ACTIONS(3626), 1, - anon_sym_EQ, + [58071] = 2, + ACTIONS(3676), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57294] = 2, - ACTIONS(2223), 1, - anon_sym_in, + [58079] = 2, + ACTIONS(3517), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57302] = 2, - ACTIONS(3628), 1, - anon_sym_EQ_GT, + [58087] = 2, + ACTIONS(3417), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57310] = 2, - ACTIONS(3630), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, + [58095] = 3, + ACTIONS(3), 1, sym_comment, - [57318] = 2, - ACTIONS(3632), 1, - anon_sym_EQ_GT, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3678), 1, + anon_sym_SLASH2, + [58105] = 2, + ACTIONS(2215), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57326] = 2, - ACTIONS(3634), 1, + [58113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3680), 1, + anon_sym_SLASH2, + [58123] = 2, + ACTIONS(3682), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57334] = 2, - ACTIONS(3636), 1, + [58131] = 2, + ACTIONS(3684), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57342] = 2, - ACTIONS(3638), 1, - anon_sym_using, + [58139] = 2, + ACTIONS(3686), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57350] = 2, - ACTIONS(3640), 1, - sym_identifier, + [58147] = 2, + ACTIONS(3688), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57358] = 3, + [58155] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3642), 1, + ACTIONS(3690), 1, sym_regex_pattern, - [57368] = 2, - ACTIONS(3644), 1, - ts_builtin_sym_end, + [58165] = 2, + ACTIONS(2091), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57376] = 3, + [58173] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3646), 1, - anon_sym_SLASH2, - [57386] = 2, - ACTIONS(3648), 1, - anon_sym_EQ, + ACTIONS(3692), 1, + sym_regex_pattern, + [58183] = 2, + ACTIONS(2077), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57394] = 2, - ACTIONS(2049), 1, - anon_sym_SEMI, + [58191] = 2, + ACTIONS(3694), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57402] = 2, - ACTIONS(3650), 1, - anon_sym_EQ, + [58199] = 2, + ACTIONS(2461), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57410] = 2, - ACTIONS(3652), 1, - sym_identifier, + [58207] = 2, + ACTIONS(3696), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58215] = 2, + ACTIONS(2109), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57418] = 2, - ACTIONS(1985), 1, + [58223] = 2, + ACTIONS(2041), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57426] = 2, - ACTIONS(3654), 1, - anon_sym_as, + [58231] = 2, + ACTIONS(2101), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57434] = 2, - ACTIONS(3656), 1, - anon_sym_meta, + [58239] = 2, + ACTIONS(3698), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57442] = 2, - ACTIONS(2007), 1, - anon_sym_RPAREN, + [58247] = 2, + ACTIONS(3700), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57450] = 2, - ACTIONS(3658), 1, - anon_sym_COLON, + [58255] = 2, + ACTIONS(3702), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57458] = 2, - ACTIONS(3660), 1, - anon_sym_from, + [58263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3704), 1, + anon_sym_SLASH2, + [58273] = 2, + ACTIONS(3706), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57466] = 2, - ACTIONS(1866), 1, + [58281] = 2, + ACTIONS(1976), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57474] = 2, - ACTIONS(3415), 1, - anon_sym_GT, + [58289] = 2, + ACTIONS(3708), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57482] = 2, - ACTIONS(3662), 1, - anon_sym_from, + [58297] = 2, + ACTIONS(3710), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57490] = 2, - ACTIONS(3664), 1, - anon_sym_function, + [58305] = 2, + ACTIONS(3712), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57498] = 2, - ACTIONS(3666), 1, + [58313] = 2, + ACTIONS(3714), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57506] = 2, - ACTIONS(3668), 1, + [58321] = 2, + ACTIONS(3716), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57514] = 2, - ACTIONS(2063), 1, - anon_sym_RPAREN, + [58329] = 2, + ACTIONS(3702), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57522] = 2, - ACTIONS(3670), 1, - anon_sym_from, + [58337] = 2, + ACTIONS(3718), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57530] = 2, - ACTIONS(1987), 1, - anon_sym_RPAREN, + [58345] = 2, + ACTIONS(3720), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57538] = 2, - ACTIONS(2117), 1, - anon_sym_RPAREN, + [58353] = 2, + ACTIONS(2037), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [58361] = 2, + ACTIONS(3722), 1, + anon_sym_from, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3672), 1, - anon_sym_SLASH2, - [57556] = 2, - ACTIONS(2153), 1, - anon_sym_in, + sym_comment, + [58369] = 2, + ACTIONS(3449), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57564] = 2, - ACTIONS(3674), 1, + [58377] = 2, + ACTIONS(3724), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57572] = 2, - ACTIONS(2077), 1, + [58385] = 2, + ACTIONS(3726), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57580] = 2, - ACTIONS(2107), 1, - anon_sym_RPAREN, + [58393] = 2, + ACTIONS(3195), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57588] = 2, - ACTIONS(3676), 1, + [58401] = 2, + ACTIONS(3728), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57596] = 2, - ACTIONS(3500), 1, - anon_sym_GT, + [58409] = 2, + ACTIONS(2043), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58417] = 2, + ACTIONS(2283), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58425] = 2, + ACTIONS(2117), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58433] = 2, + ACTIONS(3730), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57604] = 2, - ACTIONS(3163), 1, + [58441] = 2, + ACTIONS(3235), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57612] = 2, - ACTIONS(3678), 1, - anon_sym_EQ_GT, + [58449] = 2, + ACTIONS(2131), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57620] = 2, - ACTIONS(2105), 1, + [58457] = 2, + ACTIONS(2139), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57628] = 2, - ACTIONS(3680), 1, - anon_sym_EQ_GT, + [58465] = 2, + ACTIONS(3732), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57636] = 2, - ACTIONS(3682), 1, - anon_sym_EQ_GT, + [58473] = 2, + ACTIONS(1866), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57644] = 2, - ACTIONS(3684), 1, + [58481] = 2, + ACTIONS(3734), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57652] = 2, - ACTIONS(3686), 1, + [58489] = 2, + ACTIONS(3736), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [58497] = 2, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3688), 1, - anon_sym_SLASH2, - [57670] = 2, - ACTIONS(3690), 1, + sym_comment, + [58505] = 2, + ACTIONS(3740), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57678] = 2, - ACTIONS(3692), 1, + [58513] = 2, + ACTIONS(3742), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57686] = 2, - ACTIONS(3694), 1, - sym_identifier, + [58521] = 2, + ACTIONS(3744), 1, + anon_sym_using, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57694] = 2, - ACTIONS(2037), 1, + [58529] = 2, + ACTIONS(2087), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57702] = 2, - ACTIONS(3524), 1, + [58537] = 2, + ACTIONS(3746), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57710] = 2, - ACTIONS(3356), 1, - anon_sym_RBRACE, + [58545] = 2, + ACTIONS(3748), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3696), 1, - sym_regex_pattern, - [57728] = 2, - ACTIONS(1902), 1, - anon_sym_in, + [58553] = 2, + ACTIONS(3750), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57736] = 2, - ACTIONS(2119), 1, - anon_sym_RPAREN, + [58561] = 2, + ACTIONS(2093), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57744] = 3, + [58569] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3698), 1, + ACTIONS(3752), 1, sym_regex_pattern, - [57754] = 2, - ACTIONS(3700), 1, - anon_sym_from, + [58579] = 2, + ACTIONS(2105), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57762] = 2, - ACTIONS(3702), 1, - anon_sym_EQ_GT, + [58587] = 2, + ACTIONS(3754), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57770] = 2, - ACTIONS(2121), 1, + [58595] = 2, + ACTIONS(2113), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57778] = 2, - ACTIONS(3704), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [57786] = 2, - ACTIONS(3706), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [57794] = 2, - ACTIONS(2103), 1, + [58603] = 2, + ACTIONS(2195), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57802] = 2, - ACTIONS(2113), 1, + [58611] = 2, + ACTIONS(3756), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57810] = 2, - ACTIONS(3708), 1, + [58619] = 2, + ACTIONS(3758), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57818] = 2, - ACTIONS(2047), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [58627] = 3, + ACTIONS(3), 1, sym_comment, - [57826] = 2, - ACTIONS(2001), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3760), 1, + sym_regex_pattern, + [58637] = 2, + ACTIONS(2171), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57834] = 2, - ACTIONS(2123), 1, + [58645] = 2, + ACTIONS(2183), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57842] = 2, - ACTIONS(3710), 1, + [58653] = 2, + ACTIONS(2107), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57850] = 2, - ACTIONS(2025), 1, - anon_sym_RBRACE, + [58661] = 2, + ACTIONS(3762), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57858] = 2, - ACTIONS(3384), 1, - anon_sym_GT, + [58669] = 2, + ACTIONS(3764), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57866] = 2, - ACTIONS(2011), 1, - anon_sym_SEMI, + [58677] = 2, + ACTIONS(2135), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57874] = 2, - ACTIONS(3712), 1, - sym_identifier, + [58685] = 2, + ACTIONS(1934), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57882] = 2, - ACTIONS(3714), 1, - anon_sym_EQ_GT, + [58693] = 2, + ACTIONS(2099), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57890] = 2, - ACTIONS(3716), 1, - anon_sym_RPAREN, + [58701] = 2, + ACTIONS(3766), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57898] = 2, - ACTIONS(3718), 1, - anon_sym_EQ_GT, + [58709] = 2, + ACTIONS(2103), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57906] = 2, - ACTIONS(2125), 1, + [58717] = 2, + ACTIONS(2159), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57914] = 2, - ACTIONS(3720), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [57922] = 2, - ACTIONS(2115), 1, - anon_sym_RPAREN, + [58725] = 2, + ACTIONS(3768), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57930] = 2, - ACTIONS(3722), 1, - sym_identifier, + [58733] = 2, + ACTIONS(3439), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57938] = 2, - ACTIONS(3724), 1, + [58741] = 2, + ACTIONS(3770), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57946] = 2, - ACTIONS(3726), 1, - anon_sym_EQ, + [58749] = 2, + ACTIONS(3668), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57954] = 2, - ACTIONS(2043), 1, - anon_sym_RBRACK, + [58757] = 2, + ACTIONS(3772), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57962] = 2, - ACTIONS(3728), 1, - anon_sym_EQ_GT, + [58765] = 2, + ACTIONS(2095), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57970] = 2, - ACTIONS(3730), 1, - sym_identifier, + [58773] = 2, + ACTIONS(3774), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57978] = 2, - ACTIONS(3382), 1, + [58781] = 2, + ACTIONS(3500), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57986] = 2, - ACTIONS(3540), 1, - anon_sym_from, + [58789] = 2, + ACTIONS(2661), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57994] = 2, - ACTIONS(2013), 1, - anon_sym_RPAREN, + [58797] = 2, + ACTIONS(2115), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [58002] = 2, - ACTIONS(3732), 1, - anon_sym_RPAREN, + [58805] = 2, + ACTIONS(3776), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [58010] = 2, - ACTIONS(3656), 1, - anon_sym_target, + [58813] = 2, + ACTIONS(3778), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [58018] = 2, - ACTIONS(3734), 1, - anon_sym_from, + [58821] = 2, + ACTIONS(3780), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [58026] = 2, - ACTIONS(2023), 1, - anon_sym_RBRACK, + [58829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3782), 1, + anon_sym_SLASH2, + [58839] = 2, + ACTIONS(2137), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [58034] = 2, - ACTIONS(2051), 1, + [58847] = 2, + ACTIONS(2129), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [58042] = 2, - ACTIONS(3736), 1, + [58855] = 2, + ACTIONS(3784), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -90844,35 +93362,35 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(387)] = 0, [SMALL_STATE(388)] = 91, - [SMALL_STATE(389)] = 178, + [SMALL_STATE(389)] = 166, [SMALL_STATE(390)] = 253, [SMALL_STATE(391)] = 340, - [SMALL_STATE(392)] = 410, - [SMALL_STATE(393)] = 482, - [SMALL_STATE(394)] = 568, - [SMALL_STATE(395)] = 640, - [SMALL_STATE(396)] = 712, - [SMALL_STATE(397)] = 802, - [SMALL_STATE(398)] = 892, - [SMALL_STATE(399)] = 964, - [SMALL_STATE(400)] = 1034, - [SMALL_STATE(401)] = 1104, - [SMALL_STATE(402)] = 1174, - [SMALL_STATE(403)] = 1244, - [SMALL_STATE(404)] = 1316, - [SMALL_STATE(405)] = 1386, - [SMALL_STATE(406)] = 1458, + [SMALL_STATE(392)] = 426, + [SMALL_STATE(393)] = 512, + [SMALL_STATE(394)] = 582, + [SMALL_STATE(395)] = 654, + [SMALL_STATE(396)] = 744, + [SMALL_STATE(397)] = 816, + [SMALL_STATE(398)] = 888, + [SMALL_STATE(399)] = 958, + [SMALL_STATE(400)] = 1028, + [SMALL_STATE(401)] = 1098, + [SMALL_STATE(402)] = 1184, + [SMALL_STATE(403)] = 1256, + [SMALL_STATE(404)] = 1328, + [SMALL_STATE(405)] = 1400, + [SMALL_STATE(406)] = 1472, [SMALL_STATE(407)] = 1544, - [SMALL_STATE(408)] = 1614, - [SMALL_STATE(409)] = 1686, - [SMALL_STATE(410)] = 1758, - [SMALL_STATE(411)] = 1844, - [SMALL_STATE(412)] = 1918, - [SMALL_STATE(413)] = 2004, - [SMALL_STATE(414)] = 2076, + [SMALL_STATE(408)] = 1616, + [SMALL_STATE(409)] = 1702, + [SMALL_STATE(410)] = 1772, + [SMALL_STATE(411)] = 1858, + [SMALL_STATE(412)] = 1928, + [SMALL_STATE(413)] = 2000, + [SMALL_STATE(414)] = 2072, [SMALL_STATE(415)] = 2162, - [SMALL_STATE(416)] = 2234, - [SMALL_STATE(417)] = 2306, + [SMALL_STATE(416)] = 2252, + [SMALL_STATE(417)] = 2322, [SMALL_STATE(418)] = 2396, [SMALL_STATE(419)] = 2466, [SMALL_STATE(420)] = 2535, @@ -90946,34 +93464,34 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(488)] = 7227, [SMALL_STATE(489)] = 7315, [SMALL_STATE(490)] = 7401, - [SMALL_STATE(491)] = 7483, - [SMALL_STATE(492)] = 7549, - [SMALL_STATE(493)] = 7631, - [SMALL_STATE(494)] = 7697, - [SMALL_STATE(495)] = 7763, - [SMALL_STATE(496)] = 7829, - [SMALL_STATE(497)] = 7895, - [SMALL_STATE(498)] = 7961, - [SMALL_STATE(499)] = 8031, + [SMALL_STATE(491)] = 7471, + [SMALL_STATE(492)] = 7537, + [SMALL_STATE(493)] = 7603, + [SMALL_STATE(494)] = 7685, + [SMALL_STATE(495)] = 7767, + [SMALL_STATE(496)] = 7833, + [SMALL_STATE(497)] = 7915, + [SMALL_STATE(498)] = 7981, + [SMALL_STATE(499)] = 8047, [SMALL_STATE(500)] = 8113, [SMALL_STATE(501)] = 8179, - [SMALL_STATE(502)] = 8250, - [SMALL_STATE(503)] = 8321, - [SMALL_STATE(504)] = 8392, - [SMALL_STATE(505)] = 8463, + [SMALL_STATE(502)] = 8262, + [SMALL_STATE(503)] = 8333, + [SMALL_STATE(504)] = 8404, + [SMALL_STATE(505)] = 8475, [SMALL_STATE(506)] = 8546, [SMALL_STATE(507)] = 8610, - [SMALL_STATE(508)] = 8678, - [SMALL_STATE(509)] = 8742, - [SMALL_STATE(510)] = 8806, - [SMALL_STATE(511)] = 8870, - [SMALL_STATE(512)] = 8934, - [SMALL_STATE(513)] = 8998, - [SMALL_STATE(514)] = 9062, - [SMALL_STATE(515)] = 9126, - [SMALL_STATE(516)] = 9190, - [SMALL_STATE(517)] = 9254, - [SMALL_STATE(518)] = 9318, + [SMALL_STATE(508)] = 8674, + [SMALL_STATE(509)] = 8738, + [SMALL_STATE(510)] = 8802, + [SMALL_STATE(511)] = 8866, + [SMALL_STATE(512)] = 8930, + [SMALL_STATE(513)] = 8994, + [SMALL_STATE(514)] = 9058, + [SMALL_STATE(515)] = 9122, + [SMALL_STATE(516)] = 9186, + [SMALL_STATE(517)] = 9250, + [SMALL_STATE(518)] = 9314, [SMALL_STATE(519)] = 9382, [SMALL_STATE(520)] = 9446, [SMALL_STATE(521)] = 9510, @@ -90982,1349 +93500,1359 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(524)] = 9702, [SMALL_STATE(525)] = 9766, [SMALL_STATE(526)] = 9830, - [SMALL_STATE(527)] = 9893, - [SMALL_STATE(528)] = 9962, - [SMALL_STATE(529)] = 10029, - [SMALL_STATE(530)] = 10098, - [SMALL_STATE(531)] = 10167, - [SMALL_STATE(532)] = 10238, - [SMALL_STATE(533)] = 10309, - [SMALL_STATE(534)] = 10380, - [SMALL_STATE(535)] = 10443, - [SMALL_STATE(536)] = 10514, - [SMALL_STATE(537)] = 10585, - [SMALL_STATE(538)] = 10654, - [SMALL_STATE(539)] = 10717, - [SMALL_STATE(540)] = 10788, - [SMALL_STATE(541)] = 10859, - [SMALL_STATE(542)] = 10930, - [SMALL_STATE(543)] = 11001, - [SMALL_STATE(544)] = 11070, - [SMALL_STATE(545)] = 11139, - [SMALL_STATE(546)] = 11202, - [SMALL_STATE(547)] = 11271, - [SMALL_STATE(548)] = 11334, - [SMALL_STATE(549)] = 11397, - [SMALL_STATE(550)] = 11468, - [SMALL_STATE(551)] = 11537, + [SMALL_STATE(527)] = 9901, + [SMALL_STATE(528)] = 9970, + [SMALL_STATE(529)] = 10033, + [SMALL_STATE(530)] = 10096, + [SMALL_STATE(531)] = 10159, + [SMALL_STATE(532)] = 10230, + [SMALL_STATE(533)] = 10301, + [SMALL_STATE(534)] = 10372, + [SMALL_STATE(535)] = 10441, + [SMALL_STATE(536)] = 10504, + [SMALL_STATE(537)] = 10567, + [SMALL_STATE(538)] = 10636, + [SMALL_STATE(539)] = 10705, + [SMALL_STATE(540)] = 10776, + [SMALL_STATE(541)] = 10839, + [SMALL_STATE(542)] = 10908, + [SMALL_STATE(543)] = 10979, + [SMALL_STATE(544)] = 11046, + [SMALL_STATE(545)] = 11117, + [SMALL_STATE(546)] = 11188, + [SMALL_STATE(547)] = 11257, + [SMALL_STATE(548)] = 11320, + [SMALL_STATE(549)] = 11389, + [SMALL_STATE(550)] = 11460, + [SMALL_STATE(551)] = 11529, [SMALL_STATE(552)] = 11600, - [SMALL_STATE(553)] = 11666, - [SMALL_STATE(554)] = 11738, - [SMALL_STATE(555)] = 11808, + [SMALL_STATE(553)] = 11670, + [SMALL_STATE(554)] = 11742, + [SMALL_STATE(555)] = 11810, [SMALL_STATE(556)] = 11880, [SMALL_STATE(557)] = 11948, [SMALL_STATE(558)] = 12016, - [SMALL_STATE(559)] = 12084, - [SMALL_STATE(560)] = 12154, + [SMALL_STATE(559)] = 12082, + [SMALL_STATE(560)] = 12148, [SMALL_STATE(561)] = 12220, [SMALL_STATE(562)] = 12291, [SMALL_STATE(563)] = 12358, - [SMALL_STATE(564)] = 12429, + [SMALL_STATE(564)] = 12427, [SMALL_STATE(565)] = 12498, [SMALL_STATE(566)] = 12564, - [SMALL_STATE(567)] = 12630, - [SMALL_STATE(568)] = 12696, - [SMALL_STATE(569)] = 12762, - [SMALL_STATE(570)] = 12828, - [SMALL_STATE(571)] = 12894, - [SMALL_STATE(572)] = 12960, - [SMALL_STATE(573)] = 13028, - [SMALL_STATE(574)] = 13094, - [SMALL_STATE(575)] = 13164, + [SMALL_STATE(567)] = 12632, + [SMALL_STATE(568)] = 12698, + [SMALL_STATE(569)] = 12764, + [SMALL_STATE(570)] = 12830, + [SMALL_STATE(571)] = 12896, + [SMALL_STATE(572)] = 12966, + [SMALL_STATE(573)] = 13036, + [SMALL_STATE(574)] = 13102, + [SMALL_STATE(575)] = 13168, [SMALL_STATE(576)] = 13234, [SMALL_STATE(577)] = 13300, [SMALL_STATE(578)] = 13366, - [SMALL_STATE(579)] = 13429, - [SMALL_STATE(580)] = 13492, + [SMALL_STATE(579)] = 13433, + [SMALL_STATE(580)] = 13496, [SMALL_STATE(581)] = 13559, - [SMALL_STATE(582)] = 13625, + [SMALL_STATE(582)] = 13620, [SMALL_STATE(583)] = 13681, - [SMALL_STATE(584)] = 13741, - [SMALL_STATE(585)] = 13794, - [SMALL_STATE(586)] = 13849, - [SMALL_STATE(587)] = 13902, - [SMALL_STATE(588)] = 13965, - [SMALL_STATE(589)] = 14028, - [SMALL_STATE(590)] = 14089, - [SMALL_STATE(591)] = 14142, - [SMALL_STATE(592)] = 14203, - [SMALL_STATE(593)] = 14253, - [SMALL_STATE(594)] = 14303, - [SMALL_STATE(595)] = 14353, - [SMALL_STATE(596)] = 14403, - [SMALL_STATE(597)] = 14453, - [SMALL_STATE(598)] = 14503, - [SMALL_STATE(599)] = 14555, - [SMALL_STATE(600)] = 14605, - [SMALL_STATE(601)] = 14655, - [SMALL_STATE(602)] = 14705, - [SMALL_STATE(603)] = 14755, - [SMALL_STATE(604)] = 14809, - [SMALL_STATE(605)] = 14859, - [SMALL_STATE(606)] = 14909, - [SMALL_STATE(607)] = 14959, - [SMALL_STATE(608)] = 15009, - [SMALL_STATE(609)] = 15059, - [SMALL_STATE(610)] = 15109, - [SMALL_STATE(611)] = 15159, - [SMALL_STATE(612)] = 15209, - [SMALL_STATE(613)] = 15259, - [SMALL_STATE(614)] = 15309, - [SMALL_STATE(615)] = 15359, - [SMALL_STATE(616)] = 15409, - [SMALL_STATE(617)] = 15459, - [SMALL_STATE(618)] = 15509, - [SMALL_STATE(619)] = 15559, - [SMALL_STATE(620)] = 15609, - [SMALL_STATE(621)] = 15659, - [SMALL_STATE(622)] = 15709, - [SMALL_STATE(623)] = 15759, - [SMALL_STATE(624)] = 15809, - [SMALL_STATE(625)] = 15859, - [SMALL_STATE(626)] = 15909, - [SMALL_STATE(627)] = 15959, - [SMALL_STATE(628)] = 16009, - [SMALL_STATE(629)] = 16059, - [SMALL_STATE(630)] = 16109, - [SMALL_STATE(631)] = 16159, - [SMALL_STATE(632)] = 16209, - [SMALL_STATE(633)] = 16263, - [SMALL_STATE(634)] = 16313, - [SMALL_STATE(635)] = 16363, - [SMALL_STATE(636)] = 16413, - [SMALL_STATE(637)] = 16463, - [SMALL_STATE(638)] = 16513, - [SMALL_STATE(639)] = 16563, - [SMALL_STATE(640)] = 16613, - [SMALL_STATE(641)] = 16663, - [SMALL_STATE(642)] = 16713, - [SMALL_STATE(643)] = 16763, - [SMALL_STATE(644)] = 16813, - [SMALL_STATE(645)] = 16863, - [SMALL_STATE(646)] = 16913, - [SMALL_STATE(647)] = 16963, - [SMALL_STATE(648)] = 17013, - [SMALL_STATE(649)] = 17067, - [SMALL_STATE(650)] = 17117, - [SMALL_STATE(651)] = 17167, - [SMALL_STATE(652)] = 17217, - [SMALL_STATE(653)] = 17268, - [SMALL_STATE(654)] = 17361, - [SMALL_STATE(655)] = 17454, - [SMALL_STATE(656)] = 17547, - [SMALL_STATE(657)] = 17640, - [SMALL_STATE(658)] = 17703, - [SMALL_STATE(659)] = 17796, - [SMALL_STATE(660)] = 17847, - [SMALL_STATE(661)] = 17940, - [SMALL_STATE(662)] = 18033, - [SMALL_STATE(663)] = 18106, - [SMALL_STATE(664)] = 18199, - [SMALL_STATE(665)] = 18292, - [SMALL_STATE(666)] = 18343, - [SMALL_STATE(667)] = 18436, - [SMALL_STATE(668)] = 18529, - [SMALL_STATE(669)] = 18622, - [SMALL_STATE(670)] = 18685, - [SMALL_STATE(671)] = 18736, - [SMALL_STATE(672)] = 18821, - [SMALL_STATE(673)] = 18908, - [SMALL_STATE(674)] = 18977, - [SMALL_STATE(675)] = 19058, - [SMALL_STATE(676)] = 19141, - [SMALL_STATE(677)] = 19226, - [SMALL_STATE(678)] = 19293, - [SMALL_STATE(679)] = 19356, - [SMALL_STATE(680)] = 19433, - [SMALL_STATE(681)] = 19522, - [SMALL_STATE(682)] = 19579, - [SMALL_STATE(683)] = 19631, - [SMALL_STATE(684)] = 19681, - [SMALL_STATE(685)] = 19733, - [SMALL_STATE(686)] = 19783, - [SMALL_STATE(687)] = 19841, - [SMALL_STATE(688)] = 19889, - [SMALL_STATE(689)] = 19939, - [SMALL_STATE(690)] = 19987, - [SMALL_STATE(691)] = 20079, - [SMALL_STATE(692)] = 20137, - [SMALL_STATE(693)] = 20197, - [SMALL_STATE(694)] = 20251, - [SMALL_STATE(695)] = 20301, + [SMALL_STATE(584)] = 13736, + [SMALL_STATE(585)] = 13791, + [SMALL_STATE(586)] = 13843, + [SMALL_STATE(587)] = 13903, + [SMALL_STATE(588)] = 13969, + [SMALL_STATE(589)] = 14021, + [SMALL_STATE(590)] = 14073, + [SMALL_STATE(591)] = 14125, + [SMALL_STATE(592)] = 14181, + [SMALL_STATE(593)] = 14234, + [SMALL_STATE(594)] = 14295, + [SMALL_STATE(595)] = 14350, + [SMALL_STATE(596)] = 14413, + [SMALL_STATE(597)] = 14466, + [SMALL_STATE(598)] = 14519, + [SMALL_STATE(599)] = 14580, + [SMALL_STATE(600)] = 14643, + [SMALL_STATE(601)] = 14693, + [SMALL_STATE(602)] = 14743, + [SMALL_STATE(603)] = 14793, + [SMALL_STATE(604)] = 14845, + [SMALL_STATE(605)] = 14895, + [SMALL_STATE(606)] = 14945, + [SMALL_STATE(607)] = 14995, + [SMALL_STATE(608)] = 15045, + [SMALL_STATE(609)] = 15095, + [SMALL_STATE(610)] = 15145, + [SMALL_STATE(611)] = 15195, + [SMALL_STATE(612)] = 15245, + [SMALL_STATE(613)] = 15299, + [SMALL_STATE(614)] = 15349, + [SMALL_STATE(615)] = 15399, + [SMALL_STATE(616)] = 15449, + [SMALL_STATE(617)] = 15499, + [SMALL_STATE(618)] = 15549, + [SMALL_STATE(619)] = 15599, + [SMALL_STATE(620)] = 15649, + [SMALL_STATE(621)] = 15699, + [SMALL_STATE(622)] = 15749, + [SMALL_STATE(623)] = 15799, + [SMALL_STATE(624)] = 15849, + [SMALL_STATE(625)] = 15899, + [SMALL_STATE(626)] = 15949, + [SMALL_STATE(627)] = 15999, + [SMALL_STATE(628)] = 16049, + [SMALL_STATE(629)] = 16099, + [SMALL_STATE(630)] = 16149, + [SMALL_STATE(631)] = 16199, + [SMALL_STATE(632)] = 16249, + [SMALL_STATE(633)] = 16299, + [SMALL_STATE(634)] = 16349, + [SMALL_STATE(635)] = 16403, + [SMALL_STATE(636)] = 16453, + [SMALL_STATE(637)] = 16503, + [SMALL_STATE(638)] = 16553, + [SMALL_STATE(639)] = 16603, + [SMALL_STATE(640)] = 16653, + [SMALL_STATE(641)] = 16703, + [SMALL_STATE(642)] = 16753, + [SMALL_STATE(643)] = 16803, + [SMALL_STATE(644)] = 16853, + [SMALL_STATE(645)] = 16903, + [SMALL_STATE(646)] = 16953, + [SMALL_STATE(647)] = 17003, + [SMALL_STATE(648)] = 17053, + [SMALL_STATE(649)] = 17103, + [SMALL_STATE(650)] = 17153, + [SMALL_STATE(651)] = 17207, + [SMALL_STATE(652)] = 17257, + [SMALL_STATE(653)] = 17307, + [SMALL_STATE(654)] = 17357, + [SMALL_STATE(655)] = 17407, + [SMALL_STATE(656)] = 17457, + [SMALL_STATE(657)] = 17507, + [SMALL_STATE(658)] = 17557, + [SMALL_STATE(659)] = 17607, + [SMALL_STATE(660)] = 17657, + [SMALL_STATE(661)] = 17707, + [SMALL_STATE(662)] = 17757, + [SMALL_STATE(663)] = 17807, + [SMALL_STATE(664)] = 17857, + [SMALL_STATE(665)] = 17907, + [SMALL_STATE(666)] = 17984, + [SMALL_STATE(667)] = 18077, + [SMALL_STATE(668)] = 18144, + [SMALL_STATE(669)] = 18237, + [SMALL_STATE(670)] = 18300, + [SMALL_STATE(671)] = 18351, + [SMALL_STATE(672)] = 18402, + [SMALL_STATE(673)] = 18491, + [SMALL_STATE(674)] = 18584, + [SMALL_STATE(675)] = 18677, + [SMALL_STATE(676)] = 18770, + [SMALL_STATE(677)] = 18833, + [SMALL_STATE(678)] = 18926, + [SMALL_STATE(679)] = 18977, + [SMALL_STATE(680)] = 19070, + [SMALL_STATE(681)] = 19163, + [SMALL_STATE(682)] = 19226, + [SMALL_STATE(683)] = 19283, + [SMALL_STATE(684)] = 19334, + [SMALL_STATE(685)] = 19427, + [SMALL_STATE(686)] = 19520, + [SMALL_STATE(687)] = 19613, + [SMALL_STATE(688)] = 19698, + [SMALL_STATE(689)] = 19771, + [SMALL_STATE(690)] = 19858, + [SMALL_STATE(691)] = 19927, + [SMALL_STATE(692)] = 20008, + [SMALL_STATE(693)] = 20091, + [SMALL_STATE(694)] = 20176, + [SMALL_STATE(695)] = 20269, [SMALL_STATE(696)] = 20361, - [SMALL_STATE(697)] = 20452, - [SMALL_STATE(698)] = 20499, - [SMALL_STATE(699)] = 20590, - [SMALL_STATE(700)] = 20637, - [SMALL_STATE(701)] = 20684, - [SMALL_STATE(702)] = 20733, - [SMALL_STATE(703)] = 20784, - [SMALL_STATE(704)] = 20875, - [SMALL_STATE(705)] = 20946, - [SMALL_STATE(706)] = 21007, - [SMALL_STATE(707)] = 21054, - [SMALL_STATE(708)] = 21137, - [SMALL_STATE(709)] = 21222, - [SMALL_STATE(710)] = 21289, - [SMALL_STATE(711)] = 21368, - [SMALL_STATE(712)] = 21449, - [SMALL_STATE(713)] = 21532, - [SMALL_STATE(714)] = 21597, - [SMALL_STATE(715)] = 21658, - [SMALL_STATE(716)] = 21733, - [SMALL_STATE(717)] = 21820, - [SMALL_STATE(718)] = 21911, - [SMALL_STATE(719)] = 22002, - [SMALL_STATE(720)] = 22093, - [SMALL_STATE(721)] = 22140, - [SMALL_STATE(722)] = 22231, - [SMALL_STATE(723)] = 22322, - [SMALL_STATE(724)] = 22413, - [SMALL_STATE(725)] = 22464, - [SMALL_STATE(726)] = 22555, - [SMALL_STATE(727)] = 22626, - [SMALL_STATE(728)] = 22717, - [SMALL_STATE(729)] = 22764, - [SMALL_STATE(730)] = 22855, - [SMALL_STATE(731)] = 22906, - [SMALL_STATE(732)] = 22957, - [SMALL_STATE(733)] = 23004, - [SMALL_STATE(734)] = 23055, - [SMALL_STATE(735)] = 23102, - [SMALL_STATE(736)] = 23149, - [SMALL_STATE(737)] = 23196, - [SMALL_STATE(738)] = 23243, - [SMALL_STATE(739)] = 23290, - [SMALL_STATE(740)] = 23337, - [SMALL_STATE(741)] = 23384, - [SMALL_STATE(742)] = 23431, - [SMALL_STATE(743)] = 23478, - [SMALL_STATE(744)] = 23525, - [SMALL_STATE(745)] = 23572, - [SMALL_STATE(746)] = 23619, - [SMALL_STATE(747)] = 23666, - [SMALL_STATE(748)] = 23713, - [SMALL_STATE(749)] = 23760, - [SMALL_STATE(750)] = 23821, - [SMALL_STATE(751)] = 23868, - [SMALL_STATE(752)] = 23951, - [SMALL_STATE(753)] = 24002, - [SMALL_STATE(754)] = 24087, - [SMALL_STATE(755)] = 24134, - [SMALL_STATE(756)] = 24181, - [SMALL_STATE(757)] = 24248, - [SMALL_STATE(758)] = 24295, - [SMALL_STATE(759)] = 24342, - [SMALL_STATE(760)] = 24389, - [SMALL_STATE(761)] = 24468, - [SMALL_STATE(762)] = 24519, - [SMALL_STATE(763)] = 24610, - [SMALL_STATE(764)] = 24691, - [SMALL_STATE(765)] = 24738, - [SMALL_STATE(766)] = 24789, - [SMALL_STATE(767)] = 24836, - [SMALL_STATE(768)] = 24883, - [SMALL_STATE(769)] = 24934, - [SMALL_STATE(770)] = 25025, - [SMALL_STATE(771)] = 25072, - [SMALL_STATE(772)] = 25121, - [SMALL_STATE(773)] = 25168, - [SMALL_STATE(774)] = 25215, - [SMALL_STATE(775)] = 25266, - [SMALL_STATE(776)] = 25349, - [SMALL_STATE(777)] = 25414, - [SMALL_STATE(778)] = 25475, - [SMALL_STATE(779)] = 25550, - [SMALL_STATE(780)] = 25597, - [SMALL_STATE(781)] = 25684, - [SMALL_STATE(782)] = 25731, - [SMALL_STATE(783)] = 25782, - [SMALL_STATE(784)] = 25829, - [SMALL_STATE(785)] = 25876, - [SMALL_STATE(786)] = 25923, - [SMALL_STATE(787)] = 25970, - [SMALL_STATE(788)] = 26061, - [SMALL_STATE(789)] = 26108, - [SMALL_STATE(790)] = 26155, - [SMALL_STATE(791)] = 26202, - [SMALL_STATE(792)] = 26293, - [SMALL_STATE(793)] = 26384, - [SMALL_STATE(794)] = 26433, - [SMALL_STATE(795)] = 26480, - [SMALL_STATE(796)] = 26529, - [SMALL_STATE(797)] = 26620, - [SMALL_STATE(798)] = 26667, - [SMALL_STATE(799)] = 26718, - [SMALL_STATE(800)] = 26769, - [SMALL_STATE(801)] = 26816, - [SMALL_STATE(802)] = 26863, - [SMALL_STATE(803)] = 26954, - [SMALL_STATE(804)] = 27045, - [SMALL_STATE(805)] = 27096, - [SMALL_STATE(806)] = 27143, - [SMALL_STATE(807)] = 27234, - [SMALL_STATE(808)] = 27281, - [SMALL_STATE(809)] = 27372, - [SMALL_STATE(810)] = 27463, - [SMALL_STATE(811)] = 27510, - [SMALL_STATE(812)] = 27601, - [SMALL_STATE(813)] = 27653, - [SMALL_STATE(814)] = 27747, - [SMALL_STATE(815)] = 27841, - [SMALL_STATE(816)] = 27891, - [SMALL_STATE(817)] = 27941, - [SMALL_STATE(818)] = 27993, - [SMALL_STATE(819)] = 28087, - [SMALL_STATE(820)] = 28137, - [SMALL_STATE(821)] = 28189, - [SMALL_STATE(822)] = 28283, - [SMALL_STATE(823)] = 28377, - [SMALL_STATE(824)] = 28471, - [SMALL_STATE(825)] = 28561, - [SMALL_STATE(826)] = 28651, - [SMALL_STATE(827)] = 28743, - [SMALL_STATE(828)] = 28795, - [SMALL_STATE(829)] = 28882, - [SMALL_STATE(830)] = 28975, - [SMALL_STATE(831)] = 29068, - [SMALL_STATE(832)] = 29161, - [SMALL_STATE(833)] = 29254, - [SMALL_STATE(834)] = 29347, - [SMALL_STATE(835)] = 29440, - [SMALL_STATE(836)] = 29533, - [SMALL_STATE(837)] = 29626, - [SMALL_STATE(838)] = 29719, - [SMALL_STATE(839)] = 29812, - [SMALL_STATE(840)] = 29905, - [SMALL_STATE(841)] = 29998, - [SMALL_STATE(842)] = 30091, - [SMALL_STATE(843)] = 30184, - [SMALL_STATE(844)] = 30277, - [SMALL_STATE(845)] = 30370, - [SMALL_STATE(846)] = 30459, - [SMALL_STATE(847)] = 30552, - [SMALL_STATE(848)] = 30645, - [SMALL_STATE(849)] = 30734, - [SMALL_STATE(850)] = 30827, - [SMALL_STATE(851)] = 30920, - [SMALL_STATE(852)] = 30971, - [SMALL_STATE(853)] = 31022, - [SMALL_STATE(854)] = 31073, - [SMALL_STATE(855)] = 31124, - [SMALL_STATE(856)] = 31213, - [SMALL_STATE(857)] = 31300, - [SMALL_STATE(858)] = 31393, - [SMALL_STATE(859)] = 31486, - [SMALL_STATE(860)] = 31579, - [SMALL_STATE(861)] = 31672, - [SMALL_STATE(862)] = 31765, - [SMALL_STATE(863)] = 31858, - [SMALL_STATE(864)] = 31951, - [SMALL_STATE(865)] = 32044, - [SMALL_STATE(866)] = 32131, - [SMALL_STATE(867)] = 32224, - [SMALL_STATE(868)] = 32317, - [SMALL_STATE(869)] = 32404, - [SMALL_STATE(870)] = 32497, - [SMALL_STATE(871)] = 32584, - [SMALL_STATE(872)] = 32671, - [SMALL_STATE(873)] = 32764, - [SMALL_STATE(874)] = 32857, - [SMALL_STATE(875)] = 32950, - [SMALL_STATE(876)] = 33043, - [SMALL_STATE(877)] = 33136, - [SMALL_STATE(878)] = 33229, - [SMALL_STATE(879)] = 33322, - [SMALL_STATE(880)] = 33415, - [SMALL_STATE(881)] = 33508, - [SMALL_STATE(882)] = 33601, - [SMALL_STATE(883)] = 33694, - [SMALL_STATE(884)] = 33787, - [SMALL_STATE(885)] = 33880, - [SMALL_STATE(886)] = 33973, - [SMALL_STATE(887)] = 34066, - [SMALL_STATE(888)] = 34154, - [SMALL_STATE(889)] = 34200, - [SMALL_STATE(890)] = 34288, - [SMALL_STATE(891)] = 34376, - [SMALL_STATE(892)] = 34464, - [SMALL_STATE(893)] = 34552, - [SMALL_STATE(894)] = 34640, - [SMALL_STATE(895)] = 34728, - [SMALL_STATE(896)] = 34796, - [SMALL_STATE(897)] = 34854, - [SMALL_STATE(898)] = 34934, - [SMALL_STATE(899)] = 35016, - [SMALL_STATE(900)] = 35080, - [SMALL_STATE(901)] = 35156, - [SMALL_STATE(902)] = 35234, - [SMALL_STATE(903)] = 35314, - [SMALL_STATE(904)] = 35376, - [SMALL_STATE(905)] = 35434, - [SMALL_STATE(906)] = 35506, - [SMALL_STATE(907)] = 35590, - [SMALL_STATE(908)] = 35678, - [SMALL_STATE(909)] = 35766, - [SMALL_STATE(910)] = 35854, - [SMALL_STATE(911)] = 35942, - [SMALL_STATE(912)] = 36030, - [SMALL_STATE(913)] = 36118, - [SMALL_STATE(914)] = 36206, - [SMALL_STATE(915)] = 36296, - [SMALL_STATE(916)] = 36384, - [SMALL_STATE(917)] = 36472, - [SMALL_STATE(918)] = 36518, - [SMALL_STATE(919)] = 36606, - [SMALL_STATE(920)] = 36694, - [SMALL_STATE(921)] = 36782, - [SMALL_STATE(922)] = 36870, - [SMALL_STATE(923)] = 36916, - [SMALL_STATE(924)] = 36984, - [SMALL_STATE(925)] = 37042, - [SMALL_STATE(926)] = 37122, - [SMALL_STATE(927)] = 37204, - [SMALL_STATE(928)] = 37268, - [SMALL_STATE(929)] = 37344, - [SMALL_STATE(930)] = 37422, - [SMALL_STATE(931)] = 37502, - [SMALL_STATE(932)] = 37564, - [SMALL_STATE(933)] = 37622, - [SMALL_STATE(934)] = 37694, - [SMALL_STATE(935)] = 37778, - [SMALL_STATE(936)] = 37866, - [SMALL_STATE(937)] = 37954, - [SMALL_STATE(938)] = 38042, - [SMALL_STATE(939)] = 38130, - [SMALL_STATE(940)] = 38218, - [SMALL_STATE(941)] = 38306, - [SMALL_STATE(942)] = 38394, - [SMALL_STATE(943)] = 38482, - [SMALL_STATE(944)] = 38570, - [SMALL_STATE(945)] = 38658, - [SMALL_STATE(946)] = 38746, - [SMALL_STATE(947)] = 38834, - [SMALL_STATE(948)] = 38902, - [SMALL_STATE(949)] = 38960, - [SMALL_STATE(950)] = 39040, - [SMALL_STATE(951)] = 39122, - [SMALL_STATE(952)] = 39186, - [SMALL_STATE(953)] = 39262, - [SMALL_STATE(954)] = 39340, - [SMALL_STATE(955)] = 39420, - [SMALL_STATE(956)] = 39482, - [SMALL_STATE(957)] = 39540, - [SMALL_STATE(958)] = 39612, - [SMALL_STATE(959)] = 39696, - [SMALL_STATE(960)] = 39784, - [SMALL_STATE(961)] = 39872, - [SMALL_STATE(962)] = 39960, - [SMALL_STATE(963)] = 40048, - [SMALL_STATE(964)] = 40136, - [SMALL_STATE(965)] = 40224, - [SMALL_STATE(966)] = 40274, - [SMALL_STATE(967)] = 40362, - [SMALL_STATE(968)] = 40450, - [SMALL_STATE(969)] = 40537, - [SMALL_STATE(970)] = 40616, - [SMALL_STATE(971)] = 40703, - [SMALL_STATE(972)] = 40790, - [SMALL_STATE(973)] = 40877, - [SMALL_STATE(974)] = 40964, - [SMALL_STATE(975)] = 41051, - [SMALL_STATE(976)] = 41138, - [SMALL_STATE(977)] = 41225, - [SMALL_STATE(978)] = 41312, - [SMALL_STATE(979)] = 41401, - [SMALL_STATE(980)] = 41485, - [SMALL_STATE(981)] = 41569, - [SMALL_STATE(982)] = 41640, - [SMALL_STATE(983)] = 41712, - [SMALL_STATE(984)] = 41784, - [SMALL_STATE(985)] = 41856, - [SMALL_STATE(986)] = 41928, - [SMALL_STATE(987)] = 41986, - [SMALL_STATE(988)] = 42044, - [SMALL_STATE(989)] = 42116, - [SMALL_STATE(990)] = 42182, - [SMALL_STATE(991)] = 42254, - [SMALL_STATE(992)] = 42326, - [SMALL_STATE(993)] = 42379, - [SMALL_STATE(994)] = 42438, - [SMALL_STATE(995)] = 42495, - [SMALL_STATE(996)] = 42554, - [SMALL_STATE(997)] = 42611, - [SMALL_STATE(998)] = 42670, - [SMALL_STATE(999)] = 42727, - [SMALL_STATE(1000)] = 42786, - [SMALL_STATE(1001)] = 42843, - [SMALL_STATE(1002)] = 42900, - [SMALL_STATE(1003)] = 42959, - [SMALL_STATE(1004)] = 43018, - [SMALL_STATE(1005)] = 43075, - [SMALL_STATE(1006)] = 43127, - [SMALL_STATE(1007)] = 43179, - [SMALL_STATE(1008)] = 43231, - [SMALL_STATE(1009)] = 43283, - [SMALL_STATE(1010)] = 43337, - [SMALL_STATE(1011)] = 43389, - [SMALL_STATE(1012)] = 43441, - [SMALL_STATE(1013)] = 43492, - [SMALL_STATE(1014)] = 43545, - [SMALL_STATE(1015)] = 43606, - [SMALL_STATE(1016)] = 43657, - [SMALL_STATE(1017)] = 43706, - [SMALL_STATE(1018)] = 43752, - [SMALL_STATE(1019)] = 43798, - [SMALL_STATE(1020)] = 43854, - [SMALL_STATE(1021)] = 43900, - [SMALL_STATE(1022)] = 43946, - [SMALL_STATE(1023)] = 43994, - [SMALL_STATE(1024)] = 44038, - [SMALL_STATE(1025)] = 44086, - [SMALL_STATE(1026)] = 44142, - [SMALL_STATE(1027)] = 44186, - [SMALL_STATE(1028)] = 44230, - [SMALL_STATE(1029)] = 44269, - [SMALL_STATE(1030)] = 44308, - [SMALL_STATE(1031)] = 44347, - [SMALL_STATE(1032)] = 44386, - [SMALL_STATE(1033)] = 44425, - [SMALL_STATE(1034)] = 44464, - [SMALL_STATE(1035)] = 44499, - [SMALL_STATE(1036)] = 44540, - [SMALL_STATE(1037)] = 44593, - [SMALL_STATE(1038)] = 44621, - [SMALL_STATE(1039)] = 44671, - [SMALL_STATE(1040)] = 44699, - [SMALL_STATE(1041)] = 44727, - [SMALL_STATE(1042)] = 44761, - [SMALL_STATE(1043)] = 44791, - [SMALL_STATE(1044)] = 44819, - [SMALL_STATE(1045)] = 44847, - [SMALL_STATE(1046)] = 44875, - [SMALL_STATE(1047)] = 44903, - [SMALL_STATE(1048)] = 44933, - [SMALL_STATE(1049)] = 44961, - [SMALL_STATE(1050)] = 44989, - [SMALL_STATE(1051)] = 45017, - [SMALL_STATE(1052)] = 45045, - [SMALL_STATE(1053)] = 45073, - [SMALL_STATE(1054)] = 45101, - [SMALL_STATE(1055)] = 45129, - [SMALL_STATE(1056)] = 45157, - [SMALL_STATE(1057)] = 45185, - [SMALL_STATE(1058)] = 45213, - [SMALL_STATE(1059)] = 45241, - [SMALL_STATE(1060)] = 45269, - [SMALL_STATE(1061)] = 45297, - [SMALL_STATE(1062)] = 45325, - [SMALL_STATE(1063)] = 45353, - [SMALL_STATE(1064)] = 45381, - [SMALL_STATE(1065)] = 45409, - [SMALL_STATE(1066)] = 45437, - [SMALL_STATE(1067)] = 45465, - [SMALL_STATE(1068)] = 45515, - [SMALL_STATE(1069)] = 45543, - [SMALL_STATE(1070)] = 45571, - [SMALL_STATE(1071)] = 45599, - [SMALL_STATE(1072)] = 45628, - [SMALL_STATE(1073)] = 45671, - [SMALL_STATE(1074)] = 45698, - [SMALL_STATE(1075)] = 45737, - [SMALL_STATE(1076)] = 45764, - [SMALL_STATE(1077)] = 45807, - [SMALL_STATE(1078)] = 45852, - [SMALL_STATE(1079)] = 45879, - [SMALL_STATE(1080)] = 45922, - [SMALL_STATE(1081)] = 45949, - [SMALL_STATE(1082)] = 45976, - [SMALL_STATE(1083)] = 46017, - [SMALL_STATE(1084)] = 46058, - [SMALL_STATE(1085)] = 46101, - [SMALL_STATE(1086)] = 46128, - [SMALL_STATE(1087)] = 46164, - [SMALL_STATE(1088)] = 46200, - [SMALL_STATE(1089)] = 46236, - [SMALL_STATE(1090)] = 46278, - [SMALL_STATE(1091)] = 46314, - [SMALL_STATE(1092)] = 46350, - [SMALL_STATE(1093)] = 46386, - [SMALL_STATE(1094)] = 46422, - [SMALL_STATE(1095)] = 46448, - [SMALL_STATE(1096)] = 46484, - [SMALL_STATE(1097)] = 46520, - [SMALL_STATE(1098)] = 46546, - [SMALL_STATE(1099)] = 46582, - [SMALL_STATE(1100)] = 46618, - [SMALL_STATE(1101)] = 46644, - [SMALL_STATE(1102)] = 46684, - [SMALL_STATE(1103)] = 46720, - [SMALL_STATE(1104)] = 46756, - [SMALL_STATE(1105)] = 46792, - [SMALL_STATE(1106)] = 46834, - [SMALL_STATE(1107)] = 46860, - [SMALL_STATE(1108)] = 46896, - [SMALL_STATE(1109)] = 46932, - [SMALL_STATE(1110)] = 46968, - [SMALL_STATE(1111)] = 47008, - [SMALL_STATE(1112)] = 47044, - [SMALL_STATE(1113)] = 47080, - [SMALL_STATE(1114)] = 47116, - [SMALL_STATE(1115)] = 47152, - [SMALL_STATE(1116)] = 47188, - [SMALL_STATE(1117)] = 47224, - [SMALL_STATE(1118)] = 47260, - [SMALL_STATE(1119)] = 47286, - [SMALL_STATE(1120)] = 47312, - [SMALL_STATE(1121)] = 47345, - [SMALL_STATE(1122)] = 47378, - [SMALL_STATE(1123)] = 47411, - [SMALL_STATE(1124)] = 47444, - [SMALL_STATE(1125)] = 47477, - [SMALL_STATE(1126)] = 47510, - [SMALL_STATE(1127)] = 47543, - [SMALL_STATE(1128)] = 47576, - [SMALL_STATE(1129)] = 47609, - [SMALL_STATE(1130)] = 47642, - [SMALL_STATE(1131)] = 47675, - [SMALL_STATE(1132)] = 47708, - [SMALL_STATE(1133)] = 47741, - [SMALL_STATE(1134)] = 47774, - [SMALL_STATE(1135)] = 47807, - [SMALL_STATE(1136)] = 47840, - [SMALL_STATE(1137)] = 47873, - [SMALL_STATE(1138)] = 47906, - [SMALL_STATE(1139)] = 47928, - [SMALL_STATE(1140)] = 47950, - [SMALL_STATE(1141)] = 47972, - [SMALL_STATE(1142)] = 47994, - [SMALL_STATE(1143)] = 48016, - [SMALL_STATE(1144)] = 48038, - [SMALL_STATE(1145)] = 48075, - [SMALL_STATE(1146)] = 48111, - [SMALL_STATE(1147)] = 48141, - [SMALL_STATE(1148)] = 48177, - [SMALL_STATE(1149)] = 48207, - [SMALL_STATE(1150)] = 48237, - [SMALL_STATE(1151)] = 48267, - [SMALL_STATE(1152)] = 48303, - [SMALL_STATE(1153)] = 48339, - [SMALL_STATE(1154)] = 48369, - [SMALL_STATE(1155)] = 48399, - [SMALL_STATE(1156)] = 48429, - [SMALL_STATE(1157)] = 48459, - [SMALL_STATE(1158)] = 48492, - [SMALL_STATE(1159)] = 48525, - [SMALL_STATE(1160)] = 48558, - [SMALL_STATE(1161)] = 48585, - [SMALL_STATE(1162)] = 48618, - [SMALL_STATE(1163)] = 48651, - [SMALL_STATE(1164)] = 48684, - [SMALL_STATE(1165)] = 48717, - [SMALL_STATE(1166)] = 48750, - [SMALL_STATE(1167)] = 48780, - [SMALL_STATE(1168)] = 48810, - [SMALL_STATE(1169)] = 48836, - [SMALL_STATE(1170)] = 48866, - [SMALL_STATE(1171)] = 48892, - [SMALL_STATE(1172)] = 48920, - [SMALL_STATE(1173)] = 48948, - [SMALL_STATE(1174)] = 48978, - [SMALL_STATE(1175)] = 49008, - [SMALL_STATE(1176)] = 49038, - [SMALL_STATE(1177)] = 49068, - [SMALL_STATE(1178)] = 49098, - [SMALL_STATE(1179)] = 49128, - [SMALL_STATE(1180)] = 49158, - [SMALL_STATE(1181)] = 49188, - [SMALL_STATE(1182)] = 49218, - [SMALL_STATE(1183)] = 49248, - [SMALL_STATE(1184)] = 49278, - [SMALL_STATE(1185)] = 49308, - [SMALL_STATE(1186)] = 49338, - [SMALL_STATE(1187)] = 49368, - [SMALL_STATE(1188)] = 49398, - [SMALL_STATE(1189)] = 49428, - [SMALL_STATE(1190)] = 49458, - [SMALL_STATE(1191)] = 49488, - [SMALL_STATE(1192)] = 49513, - [SMALL_STATE(1193)] = 49538, - [SMALL_STATE(1194)] = 49565, - [SMALL_STATE(1195)] = 49590, - [SMALL_STATE(1196)] = 49615, - [SMALL_STATE(1197)] = 49640, - [SMALL_STATE(1198)] = 49665, - [SMALL_STATE(1199)] = 49692, - [SMALL_STATE(1200)] = 49717, - [SMALL_STATE(1201)] = 49742, - [SMALL_STATE(1202)] = 49767, - [SMALL_STATE(1203)] = 49789, - [SMALL_STATE(1204)] = 49811, - [SMALL_STATE(1205)] = 49829, - [SMALL_STATE(1206)] = 49851, - [SMALL_STATE(1207)] = 49865, - [SMALL_STATE(1208)] = 49879, - [SMALL_STATE(1209)] = 49899, - [SMALL_STATE(1210)] = 49921, - [SMALL_STATE(1211)] = 49945, - [SMALL_STATE(1212)] = 49969, - [SMALL_STATE(1213)] = 49993, - [SMALL_STATE(1214)] = 50015, - [SMALL_STATE(1215)] = 50039, - [SMALL_STATE(1216)] = 50059, - [SMALL_STATE(1217)] = 50079, - [SMALL_STATE(1218)] = 50103, - [SMALL_STATE(1219)] = 50117, - [SMALL_STATE(1220)] = 50131, - [SMALL_STATE(1221)] = 50155, - [SMALL_STATE(1222)] = 50179, - [SMALL_STATE(1223)] = 50193, - [SMALL_STATE(1224)] = 50215, - [SMALL_STATE(1225)] = 50233, - [SMALL_STATE(1226)] = 50248, - [SMALL_STATE(1227)] = 50265, - [SMALL_STATE(1228)] = 50278, - [SMALL_STATE(1229)] = 50299, - [SMALL_STATE(1230)] = 50318, - [SMALL_STATE(1231)] = 50333, - [SMALL_STATE(1232)] = 50354, - [SMALL_STATE(1233)] = 50375, - [SMALL_STATE(1234)] = 50394, - [SMALL_STATE(1235)] = 50407, - [SMALL_STATE(1236)] = 50420, - [SMALL_STATE(1237)] = 50439, - [SMALL_STATE(1238)] = 50452, - [SMALL_STATE(1239)] = 50465, - [SMALL_STATE(1240)] = 50484, - [SMALL_STATE(1241)] = 50503, - [SMALL_STATE(1242)] = 50516, - [SMALL_STATE(1243)] = 50535, - [SMALL_STATE(1244)] = 50554, - [SMALL_STATE(1245)] = 50573, - [SMALL_STATE(1246)] = 50594, - [SMALL_STATE(1247)] = 50613, - [SMALL_STATE(1248)] = 50626, - [SMALL_STATE(1249)] = 50639, - [SMALL_STATE(1250)] = 50652, - [SMALL_STATE(1251)] = 50671, - [SMALL_STATE(1252)] = 50684, - [SMALL_STATE(1253)] = 50703, - [SMALL_STATE(1254)] = 50717, - [SMALL_STATE(1255)] = 50731, - [SMALL_STATE(1256)] = 50745, - [SMALL_STATE(1257)] = 50759, - [SMALL_STATE(1258)] = 50773, - [SMALL_STATE(1259)] = 50787, - [SMALL_STATE(1260)] = 50801, - [SMALL_STATE(1261)] = 50821, - [SMALL_STATE(1262)] = 50841, - [SMALL_STATE(1263)] = 50861, - [SMALL_STATE(1264)] = 50875, - [SMALL_STATE(1265)] = 50889, - [SMALL_STATE(1266)] = 50903, - [SMALL_STATE(1267)] = 50917, - [SMALL_STATE(1268)] = 50937, - [SMALL_STATE(1269)] = 50957, - [SMALL_STATE(1270)] = 50971, - [SMALL_STATE(1271)] = 50985, - [SMALL_STATE(1272)] = 51005, - [SMALL_STATE(1273)] = 51019, - [SMALL_STATE(1274)] = 51039, - [SMALL_STATE(1275)] = 51051, - [SMALL_STATE(1276)] = 51065, - [SMALL_STATE(1277)] = 51079, - [SMALL_STATE(1278)] = 51097, - [SMALL_STATE(1279)] = 51111, - [SMALL_STATE(1280)] = 51131, - [SMALL_STATE(1281)] = 51143, - [SMALL_STATE(1282)] = 51157, - [SMALL_STATE(1283)] = 51171, - [SMALL_STATE(1284)] = 51187, - [SMALL_STATE(1285)] = 51207, - [SMALL_STATE(1286)] = 51223, - [SMALL_STATE(1287)] = 51243, - [SMALL_STATE(1288)] = 51257, - [SMALL_STATE(1289)] = 51277, - [SMALL_STATE(1290)] = 51297, - [SMALL_STATE(1291)] = 51311, - [SMALL_STATE(1292)] = 51325, - [SMALL_STATE(1293)] = 51339, - [SMALL_STATE(1294)] = 51359, - [SMALL_STATE(1295)] = 51373, - [SMALL_STATE(1296)] = 51393, - [SMALL_STATE(1297)] = 51413, - [SMALL_STATE(1298)] = 51429, - [SMALL_STATE(1299)] = 51449, - [SMALL_STATE(1300)] = 51463, - [SMALL_STATE(1301)] = 51477, - [SMALL_STATE(1302)] = 51491, - [SMALL_STATE(1303)] = 51505, - [SMALL_STATE(1304)] = 51525, - [SMALL_STATE(1305)] = 51541, - [SMALL_STATE(1306)] = 51555, - [SMALL_STATE(1307)] = 51575, - [SMALL_STATE(1308)] = 51589, - [SMALL_STATE(1309)] = 51603, - [SMALL_STATE(1310)] = 51617, - [SMALL_STATE(1311)] = 51637, - [SMALL_STATE(1312)] = 51653, - [SMALL_STATE(1313)] = 51667, - [SMALL_STATE(1314)] = 51687, - [SMALL_STATE(1315)] = 51701, - [SMALL_STATE(1316)] = 51721, - [SMALL_STATE(1317)] = 51733, - [SMALL_STATE(1318)] = 51747, - [SMALL_STATE(1319)] = 51767, - [SMALL_STATE(1320)] = 51781, - [SMALL_STATE(1321)] = 51800, - [SMALL_STATE(1322)] = 51815, - [SMALL_STATE(1323)] = 51832, - [SMALL_STATE(1324)] = 51849, - [SMALL_STATE(1325)] = 51862, - [SMALL_STATE(1326)] = 51877, - [SMALL_STATE(1327)] = 51894, - [SMALL_STATE(1328)] = 51911, - [SMALL_STATE(1329)] = 51928, - [SMALL_STATE(1330)] = 51945, - [SMALL_STATE(1331)] = 51962, - [SMALL_STATE(1332)] = 51979, - [SMALL_STATE(1333)] = 51996, - [SMALL_STATE(1334)] = 52013, - [SMALL_STATE(1335)] = 52030, - [SMALL_STATE(1336)] = 52045, - [SMALL_STATE(1337)] = 52062, - [SMALL_STATE(1338)] = 52077, - [SMALL_STATE(1339)] = 52092, - [SMALL_STATE(1340)] = 52109, - [SMALL_STATE(1341)] = 52120, - [SMALL_STATE(1342)] = 52135, - [SMALL_STATE(1343)] = 52146, - [SMALL_STATE(1344)] = 52163, - [SMALL_STATE(1345)] = 52178, - [SMALL_STATE(1346)] = 52195, - [SMALL_STATE(1347)] = 52206, - [SMALL_STATE(1348)] = 52223, - [SMALL_STATE(1349)] = 52242, - [SMALL_STATE(1350)] = 52259, - [SMALL_STATE(1351)] = 52276, - [SMALL_STATE(1352)] = 52293, - [SMALL_STATE(1353)] = 52310, - [SMALL_STATE(1354)] = 52327, - [SMALL_STATE(1355)] = 52342, - [SMALL_STATE(1356)] = 52361, - [SMALL_STATE(1357)] = 52380, - [SMALL_STATE(1358)] = 52397, - [SMALL_STATE(1359)] = 52412, - [SMALL_STATE(1360)] = 52427, - [SMALL_STATE(1361)] = 52444, - [SMALL_STATE(1362)] = 52461, - [SMALL_STATE(1363)] = 52478, - [SMALL_STATE(1364)] = 52495, - [SMALL_STATE(1365)] = 52512, - [SMALL_STATE(1366)] = 52527, - [SMALL_STATE(1367)] = 52538, - [SMALL_STATE(1368)] = 52555, - [SMALL_STATE(1369)] = 52572, - [SMALL_STATE(1370)] = 52589, - [SMALL_STATE(1371)] = 52606, - [SMALL_STATE(1372)] = 52621, - [SMALL_STATE(1373)] = 52638, - [SMALL_STATE(1374)] = 52655, - [SMALL_STATE(1375)] = 52672, - [SMALL_STATE(1376)] = 52683, - [SMALL_STATE(1377)] = 52700, - [SMALL_STATE(1378)] = 52717, - [SMALL_STATE(1379)] = 52734, - [SMALL_STATE(1380)] = 52749, - [SMALL_STATE(1381)] = 52764, - [SMALL_STATE(1382)] = 52781, - [SMALL_STATE(1383)] = 52798, - [SMALL_STATE(1384)] = 52815, - [SMALL_STATE(1385)] = 52834, - [SMALL_STATE(1386)] = 52849, - [SMALL_STATE(1387)] = 52866, - [SMALL_STATE(1388)] = 52883, - [SMALL_STATE(1389)] = 52900, - [SMALL_STATE(1390)] = 52911, - [SMALL_STATE(1391)] = 52926, - [SMALL_STATE(1392)] = 52941, - [SMALL_STATE(1393)] = 52958, - [SMALL_STATE(1394)] = 52975, - [SMALL_STATE(1395)] = 52990, - [SMALL_STATE(1396)] = 53007, - [SMALL_STATE(1397)] = 53024, - [SMALL_STATE(1398)] = 53037, - [SMALL_STATE(1399)] = 53056, - [SMALL_STATE(1400)] = 53070, - [SMALL_STATE(1401)] = 53084, - [SMALL_STATE(1402)] = 53098, - [SMALL_STATE(1403)] = 53112, - [SMALL_STATE(1404)] = 53126, - [SMALL_STATE(1405)] = 53138, - [SMALL_STATE(1406)] = 53152, - [SMALL_STATE(1407)] = 53166, - [SMALL_STATE(1408)] = 53180, - [SMALL_STATE(1409)] = 53190, - [SMALL_STATE(1410)] = 53204, - [SMALL_STATE(1411)] = 53216, - [SMALL_STATE(1412)] = 53230, - [SMALL_STATE(1413)] = 53244, - [SMALL_STATE(1414)] = 53258, - [SMALL_STATE(1415)] = 53272, - [SMALL_STATE(1416)] = 53282, - [SMALL_STATE(1417)] = 53296, - [SMALL_STATE(1418)] = 53310, - [SMALL_STATE(1419)] = 53324, - [SMALL_STATE(1420)] = 53338, - [SMALL_STATE(1421)] = 53352, - [SMALL_STATE(1422)] = 53366, - [SMALL_STATE(1423)] = 53380, - [SMALL_STATE(1424)] = 53392, - [SMALL_STATE(1425)] = 53406, - [SMALL_STATE(1426)] = 53416, - [SMALL_STATE(1427)] = 53430, - [SMALL_STATE(1428)] = 53444, - [SMALL_STATE(1429)] = 53458, - [SMALL_STATE(1430)] = 53472, - [SMALL_STATE(1431)] = 53486, - [SMALL_STATE(1432)] = 53498, - [SMALL_STATE(1433)] = 53512, - [SMALL_STATE(1434)] = 53526, - [SMALL_STATE(1435)] = 53538, - [SMALL_STATE(1436)] = 53552, - [SMALL_STATE(1437)] = 53566, - [SMALL_STATE(1438)] = 53580, - [SMALL_STATE(1439)] = 53594, - [SMALL_STATE(1440)] = 53604, - [SMALL_STATE(1441)] = 53618, - [SMALL_STATE(1442)] = 53632, - [SMALL_STATE(1443)] = 53644, - [SMALL_STATE(1444)] = 53658, - [SMALL_STATE(1445)] = 53672, - [SMALL_STATE(1446)] = 53686, - [SMALL_STATE(1447)] = 53698, - [SMALL_STATE(1448)] = 53708, - [SMALL_STATE(1449)] = 53722, - [SMALL_STATE(1450)] = 53736, - [SMALL_STATE(1451)] = 53750, - [SMALL_STATE(1452)] = 53764, - [SMALL_STATE(1453)] = 53778, - [SMALL_STATE(1454)] = 53788, - [SMALL_STATE(1455)] = 53802, - [SMALL_STATE(1456)] = 53816, - [SMALL_STATE(1457)] = 53828, - [SMALL_STATE(1458)] = 53842, - [SMALL_STATE(1459)] = 53856, - [SMALL_STATE(1460)] = 53870, - [SMALL_STATE(1461)] = 53884, - [SMALL_STATE(1462)] = 53898, - [SMALL_STATE(1463)] = 53912, - [SMALL_STATE(1464)] = 53926, - [SMALL_STATE(1465)] = 53940, - [SMALL_STATE(1466)] = 53954, - [SMALL_STATE(1467)] = 53968, - [SMALL_STATE(1468)] = 53982, - [SMALL_STATE(1469)] = 53994, - [SMALL_STATE(1470)] = 54006, - [SMALL_STATE(1471)] = 54020, - [SMALL_STATE(1472)] = 54034, - [SMALL_STATE(1473)] = 54046, - [SMALL_STATE(1474)] = 54060, - [SMALL_STATE(1475)] = 54072, - [SMALL_STATE(1476)] = 54086, - [SMALL_STATE(1477)] = 54100, - [SMALL_STATE(1478)] = 54114, - [SMALL_STATE(1479)] = 54126, - [SMALL_STATE(1480)] = 54140, - [SMALL_STATE(1481)] = 54154, - [SMALL_STATE(1482)] = 54166, - [SMALL_STATE(1483)] = 54176, - [SMALL_STATE(1484)] = 54190, - [SMALL_STATE(1485)] = 54204, - [SMALL_STATE(1486)] = 54218, - [SMALL_STATE(1487)] = 54232, - [SMALL_STATE(1488)] = 54246, - [SMALL_STATE(1489)] = 54256, - [SMALL_STATE(1490)] = 54270, - [SMALL_STATE(1491)] = 54284, - [SMALL_STATE(1492)] = 54298, - [SMALL_STATE(1493)] = 54312, - [SMALL_STATE(1494)] = 54324, - [SMALL_STATE(1495)] = 54338, - [SMALL_STATE(1496)] = 54350, - [SMALL_STATE(1497)] = 54364, - [SMALL_STATE(1498)] = 54374, - [SMALL_STATE(1499)] = 54388, - [SMALL_STATE(1500)] = 54402, - [SMALL_STATE(1501)] = 54411, - [SMALL_STATE(1502)] = 54422, - [SMALL_STATE(1503)] = 54433, - [SMALL_STATE(1504)] = 54444, - [SMALL_STATE(1505)] = 54455, - [SMALL_STATE(1506)] = 54464, - [SMALL_STATE(1507)] = 54475, - [SMALL_STATE(1508)] = 54486, - [SMALL_STATE(1509)] = 54497, - [SMALL_STATE(1510)] = 54508, - [SMALL_STATE(1511)] = 54519, - [SMALL_STATE(1512)] = 54530, - [SMALL_STATE(1513)] = 54541, - [SMALL_STATE(1514)] = 54550, - [SMALL_STATE(1515)] = 54559, - [SMALL_STATE(1516)] = 54570, - [SMALL_STATE(1517)] = 54579, - [SMALL_STATE(1518)] = 54590, - [SMALL_STATE(1519)] = 54601, - [SMALL_STATE(1520)] = 54612, - [SMALL_STATE(1521)] = 54623, - [SMALL_STATE(1522)] = 54632, - [SMALL_STATE(1523)] = 54641, - [SMALL_STATE(1524)] = 54652, - [SMALL_STATE(1525)] = 54663, - [SMALL_STATE(1526)] = 54674, - [SMALL_STATE(1527)] = 54683, - [SMALL_STATE(1528)] = 54694, - [SMALL_STATE(1529)] = 54705, - [SMALL_STATE(1530)] = 54716, - [SMALL_STATE(1531)] = 54727, - [SMALL_STATE(1532)] = 54738, - [SMALL_STATE(1533)] = 54749, - [SMALL_STATE(1534)] = 54760, - [SMALL_STATE(1535)] = 54771, - [SMALL_STATE(1536)] = 54782, - [SMALL_STATE(1537)] = 54793, - [SMALL_STATE(1538)] = 54804, - [SMALL_STATE(1539)] = 54813, - [SMALL_STATE(1540)] = 54824, - [SMALL_STATE(1541)] = 54835, - [SMALL_STATE(1542)] = 54844, - [SMALL_STATE(1543)] = 54855, - [SMALL_STATE(1544)] = 54864, - [SMALL_STATE(1545)] = 54875, - [SMALL_STATE(1546)] = 54886, - [SMALL_STATE(1547)] = 54897, - [SMALL_STATE(1548)] = 54908, - [SMALL_STATE(1549)] = 54917, - [SMALL_STATE(1550)] = 54928, - [SMALL_STATE(1551)] = 54939, - [SMALL_STATE(1552)] = 54950, - [SMALL_STATE(1553)] = 54961, - [SMALL_STATE(1554)] = 54972, - [SMALL_STATE(1555)] = 54983, - [SMALL_STATE(1556)] = 54994, - [SMALL_STATE(1557)] = 55005, - [SMALL_STATE(1558)] = 55016, - [SMALL_STATE(1559)] = 55027, - [SMALL_STATE(1560)] = 55038, - [SMALL_STATE(1561)] = 55049, - [SMALL_STATE(1562)] = 55060, - [SMALL_STATE(1563)] = 55071, - [SMALL_STATE(1564)] = 55082, - [SMALL_STATE(1565)] = 55093, - [SMALL_STATE(1566)] = 55104, - [SMALL_STATE(1567)] = 55115, - [SMALL_STATE(1568)] = 55126, - [SMALL_STATE(1569)] = 55137, - [SMALL_STATE(1570)] = 55148, - [SMALL_STATE(1571)] = 55159, - [SMALL_STATE(1572)] = 55170, - [SMALL_STATE(1573)] = 55181, - [SMALL_STATE(1574)] = 55192, - [SMALL_STATE(1575)] = 55203, - [SMALL_STATE(1576)] = 55214, - [SMALL_STATE(1577)] = 55225, - [SMALL_STATE(1578)] = 55236, - [SMALL_STATE(1579)] = 55247, - [SMALL_STATE(1580)] = 55258, - [SMALL_STATE(1581)] = 55269, - [SMALL_STATE(1582)] = 55280, - [SMALL_STATE(1583)] = 55291, - [SMALL_STATE(1584)] = 55302, - [SMALL_STATE(1585)] = 55313, - [SMALL_STATE(1586)] = 55324, - [SMALL_STATE(1587)] = 55335, - [SMALL_STATE(1588)] = 55346, - [SMALL_STATE(1589)] = 55357, - [SMALL_STATE(1590)] = 55368, - [SMALL_STATE(1591)] = 55379, - [SMALL_STATE(1592)] = 55388, - [SMALL_STATE(1593)] = 55397, - [SMALL_STATE(1594)] = 55408, - [SMALL_STATE(1595)] = 55419, - [SMALL_STATE(1596)] = 55430, - [SMALL_STATE(1597)] = 55441, - [SMALL_STATE(1598)] = 55452, - [SMALL_STATE(1599)] = 55463, - [SMALL_STATE(1600)] = 55474, - [SMALL_STATE(1601)] = 55485, - [SMALL_STATE(1602)] = 55496, - [SMALL_STATE(1603)] = 55507, - [SMALL_STATE(1604)] = 55518, - [SMALL_STATE(1605)] = 55529, - [SMALL_STATE(1606)] = 55540, - [SMALL_STATE(1607)] = 55551, - [SMALL_STATE(1608)] = 55562, - [SMALL_STATE(1609)] = 55573, - [SMALL_STATE(1610)] = 55584, - [SMALL_STATE(1611)] = 55595, - [SMALL_STATE(1612)] = 55606, - [SMALL_STATE(1613)] = 55617, - [SMALL_STATE(1614)] = 55628, - [SMALL_STATE(1615)] = 55639, - [SMALL_STATE(1616)] = 55650, - [SMALL_STATE(1617)] = 55661, - [SMALL_STATE(1618)] = 55672, - [SMALL_STATE(1619)] = 55683, - [SMALL_STATE(1620)] = 55694, - [SMALL_STATE(1621)] = 55703, - [SMALL_STATE(1622)] = 55714, - [SMALL_STATE(1623)] = 55725, - [SMALL_STATE(1624)] = 55736, - [SMALL_STATE(1625)] = 55747, - [SMALL_STATE(1626)] = 55758, - [SMALL_STATE(1627)] = 55769, - [SMALL_STATE(1628)] = 55780, - [SMALL_STATE(1629)] = 55791, - [SMALL_STATE(1630)] = 55802, - [SMALL_STATE(1631)] = 55813, - [SMALL_STATE(1632)] = 55824, - [SMALL_STATE(1633)] = 55835, - [SMALL_STATE(1634)] = 55846, - [SMALL_STATE(1635)] = 55857, - [SMALL_STATE(1636)] = 55868, - [SMALL_STATE(1637)] = 55879, - [SMALL_STATE(1638)] = 55890, - [SMALL_STATE(1639)] = 55901, - [SMALL_STATE(1640)] = 55912, - [SMALL_STATE(1641)] = 55923, - [SMALL_STATE(1642)] = 55934, - [SMALL_STATE(1643)] = 55945, - [SMALL_STATE(1644)] = 55956, - [SMALL_STATE(1645)] = 55967, - [SMALL_STATE(1646)] = 55978, - [SMALL_STATE(1647)] = 55989, - [SMALL_STATE(1648)] = 56000, - [SMALL_STATE(1649)] = 56009, - [SMALL_STATE(1650)] = 56018, - [SMALL_STATE(1651)] = 56029, - [SMALL_STATE(1652)] = 56040, - [SMALL_STATE(1653)] = 56051, - [SMALL_STATE(1654)] = 56062, - [SMALL_STATE(1655)] = 56073, - [SMALL_STATE(1656)] = 56084, - [SMALL_STATE(1657)] = 56095, - [SMALL_STATE(1658)] = 56106, - [SMALL_STATE(1659)] = 56117, - [SMALL_STATE(1660)] = 56126, - [SMALL_STATE(1661)] = 56135, - [SMALL_STATE(1662)] = 56144, - [SMALL_STATE(1663)] = 56153, - [SMALL_STATE(1664)] = 56164, - [SMALL_STATE(1665)] = 56175, - [SMALL_STATE(1666)] = 56186, - [SMALL_STATE(1667)] = 56197, - [SMALL_STATE(1668)] = 56208, - [SMALL_STATE(1669)] = 56219, - [SMALL_STATE(1670)] = 56228, - [SMALL_STATE(1671)] = 56239, - [SMALL_STATE(1672)] = 56250, - [SMALL_STATE(1673)] = 56261, - [SMALL_STATE(1674)] = 56270, - [SMALL_STATE(1675)] = 56281, - [SMALL_STATE(1676)] = 56292, - [SMALL_STATE(1677)] = 56303, - [SMALL_STATE(1678)] = 56314, - [SMALL_STATE(1679)] = 56323, - [SMALL_STATE(1680)] = 56334, - [SMALL_STATE(1681)] = 56345, - [SMALL_STATE(1682)] = 56356, - [SMALL_STATE(1683)] = 56367, - [SMALL_STATE(1684)] = 56378, - [SMALL_STATE(1685)] = 56389, - [SMALL_STATE(1686)] = 56398, - [SMALL_STATE(1687)] = 56409, - [SMALL_STATE(1688)] = 56420, - [SMALL_STATE(1689)] = 56431, - [SMALL_STATE(1690)] = 56440, - [SMALL_STATE(1691)] = 56451, - [SMALL_STATE(1692)] = 56462, - [SMALL_STATE(1693)] = 56473, - [SMALL_STATE(1694)] = 56484, - [SMALL_STATE(1695)] = 56495, - [SMALL_STATE(1696)] = 56504, - [SMALL_STATE(1697)] = 56515, - [SMALL_STATE(1698)] = 56526, - [SMALL_STATE(1699)] = 56537, - [SMALL_STATE(1700)] = 56546, - [SMALL_STATE(1701)] = 56557, - [SMALL_STATE(1702)] = 56568, - [SMALL_STATE(1703)] = 56577, - [SMALL_STATE(1704)] = 56588, - [SMALL_STATE(1705)] = 56599, - [SMALL_STATE(1706)] = 56610, - [SMALL_STATE(1707)] = 56621, - [SMALL_STATE(1708)] = 56632, - [SMALL_STATE(1709)] = 56643, - [SMALL_STATE(1710)] = 56654, - [SMALL_STATE(1711)] = 56665, - [SMALL_STATE(1712)] = 56676, - [SMALL_STATE(1713)] = 56687, - [SMALL_STATE(1714)] = 56698, - [SMALL_STATE(1715)] = 56709, - [SMALL_STATE(1716)] = 56720, - [SMALL_STATE(1717)] = 56731, - [SMALL_STATE(1718)] = 56742, - [SMALL_STATE(1719)] = 56753, - [SMALL_STATE(1720)] = 56764, - [SMALL_STATE(1721)] = 56775, - [SMALL_STATE(1722)] = 56786, - [SMALL_STATE(1723)] = 56795, - [SMALL_STATE(1724)] = 56806, - [SMALL_STATE(1725)] = 56817, - [SMALL_STATE(1726)] = 56828, - [SMALL_STATE(1727)] = 56839, - [SMALL_STATE(1728)] = 56848, - [SMALL_STATE(1729)] = 56859, - [SMALL_STATE(1730)] = 56870, - [SMALL_STATE(1731)] = 56881, - [SMALL_STATE(1732)] = 56890, - [SMALL_STATE(1733)] = 56899, - [SMALL_STATE(1734)] = 56910, - [SMALL_STATE(1735)] = 56919, - [SMALL_STATE(1736)] = 56930, - [SMALL_STATE(1737)] = 56941, - [SMALL_STATE(1738)] = 56950, - [SMALL_STATE(1739)] = 56961, - [SMALL_STATE(1740)] = 56972, - [SMALL_STATE(1741)] = 56983, - [SMALL_STATE(1742)] = 56994, - [SMALL_STATE(1743)] = 57005, - [SMALL_STATE(1744)] = 57016, - [SMALL_STATE(1745)] = 57027, - [SMALL_STATE(1746)] = 57038, - [SMALL_STATE(1747)] = 57049, - [SMALL_STATE(1748)] = 57058, - [SMALL_STATE(1749)] = 57066, - [SMALL_STATE(1750)] = 57074, - [SMALL_STATE(1751)] = 57082, - [SMALL_STATE(1752)] = 57090, - [SMALL_STATE(1753)] = 57098, - [SMALL_STATE(1754)] = 57106, - [SMALL_STATE(1755)] = 57114, - [SMALL_STATE(1756)] = 57122, - [SMALL_STATE(1757)] = 57130, - [SMALL_STATE(1758)] = 57138, - [SMALL_STATE(1759)] = 57146, - [SMALL_STATE(1760)] = 57154, - [SMALL_STATE(1761)] = 57162, - [SMALL_STATE(1762)] = 57170, - [SMALL_STATE(1763)] = 57178, - [SMALL_STATE(1764)] = 57186, - [SMALL_STATE(1765)] = 57194, - [SMALL_STATE(1766)] = 57202, - [SMALL_STATE(1767)] = 57210, - [SMALL_STATE(1768)] = 57218, - [SMALL_STATE(1769)] = 57226, - [SMALL_STATE(1770)] = 57236, - [SMALL_STATE(1771)] = 57246, - [SMALL_STATE(1772)] = 57254, - [SMALL_STATE(1773)] = 57262, - [SMALL_STATE(1774)] = 57270, - [SMALL_STATE(1775)] = 57278, - [SMALL_STATE(1776)] = 57286, - [SMALL_STATE(1777)] = 57294, - [SMALL_STATE(1778)] = 57302, - [SMALL_STATE(1779)] = 57310, - [SMALL_STATE(1780)] = 57318, - [SMALL_STATE(1781)] = 57326, - [SMALL_STATE(1782)] = 57334, - [SMALL_STATE(1783)] = 57342, - [SMALL_STATE(1784)] = 57350, - [SMALL_STATE(1785)] = 57358, - [SMALL_STATE(1786)] = 57368, - [SMALL_STATE(1787)] = 57376, - [SMALL_STATE(1788)] = 57386, - [SMALL_STATE(1789)] = 57394, - [SMALL_STATE(1790)] = 57402, - [SMALL_STATE(1791)] = 57410, - [SMALL_STATE(1792)] = 57418, - [SMALL_STATE(1793)] = 57426, - [SMALL_STATE(1794)] = 57434, - [SMALL_STATE(1795)] = 57442, - [SMALL_STATE(1796)] = 57450, - [SMALL_STATE(1797)] = 57458, - [SMALL_STATE(1798)] = 57466, - [SMALL_STATE(1799)] = 57474, - [SMALL_STATE(1800)] = 57482, - [SMALL_STATE(1801)] = 57490, - [SMALL_STATE(1802)] = 57498, - [SMALL_STATE(1803)] = 57506, - [SMALL_STATE(1804)] = 57514, - [SMALL_STATE(1805)] = 57522, - [SMALL_STATE(1806)] = 57530, - [SMALL_STATE(1807)] = 57538, - [SMALL_STATE(1808)] = 57546, - [SMALL_STATE(1809)] = 57556, - [SMALL_STATE(1810)] = 57564, - [SMALL_STATE(1811)] = 57572, - [SMALL_STATE(1812)] = 57580, - [SMALL_STATE(1813)] = 57588, - [SMALL_STATE(1814)] = 57596, - [SMALL_STATE(1815)] = 57604, - [SMALL_STATE(1816)] = 57612, - [SMALL_STATE(1817)] = 57620, - [SMALL_STATE(1818)] = 57628, - [SMALL_STATE(1819)] = 57636, - [SMALL_STATE(1820)] = 57644, - [SMALL_STATE(1821)] = 57652, - [SMALL_STATE(1822)] = 57660, - [SMALL_STATE(1823)] = 57670, - [SMALL_STATE(1824)] = 57678, - [SMALL_STATE(1825)] = 57686, - [SMALL_STATE(1826)] = 57694, - [SMALL_STATE(1827)] = 57702, - [SMALL_STATE(1828)] = 57710, - [SMALL_STATE(1829)] = 57718, - [SMALL_STATE(1830)] = 57728, - [SMALL_STATE(1831)] = 57736, - [SMALL_STATE(1832)] = 57744, - [SMALL_STATE(1833)] = 57754, - [SMALL_STATE(1834)] = 57762, - [SMALL_STATE(1835)] = 57770, - [SMALL_STATE(1836)] = 57778, - [SMALL_STATE(1837)] = 57786, - [SMALL_STATE(1838)] = 57794, - [SMALL_STATE(1839)] = 57802, - [SMALL_STATE(1840)] = 57810, - [SMALL_STATE(1841)] = 57818, - [SMALL_STATE(1842)] = 57826, - [SMALL_STATE(1843)] = 57834, - [SMALL_STATE(1844)] = 57842, - [SMALL_STATE(1845)] = 57850, - [SMALL_STATE(1846)] = 57858, - [SMALL_STATE(1847)] = 57866, - [SMALL_STATE(1848)] = 57874, - [SMALL_STATE(1849)] = 57882, - [SMALL_STATE(1850)] = 57890, - [SMALL_STATE(1851)] = 57898, - [SMALL_STATE(1852)] = 57906, - [SMALL_STATE(1853)] = 57914, - [SMALL_STATE(1854)] = 57922, - [SMALL_STATE(1855)] = 57930, - [SMALL_STATE(1856)] = 57938, - [SMALL_STATE(1857)] = 57946, - [SMALL_STATE(1858)] = 57954, - [SMALL_STATE(1859)] = 57962, - [SMALL_STATE(1860)] = 57970, - [SMALL_STATE(1861)] = 57978, - [SMALL_STATE(1862)] = 57986, - [SMALL_STATE(1863)] = 57994, - [SMALL_STATE(1864)] = 58002, - [SMALL_STATE(1865)] = 58010, - [SMALL_STATE(1866)] = 58018, - [SMALL_STATE(1867)] = 58026, - [SMALL_STATE(1868)] = 58034, - [SMALL_STATE(1869)] = 58042, + [SMALL_STATE(697)] = 20419, + [SMALL_STATE(698)] = 20469, + [SMALL_STATE(699)] = 20523, + [SMALL_STATE(700)] = 20573, + [SMALL_STATE(701)] = 20633, + [SMALL_STATE(702)] = 20691, + [SMALL_STATE(703)] = 20739, + [SMALL_STATE(704)] = 20791, + [SMALL_STATE(705)] = 20843, + [SMALL_STATE(706)] = 20893, + [SMALL_STATE(707)] = 20943, + [SMALL_STATE(708)] = 20991, + [SMALL_STATE(709)] = 21051, + [SMALL_STATE(710)] = 21098, + [SMALL_STATE(711)] = 21145, + [SMALL_STATE(712)] = 21236, + [SMALL_STATE(713)] = 21283, + [SMALL_STATE(714)] = 21374, + [SMALL_STATE(715)] = 21421, + [SMALL_STATE(716)] = 21468, + [SMALL_STATE(717)] = 21515, + [SMALL_STATE(718)] = 21562, + [SMALL_STATE(719)] = 21609, + [SMALL_STATE(720)] = 21656, + [SMALL_STATE(721)] = 21707, + [SMALL_STATE(722)] = 21754, + [SMALL_STATE(723)] = 21801, + [SMALL_STATE(724)] = 21848, + [SMALL_STATE(725)] = 21899, + [SMALL_STATE(726)] = 21946, + [SMALL_STATE(727)] = 21995, + [SMALL_STATE(728)] = 22046, + [SMALL_STATE(729)] = 22093, + [SMALL_STATE(730)] = 22184, + [SMALL_STATE(731)] = 22235, + [SMALL_STATE(732)] = 22282, + [SMALL_STATE(733)] = 22373, + [SMALL_STATE(734)] = 22420, + [SMALL_STATE(735)] = 22471, + [SMALL_STATE(736)] = 22518, + [SMALL_STATE(737)] = 22569, + [SMALL_STATE(738)] = 22620, + [SMALL_STATE(739)] = 22671, + [SMALL_STATE(740)] = 22722, + [SMALL_STATE(741)] = 22773, + [SMALL_STATE(742)] = 22824, + [SMALL_STATE(743)] = 22871, + [SMALL_STATE(744)] = 22918, + [SMALL_STATE(745)] = 22965, + [SMALL_STATE(746)] = 23012, + [SMALL_STATE(747)] = 23059, + [SMALL_STATE(748)] = 23108, + [SMALL_STATE(749)] = 23155, + [SMALL_STATE(750)] = 23204, + [SMALL_STATE(751)] = 23295, + [SMALL_STATE(752)] = 23342, + [SMALL_STATE(753)] = 23433, + [SMALL_STATE(754)] = 23504, + [SMALL_STATE(755)] = 23555, + [SMALL_STATE(756)] = 23606, + [SMALL_STATE(757)] = 23657, + [SMALL_STATE(758)] = 23704, + [SMALL_STATE(759)] = 23751, + [SMALL_STATE(760)] = 23812, + [SMALL_STATE(761)] = 23895, + [SMALL_STATE(762)] = 23980, + [SMALL_STATE(763)] = 24047, + [SMALL_STATE(764)] = 24126, + [SMALL_STATE(765)] = 24207, + [SMALL_STATE(766)] = 24290, + [SMALL_STATE(767)] = 24355, + [SMALL_STATE(768)] = 24416, + [SMALL_STATE(769)] = 24463, + [SMALL_STATE(770)] = 24550, + [SMALL_STATE(771)] = 24597, + [SMALL_STATE(772)] = 24644, + [SMALL_STATE(773)] = 24691, + [SMALL_STATE(774)] = 24782, + [SMALL_STATE(775)] = 24829, + [SMALL_STATE(776)] = 24920, + [SMALL_STATE(777)] = 24967, + [SMALL_STATE(778)] = 25058, + [SMALL_STATE(779)] = 25105, + [SMALL_STATE(780)] = 25152, + [SMALL_STATE(781)] = 25199, + [SMALL_STATE(782)] = 25290, + [SMALL_STATE(783)] = 25381, + [SMALL_STATE(784)] = 25428, + [SMALL_STATE(785)] = 25519, + [SMALL_STATE(786)] = 25566, + [SMALL_STATE(787)] = 25657, + [SMALL_STATE(788)] = 25748, + [SMALL_STATE(789)] = 25819, + [SMALL_STATE(790)] = 25880, + [SMALL_STATE(791)] = 25963, + [SMALL_STATE(792)] = 26048, + [SMALL_STATE(793)] = 26115, + [SMALL_STATE(794)] = 26194, + [SMALL_STATE(795)] = 26275, + [SMALL_STATE(796)] = 26358, + [SMALL_STATE(797)] = 26423, + [SMALL_STATE(798)] = 26484, + [SMALL_STATE(799)] = 26559, + [SMALL_STATE(800)] = 26646, + [SMALL_STATE(801)] = 26737, + [SMALL_STATE(802)] = 26828, + [SMALL_STATE(803)] = 26919, + [SMALL_STATE(804)] = 27010, + [SMALL_STATE(805)] = 27101, + [SMALL_STATE(806)] = 27192, + [SMALL_STATE(807)] = 27239, + [SMALL_STATE(808)] = 27286, + [SMALL_STATE(809)] = 27333, + [SMALL_STATE(810)] = 27380, + [SMALL_STATE(811)] = 27427, + [SMALL_STATE(812)] = 27474, + [SMALL_STATE(813)] = 27521, + [SMALL_STATE(814)] = 27612, + [SMALL_STATE(815)] = 27659, + [SMALL_STATE(816)] = 27706, + [SMALL_STATE(817)] = 27797, + [SMALL_STATE(818)] = 27844, + [SMALL_STATE(819)] = 27935, + [SMALL_STATE(820)] = 27982, + [SMALL_STATE(821)] = 28029, + [SMALL_STATE(822)] = 28076, + [SMALL_STATE(823)] = 28123, + [SMALL_STATE(824)] = 28170, + [SMALL_STATE(825)] = 28219, + [SMALL_STATE(826)] = 28310, + [SMALL_STATE(827)] = 28357, + [SMALL_STATE(828)] = 28404, + [SMALL_STATE(829)] = 28451, + [SMALL_STATE(830)] = 28526, + [SMALL_STATE(831)] = 28576, + [SMALL_STATE(832)] = 28628, + [SMALL_STATE(833)] = 28722, + [SMALL_STATE(834)] = 28774, + [SMALL_STATE(835)] = 28868, + [SMALL_STATE(836)] = 28962, + [SMALL_STATE(837)] = 29012, + [SMALL_STATE(838)] = 29106, + [SMALL_STATE(839)] = 29196, + [SMALL_STATE(840)] = 29286, + [SMALL_STATE(841)] = 29336, + [SMALL_STATE(842)] = 29430, + [SMALL_STATE(843)] = 29524, + [SMALL_STATE(844)] = 29616, + [SMALL_STATE(845)] = 29668, + [SMALL_STATE(846)] = 29720, + [SMALL_STATE(847)] = 29813, + [SMALL_STATE(848)] = 29864, + [SMALL_STATE(849)] = 29915, + [SMALL_STATE(850)] = 30008, + [SMALL_STATE(851)] = 30101, + [SMALL_STATE(852)] = 30190, + [SMALL_STATE(853)] = 30283, + [SMALL_STATE(854)] = 30376, + [SMALL_STATE(855)] = 30469, + [SMALL_STATE(856)] = 30556, + [SMALL_STATE(857)] = 30643, + [SMALL_STATE(858)] = 30736, + [SMALL_STATE(859)] = 30829, + [SMALL_STATE(860)] = 30922, + [SMALL_STATE(861)] = 31015, + [SMALL_STATE(862)] = 31108, + [SMALL_STATE(863)] = 31159, + [SMALL_STATE(864)] = 31252, + [SMALL_STATE(865)] = 31345, + [SMALL_STATE(866)] = 31438, + [SMALL_STATE(867)] = 31531, + [SMALL_STATE(868)] = 31624, + [SMALL_STATE(869)] = 31717, + [SMALL_STATE(870)] = 31810, + [SMALL_STATE(871)] = 31903, + [SMALL_STATE(872)] = 31996, + [SMALL_STATE(873)] = 32089, + [SMALL_STATE(874)] = 32182, + [SMALL_STATE(875)] = 32271, + [SMALL_STATE(876)] = 32364, + [SMALL_STATE(877)] = 32457, + [SMALL_STATE(878)] = 32550, + [SMALL_STATE(879)] = 32643, + [SMALL_STATE(880)] = 32736, + [SMALL_STATE(881)] = 32829, + [SMALL_STATE(882)] = 32922, + [SMALL_STATE(883)] = 33015, + [SMALL_STATE(884)] = 33108, + [SMALL_STATE(885)] = 33201, + [SMALL_STATE(886)] = 33290, + [SMALL_STATE(887)] = 33383, + [SMALL_STATE(888)] = 33476, + [SMALL_STATE(889)] = 33569, + [SMALL_STATE(890)] = 33662, + [SMALL_STATE(891)] = 33755, + [SMALL_STATE(892)] = 33848, + [SMALL_STATE(893)] = 33941, + [SMALL_STATE(894)] = 34034, + [SMALL_STATE(895)] = 34121, + [SMALL_STATE(896)] = 34214, + [SMALL_STATE(897)] = 34307, + [SMALL_STATE(898)] = 34358, + [SMALL_STATE(899)] = 34451, + [SMALL_STATE(900)] = 34538, + [SMALL_STATE(901)] = 34631, + [SMALL_STATE(902)] = 34718, + [SMALL_STATE(903)] = 34811, + [SMALL_STATE(904)] = 34898, + [SMALL_STATE(905)] = 34991, + [SMALL_STATE(906)] = 35071, + [SMALL_STATE(907)] = 35117, + [SMALL_STATE(908)] = 35205, + [SMALL_STATE(909)] = 35293, + [SMALL_STATE(910)] = 35381, + [SMALL_STATE(911)] = 35469, + [SMALL_STATE(912)] = 35557, + [SMALL_STATE(913)] = 35645, + [SMALL_STATE(914)] = 35713, + [SMALL_STATE(915)] = 35771, + [SMALL_STATE(916)] = 35851, + [SMALL_STATE(917)] = 35933, + [SMALL_STATE(918)] = 35997, + [SMALL_STATE(919)] = 36073, + [SMALL_STATE(920)] = 36151, + [SMALL_STATE(921)] = 36231, + [SMALL_STATE(922)] = 36293, + [SMALL_STATE(923)] = 36351, + [SMALL_STATE(924)] = 36423, + [SMALL_STATE(925)] = 36507, + [SMALL_STATE(926)] = 36595, + [SMALL_STATE(927)] = 36683, + [SMALL_STATE(928)] = 36771, + [SMALL_STATE(929)] = 36859, + [SMALL_STATE(930)] = 36947, + [SMALL_STATE(931)] = 37035, + [SMALL_STATE(932)] = 37123, + [SMALL_STATE(933)] = 37211, + [SMALL_STATE(934)] = 37299, + [SMALL_STATE(935)] = 37345, + [SMALL_STATE(936)] = 37433, + [SMALL_STATE(937)] = 37521, + [SMALL_STATE(938)] = 37609, + [SMALL_STATE(939)] = 37697, + [SMALL_STATE(940)] = 37785, + [SMALL_STATE(941)] = 37873, + [SMALL_STATE(942)] = 37941, + [SMALL_STATE(943)] = 37999, + [SMALL_STATE(944)] = 38079, + [SMALL_STATE(945)] = 38167, + [SMALL_STATE(946)] = 38231, + [SMALL_STATE(947)] = 38307, + [SMALL_STATE(948)] = 38385, + [SMALL_STATE(949)] = 38465, + [SMALL_STATE(950)] = 38527, + [SMALL_STATE(951)] = 38585, + [SMALL_STATE(952)] = 38657, + [SMALL_STATE(953)] = 38741, + [SMALL_STATE(954)] = 38829, + [SMALL_STATE(955)] = 38917, + [SMALL_STATE(956)] = 39005, + [SMALL_STATE(957)] = 39093, + [SMALL_STATE(958)] = 39181, + [SMALL_STATE(959)] = 39269, + [SMALL_STATE(960)] = 39357, + [SMALL_STATE(961)] = 39445, + [SMALL_STATE(962)] = 39533, + [SMALL_STATE(963)] = 39621, + [SMALL_STATE(964)] = 39709, + [SMALL_STATE(965)] = 39777, + [SMALL_STATE(966)] = 39835, + [SMALL_STATE(967)] = 39915, + [SMALL_STATE(968)] = 39997, + [SMALL_STATE(969)] = 40061, + [SMALL_STATE(970)] = 40137, + [SMALL_STATE(971)] = 40215, + [SMALL_STATE(972)] = 40277, + [SMALL_STATE(973)] = 40335, + [SMALL_STATE(974)] = 40407, + [SMALL_STATE(975)] = 40491, + [SMALL_STATE(976)] = 40579, + [SMALL_STATE(977)] = 40667, + [SMALL_STATE(978)] = 40755, + [SMALL_STATE(979)] = 40843, + [SMALL_STATE(980)] = 40931, + [SMALL_STATE(981)] = 41019, + [SMALL_STATE(982)] = 41065, + [SMALL_STATE(983)] = 41155, + [SMALL_STATE(984)] = 41205, + [SMALL_STATE(985)] = 41293, + [SMALL_STATE(986)] = 41375, + [SMALL_STATE(987)] = 41462, + [SMALL_STATE(988)] = 41549, + [SMALL_STATE(989)] = 41636, + [SMALL_STATE(990)] = 41723, + [SMALL_STATE(991)] = 41810, + [SMALL_STATE(992)] = 41897, + [SMALL_STATE(993)] = 41984, + [SMALL_STATE(994)] = 42063, + [SMALL_STATE(995)] = 42150, + [SMALL_STATE(996)] = 42239, + [SMALL_STATE(997)] = 42326, + [SMALL_STATE(998)] = 42410, + [SMALL_STATE(999)] = 42494, + [SMALL_STATE(1000)] = 42565, + [SMALL_STATE(1001)] = 42623, + [SMALL_STATE(1002)] = 42695, + [SMALL_STATE(1003)] = 42767, + [SMALL_STATE(1004)] = 42833, + [SMALL_STATE(1005)] = 42905, + [SMALL_STATE(1006)] = 42977, + [SMALL_STATE(1007)] = 43035, + [SMALL_STATE(1008)] = 43107, + [SMALL_STATE(1009)] = 43179, + [SMALL_STATE(1010)] = 43251, + [SMALL_STATE(1011)] = 43304, + [SMALL_STATE(1012)] = 43363, + [SMALL_STATE(1013)] = 43422, + [SMALL_STATE(1014)] = 43479, + [SMALL_STATE(1015)] = 43536, + [SMALL_STATE(1016)] = 43593, + [SMALL_STATE(1017)] = 43650, + [SMALL_STATE(1018)] = 43709, + [SMALL_STATE(1019)] = 43766, + [SMALL_STATE(1020)] = 43825, + [SMALL_STATE(1021)] = 43884, + [SMALL_STATE(1022)] = 43941, + [SMALL_STATE(1023)] = 44000, + [SMALL_STATE(1024)] = 44052, + [SMALL_STATE(1025)] = 44104, + [SMALL_STATE(1026)] = 44156, + [SMALL_STATE(1027)] = 44208, + [SMALL_STATE(1028)] = 44260, + [SMALL_STATE(1029)] = 44312, + [SMALL_STATE(1030)] = 44366, + [SMALL_STATE(1031)] = 44417, + [SMALL_STATE(1032)] = 44466, + [SMALL_STATE(1033)] = 44527, + [SMALL_STATE(1034)] = 44580, + [SMALL_STATE(1035)] = 44631, + [SMALL_STATE(1036)] = 44675, + [SMALL_STATE(1037)] = 44731, + [SMALL_STATE(1038)] = 44787, + [SMALL_STATE(1039)] = 44835, + [SMALL_STATE(1040)] = 44879, + [SMALL_STATE(1041)] = 44923, + [SMALL_STATE(1042)] = 44971, + [SMALL_STATE(1043)] = 45017, + [SMALL_STATE(1044)] = 45063, + [SMALL_STATE(1045)] = 45109, + [SMALL_STATE(1046)] = 45155, + [SMALL_STATE(1047)] = 45208, + [SMALL_STATE(1048)] = 45247, + [SMALL_STATE(1049)] = 45286, + [SMALL_STATE(1050)] = 45321, + [SMALL_STATE(1051)] = 45362, + [SMALL_STATE(1052)] = 45401, + [SMALL_STATE(1053)] = 45440, + [SMALL_STATE(1054)] = 45479, + [SMALL_STATE(1055)] = 45518, + [SMALL_STATE(1056)] = 45568, + [SMALL_STATE(1057)] = 45596, + [SMALL_STATE(1058)] = 45624, + [SMALL_STATE(1059)] = 45674, + [SMALL_STATE(1060)] = 45702, + [SMALL_STATE(1061)] = 45730, + [SMALL_STATE(1062)] = 45758, + [SMALL_STATE(1063)] = 45786, + [SMALL_STATE(1064)] = 45814, + [SMALL_STATE(1065)] = 45842, + [SMALL_STATE(1066)] = 45870, + [SMALL_STATE(1067)] = 45898, + [SMALL_STATE(1068)] = 45926, + [SMALL_STATE(1069)] = 45954, + [SMALL_STATE(1070)] = 45988, + [SMALL_STATE(1071)] = 46016, + [SMALL_STATE(1072)] = 46044, + [SMALL_STATE(1073)] = 46072, + [SMALL_STATE(1074)] = 46100, + [SMALL_STATE(1075)] = 46128, + [SMALL_STATE(1076)] = 46156, + [SMALL_STATE(1077)] = 46184, + [SMALL_STATE(1078)] = 46214, + [SMALL_STATE(1079)] = 46242, + [SMALL_STATE(1080)] = 46270, + [SMALL_STATE(1081)] = 46300, + [SMALL_STATE(1082)] = 46328, + [SMALL_STATE(1083)] = 46356, + [SMALL_STATE(1084)] = 46384, + [SMALL_STATE(1085)] = 46412, + [SMALL_STATE(1086)] = 46440, + [SMALL_STATE(1087)] = 46468, + [SMALL_STATE(1088)] = 46496, + [SMALL_STATE(1089)] = 46524, + [SMALL_STATE(1090)] = 46551, + [SMALL_STATE(1091)] = 46594, + [SMALL_STATE(1092)] = 46621, + [SMALL_STATE(1093)] = 46648, + [SMALL_STATE(1094)] = 46677, + [SMALL_STATE(1095)] = 46704, + [SMALL_STATE(1096)] = 46747, + [SMALL_STATE(1097)] = 46774, + [SMALL_STATE(1098)] = 46813, + [SMALL_STATE(1099)] = 46840, + [SMALL_STATE(1100)] = 46883, + [SMALL_STATE(1101)] = 46924, + [SMALL_STATE(1102)] = 46967, + [SMALL_STATE(1103)] = 47008, + [SMALL_STATE(1104)] = 47053, + [SMALL_STATE(1105)] = 47089, + [SMALL_STATE(1106)] = 47125, + [SMALL_STATE(1107)] = 47161, + [SMALL_STATE(1108)] = 47187, + [SMALL_STATE(1109)] = 47223, + [SMALL_STATE(1110)] = 47259, + [SMALL_STATE(1111)] = 47285, + [SMALL_STATE(1112)] = 47311, + [SMALL_STATE(1113)] = 47347, + [SMALL_STATE(1114)] = 47383, + [SMALL_STATE(1115)] = 47423, + [SMALL_STATE(1116)] = 47459, + [SMALL_STATE(1117)] = 47499, + [SMALL_STATE(1118)] = 47525, + [SMALL_STATE(1119)] = 47551, + [SMALL_STATE(1120)] = 47587, + [SMALL_STATE(1121)] = 47629, + [SMALL_STATE(1122)] = 47665, + [SMALL_STATE(1123)] = 47707, + [SMALL_STATE(1124)] = 47743, + [SMALL_STATE(1125)] = 47779, + [SMALL_STATE(1126)] = 47815, + [SMALL_STATE(1127)] = 47851, + [SMALL_STATE(1128)] = 47887, + [SMALL_STATE(1129)] = 47923, + [SMALL_STATE(1130)] = 47959, + [SMALL_STATE(1131)] = 47995, + [SMALL_STATE(1132)] = 48031, + [SMALL_STATE(1133)] = 48067, + [SMALL_STATE(1134)] = 48103, + [SMALL_STATE(1135)] = 48139, + [SMALL_STATE(1136)] = 48175, + [SMALL_STATE(1137)] = 48211, + [SMALL_STATE(1138)] = 48237, + [SMALL_STATE(1139)] = 48270, + [SMALL_STATE(1140)] = 48303, + [SMALL_STATE(1141)] = 48336, + [SMALL_STATE(1142)] = 48369, + [SMALL_STATE(1143)] = 48402, + [SMALL_STATE(1144)] = 48435, + [SMALL_STATE(1145)] = 48468, + [SMALL_STATE(1146)] = 48501, + [SMALL_STATE(1147)] = 48534, + [SMALL_STATE(1148)] = 48567, + [SMALL_STATE(1149)] = 48600, + [SMALL_STATE(1150)] = 48633, + [SMALL_STATE(1151)] = 48666, + [SMALL_STATE(1152)] = 48699, + [SMALL_STATE(1153)] = 48732, + [SMALL_STATE(1154)] = 48765, + [SMALL_STATE(1155)] = 48798, + [SMALL_STATE(1156)] = 48831, + [SMALL_STATE(1157)] = 48853, + [SMALL_STATE(1158)] = 48875, + [SMALL_STATE(1159)] = 48897, + [SMALL_STATE(1160)] = 48919, + [SMALL_STATE(1161)] = 48941, + [SMALL_STATE(1162)] = 48963, + [SMALL_STATE(1163)] = 49000, + [SMALL_STATE(1164)] = 49030, + [SMALL_STATE(1165)] = 49066, + [SMALL_STATE(1166)] = 49096, + [SMALL_STATE(1167)] = 49126, + [SMALL_STATE(1168)] = 49162, + [SMALL_STATE(1169)] = 49192, + [SMALL_STATE(1170)] = 49222, + [SMALL_STATE(1171)] = 49252, + [SMALL_STATE(1172)] = 49288, + [SMALL_STATE(1173)] = 49324, + [SMALL_STATE(1174)] = 49354, + [SMALL_STATE(1175)] = 49384, + [SMALL_STATE(1176)] = 49417, + [SMALL_STATE(1177)] = 49444, + [SMALL_STATE(1178)] = 49477, + [SMALL_STATE(1179)] = 49510, + [SMALL_STATE(1180)] = 49543, + [SMALL_STATE(1181)] = 49576, + [SMALL_STATE(1182)] = 49609, + [SMALL_STATE(1183)] = 49642, + [SMALL_STATE(1184)] = 49675, + [SMALL_STATE(1185)] = 49705, + [SMALL_STATE(1186)] = 49735, + [SMALL_STATE(1187)] = 49765, + [SMALL_STATE(1188)] = 49795, + [SMALL_STATE(1189)] = 49825, + [SMALL_STATE(1190)] = 49855, + [SMALL_STATE(1191)] = 49885, + [SMALL_STATE(1192)] = 49915, + [SMALL_STATE(1193)] = 49945, + [SMALL_STATE(1194)] = 49975, + [SMALL_STATE(1195)] = 50005, + [SMALL_STATE(1196)] = 50035, + [SMALL_STATE(1197)] = 50065, + [SMALL_STATE(1198)] = 50095, + [SMALL_STATE(1199)] = 50125, + [SMALL_STATE(1200)] = 50155, + [SMALL_STATE(1201)] = 50181, + [SMALL_STATE(1202)] = 50207, + [SMALL_STATE(1203)] = 50235, + [SMALL_STATE(1204)] = 50263, + [SMALL_STATE(1205)] = 50293, + [SMALL_STATE(1206)] = 50323, + [SMALL_STATE(1207)] = 50353, + [SMALL_STATE(1208)] = 50383, + [SMALL_STATE(1209)] = 50413, + [SMALL_STATE(1210)] = 50438, + [SMALL_STATE(1211)] = 50463, + [SMALL_STATE(1212)] = 50488, + [SMALL_STATE(1213)] = 50513, + [SMALL_STATE(1214)] = 50540, + [SMALL_STATE(1215)] = 50567, + [SMALL_STATE(1216)] = 50592, + [SMALL_STATE(1217)] = 50617, + [SMALL_STATE(1218)] = 50642, + [SMALL_STATE(1219)] = 50667, + [SMALL_STATE(1220)] = 50692, + [SMALL_STATE(1221)] = 50716, + [SMALL_STATE(1222)] = 50738, + [SMALL_STATE(1223)] = 50762, + [SMALL_STATE(1224)] = 50786, + [SMALL_STATE(1225)] = 50808, + [SMALL_STATE(1226)] = 50832, + [SMALL_STATE(1227)] = 50846, + [SMALL_STATE(1228)] = 50864, + [SMALL_STATE(1229)] = 50878, + [SMALL_STATE(1230)] = 50892, + [SMALL_STATE(1231)] = 50916, + [SMALL_STATE(1232)] = 50938, + [SMALL_STATE(1233)] = 50956, + [SMALL_STATE(1234)] = 50970, + [SMALL_STATE(1235)] = 50984, + [SMALL_STATE(1236)] = 51008, + [SMALL_STATE(1237)] = 51028, + [SMALL_STATE(1238)] = 51048, + [SMALL_STATE(1239)] = 51068, + [SMALL_STATE(1240)] = 51090, + [SMALL_STATE(1241)] = 51114, + [SMALL_STATE(1242)] = 51136, + [SMALL_STATE(1243)] = 51158, + [SMALL_STATE(1244)] = 51177, + [SMALL_STATE(1245)] = 51198, + [SMALL_STATE(1246)] = 51217, + [SMALL_STATE(1247)] = 51230, + [SMALL_STATE(1248)] = 51249, + [SMALL_STATE(1249)] = 51262, + [SMALL_STATE(1250)] = 51281, + [SMALL_STATE(1251)] = 51294, + [SMALL_STATE(1252)] = 51307, + [SMALL_STATE(1253)] = 51320, + [SMALL_STATE(1254)] = 51339, + [SMALL_STATE(1255)] = 51358, + [SMALL_STATE(1256)] = 51377, + [SMALL_STATE(1257)] = 51396, + [SMALL_STATE(1258)] = 51409, + [SMALL_STATE(1259)] = 51428, + [SMALL_STATE(1260)] = 51443, + [SMALL_STATE(1261)] = 51458, + [SMALL_STATE(1262)] = 51479, + [SMALL_STATE(1263)] = 51500, + [SMALL_STATE(1264)] = 51513, + [SMALL_STATE(1265)] = 51526, + [SMALL_STATE(1266)] = 51539, + [SMALL_STATE(1267)] = 51556, + [SMALL_STATE(1268)] = 51569, + [SMALL_STATE(1269)] = 51588, + [SMALL_STATE(1270)] = 51609, + [SMALL_STATE(1271)] = 51628, + [SMALL_STATE(1272)] = 51648, + [SMALL_STATE(1273)] = 51664, + [SMALL_STATE(1274)] = 51678, + [SMALL_STATE(1275)] = 51692, + [SMALL_STATE(1276)] = 51706, + [SMALL_STATE(1277)] = 51720, + [SMALL_STATE(1278)] = 51740, + [SMALL_STATE(1279)] = 51754, + [SMALL_STATE(1280)] = 51770, + [SMALL_STATE(1281)] = 51784, + [SMALL_STATE(1282)] = 51798, + [SMALL_STATE(1283)] = 51812, + [SMALL_STATE(1284)] = 51832, + [SMALL_STATE(1285)] = 51846, + [SMALL_STATE(1286)] = 51866, + [SMALL_STATE(1287)] = 51880, + [SMALL_STATE(1288)] = 51900, + [SMALL_STATE(1289)] = 51914, + [SMALL_STATE(1290)] = 51934, + [SMALL_STATE(1291)] = 51954, + [SMALL_STATE(1292)] = 51966, + [SMALL_STATE(1293)] = 51984, + [SMALL_STATE(1294)] = 52004, + [SMALL_STATE(1295)] = 52018, + [SMALL_STATE(1296)] = 52032, + [SMALL_STATE(1297)] = 52046, + [SMALL_STATE(1298)] = 52062, + [SMALL_STATE(1299)] = 52082, + [SMALL_STATE(1300)] = 52096, + [SMALL_STATE(1301)] = 52110, + [SMALL_STATE(1302)] = 52122, + [SMALL_STATE(1303)] = 52136, + [SMALL_STATE(1304)] = 52150, + [SMALL_STATE(1305)] = 52164, + [SMALL_STATE(1306)] = 52178, + [SMALL_STATE(1307)] = 52198, + [SMALL_STATE(1308)] = 52212, + [SMALL_STATE(1309)] = 52226, + [SMALL_STATE(1310)] = 52246, + [SMALL_STATE(1311)] = 52260, + [SMALL_STATE(1312)] = 52280, + [SMALL_STATE(1313)] = 52294, + [SMALL_STATE(1314)] = 52314, + [SMALL_STATE(1315)] = 52334, + [SMALL_STATE(1316)] = 52354, + [SMALL_STATE(1317)] = 52368, + [SMALL_STATE(1318)] = 52384, + [SMALL_STATE(1319)] = 52398, + [SMALL_STATE(1320)] = 52412, + [SMALL_STATE(1321)] = 52426, + [SMALL_STATE(1322)] = 52446, + [SMALL_STATE(1323)] = 52466, + [SMALL_STATE(1324)] = 52486, + [SMALL_STATE(1325)] = 52500, + [SMALL_STATE(1326)] = 52514, + [SMALL_STATE(1327)] = 52528, + [SMALL_STATE(1328)] = 52548, + [SMALL_STATE(1329)] = 52562, + [SMALL_STATE(1330)] = 52576, + [SMALL_STATE(1331)] = 52590, + [SMALL_STATE(1332)] = 52610, + [SMALL_STATE(1333)] = 52624, + [SMALL_STATE(1334)] = 52640, + [SMALL_STATE(1335)] = 52652, + [SMALL_STATE(1336)] = 52666, + [SMALL_STATE(1337)] = 52683, + [SMALL_STATE(1338)] = 52700, + [SMALL_STATE(1339)] = 52715, + [SMALL_STATE(1340)] = 52732, + [SMALL_STATE(1341)] = 52749, + [SMALL_STATE(1342)] = 52766, + [SMALL_STATE(1343)] = 52781, + [SMALL_STATE(1344)] = 52798, + [SMALL_STATE(1345)] = 52813, + [SMALL_STATE(1346)] = 52830, + [SMALL_STATE(1347)] = 52843, + [SMALL_STATE(1348)] = 52860, + [SMALL_STATE(1349)] = 52877, + [SMALL_STATE(1350)] = 52894, + [SMALL_STATE(1351)] = 52911, + [SMALL_STATE(1352)] = 52928, + [SMALL_STATE(1353)] = 52945, + [SMALL_STATE(1354)] = 52960, + [SMALL_STATE(1355)] = 52975, + [SMALL_STATE(1356)] = 52992, + [SMALL_STATE(1357)] = 53009, + [SMALL_STATE(1358)] = 53024, + [SMALL_STATE(1359)] = 53039, + [SMALL_STATE(1360)] = 53054, + [SMALL_STATE(1361)] = 53073, + [SMALL_STATE(1362)] = 53090, + [SMALL_STATE(1363)] = 53109, + [SMALL_STATE(1364)] = 53126, + [SMALL_STATE(1365)] = 53143, + [SMALL_STATE(1366)] = 53160, + [SMALL_STATE(1367)] = 53173, + [SMALL_STATE(1368)] = 53190, + [SMALL_STATE(1369)] = 53207, + [SMALL_STATE(1370)] = 53226, + [SMALL_STATE(1371)] = 53245, + [SMALL_STATE(1372)] = 53262, + [SMALL_STATE(1373)] = 53279, + [SMALL_STATE(1374)] = 53296, + [SMALL_STATE(1375)] = 53311, + [SMALL_STATE(1376)] = 53328, + [SMALL_STATE(1377)] = 53345, + [SMALL_STATE(1378)] = 53362, + [SMALL_STATE(1379)] = 53379, + [SMALL_STATE(1380)] = 53390, + [SMALL_STATE(1381)] = 53405, + [SMALL_STATE(1382)] = 53422, + [SMALL_STATE(1383)] = 53437, + [SMALL_STATE(1384)] = 53452, + [SMALL_STATE(1385)] = 53467, + [SMALL_STATE(1386)] = 53484, + [SMALL_STATE(1387)] = 53501, + [SMALL_STATE(1388)] = 53518, + [SMALL_STATE(1389)] = 53529, + [SMALL_STATE(1390)] = 53544, + [SMALL_STATE(1391)] = 53561, + [SMALL_STATE(1392)] = 53578, + [SMALL_STATE(1393)] = 53593, + [SMALL_STATE(1394)] = 53604, + [SMALL_STATE(1395)] = 53623, + [SMALL_STATE(1396)] = 53638, + [SMALL_STATE(1397)] = 53655, + [SMALL_STATE(1398)] = 53672, + [SMALL_STATE(1399)] = 53689, + [SMALL_STATE(1400)] = 53706, + [SMALL_STATE(1401)] = 53721, + [SMALL_STATE(1402)] = 53738, + [SMALL_STATE(1403)] = 53755, + [SMALL_STATE(1404)] = 53772, + [SMALL_STATE(1405)] = 53789, + [SMALL_STATE(1406)] = 53800, + [SMALL_STATE(1407)] = 53817, + [SMALL_STATE(1408)] = 53828, + [SMALL_STATE(1409)] = 53843, + [SMALL_STATE(1410)] = 53860, + [SMALL_STATE(1411)] = 53879, + [SMALL_STATE(1412)] = 53896, + [SMALL_STATE(1413)] = 53907, + [SMALL_STATE(1414)] = 53924, + [SMALL_STATE(1415)] = 53941, + [SMALL_STATE(1416)] = 53955, + [SMALL_STATE(1417)] = 53967, + [SMALL_STATE(1418)] = 53981, + [SMALL_STATE(1419)] = 53995, + [SMALL_STATE(1420)] = 54009, + [SMALL_STATE(1421)] = 54023, + [SMALL_STATE(1422)] = 54037, + [SMALL_STATE(1423)] = 54047, + [SMALL_STATE(1424)] = 54061, + [SMALL_STATE(1425)] = 54075, + [SMALL_STATE(1426)] = 54089, + [SMALL_STATE(1427)] = 54103, + [SMALL_STATE(1428)] = 54117, + [SMALL_STATE(1429)] = 54129, + [SMALL_STATE(1430)] = 54143, + [SMALL_STATE(1431)] = 54157, + [SMALL_STATE(1432)] = 54171, + [SMALL_STATE(1433)] = 54185, + [SMALL_STATE(1434)] = 54199, + [SMALL_STATE(1435)] = 54213, + [SMALL_STATE(1436)] = 54227, + [SMALL_STATE(1437)] = 54241, + [SMALL_STATE(1438)] = 54255, + [SMALL_STATE(1439)] = 54269, + [SMALL_STATE(1440)] = 54283, + [SMALL_STATE(1441)] = 54297, + [SMALL_STATE(1442)] = 54311, + [SMALL_STATE(1443)] = 54323, + [SMALL_STATE(1444)] = 54337, + [SMALL_STATE(1445)] = 54351, + [SMALL_STATE(1446)] = 54361, + [SMALL_STATE(1447)] = 54375, + [SMALL_STATE(1448)] = 54389, + [SMALL_STATE(1449)] = 54401, + [SMALL_STATE(1450)] = 54415, + [SMALL_STATE(1451)] = 54429, + [SMALL_STATE(1452)] = 54441, + [SMALL_STATE(1453)] = 54455, + [SMALL_STATE(1454)] = 54469, + [SMALL_STATE(1455)] = 54483, + [SMALL_STATE(1456)] = 54497, + [SMALL_STATE(1457)] = 54511, + [SMALL_STATE(1458)] = 54525, + [SMALL_STATE(1459)] = 54539, + [SMALL_STATE(1460)] = 54549, + [SMALL_STATE(1461)] = 54563, + [SMALL_STATE(1462)] = 54577, + [SMALL_STATE(1463)] = 54589, + [SMALL_STATE(1464)] = 54599, + [SMALL_STATE(1465)] = 54613, + [SMALL_STATE(1466)] = 54627, + [SMALL_STATE(1467)] = 54641, + [SMALL_STATE(1468)] = 54655, + [SMALL_STATE(1469)] = 54669, + [SMALL_STATE(1470)] = 54679, + [SMALL_STATE(1471)] = 54691, + [SMALL_STATE(1472)] = 54703, + [SMALL_STATE(1473)] = 54717, + [SMALL_STATE(1474)] = 54731, + [SMALL_STATE(1475)] = 54745, + [SMALL_STATE(1476)] = 54759, + [SMALL_STATE(1477)] = 54773, + [SMALL_STATE(1478)] = 54787, + [SMALL_STATE(1479)] = 54799, + [SMALL_STATE(1480)] = 54811, + [SMALL_STATE(1481)] = 54825, + [SMALL_STATE(1482)] = 54839, + [SMALL_STATE(1483)] = 54851, + [SMALL_STATE(1484)] = 54865, + [SMALL_STATE(1485)] = 54879, + [SMALL_STATE(1486)] = 54893, + [SMALL_STATE(1487)] = 54907, + [SMALL_STATE(1488)] = 54921, + [SMALL_STATE(1489)] = 54933, + [SMALL_STATE(1490)] = 54945, + [SMALL_STATE(1491)] = 54957, + [SMALL_STATE(1492)] = 54971, + [SMALL_STATE(1493)] = 54985, + [SMALL_STATE(1494)] = 54999, + [SMALL_STATE(1495)] = 55009, + [SMALL_STATE(1496)] = 55021, + [SMALL_STATE(1497)] = 55035, + [SMALL_STATE(1498)] = 55049, + [SMALL_STATE(1499)] = 55063, + [SMALL_STATE(1500)] = 55077, + [SMALL_STATE(1501)] = 55091, + [SMALL_STATE(1502)] = 55101, + [SMALL_STATE(1503)] = 55115, + [SMALL_STATE(1504)] = 55125, + [SMALL_STATE(1505)] = 55139, + [SMALL_STATE(1506)] = 55153, + [SMALL_STATE(1507)] = 55165, + [SMALL_STATE(1508)] = 55179, + [SMALL_STATE(1509)] = 55193, + [SMALL_STATE(1510)] = 55207, + [SMALL_STATE(1511)] = 55221, + [SMALL_STATE(1512)] = 55235, + [SMALL_STATE(1513)] = 55245, + [SMALL_STATE(1514)] = 55259, + [SMALL_STATE(1515)] = 55270, + [SMALL_STATE(1516)] = 55281, + [SMALL_STATE(1517)] = 55292, + [SMALL_STATE(1518)] = 55303, + [SMALL_STATE(1519)] = 55314, + [SMALL_STATE(1520)] = 55325, + [SMALL_STATE(1521)] = 55336, + [SMALL_STATE(1522)] = 55347, + [SMALL_STATE(1523)] = 55358, + [SMALL_STATE(1524)] = 55369, + [SMALL_STATE(1525)] = 55380, + [SMALL_STATE(1526)] = 55391, + [SMALL_STATE(1527)] = 55402, + [SMALL_STATE(1528)] = 55413, + [SMALL_STATE(1529)] = 55424, + [SMALL_STATE(1530)] = 55435, + [SMALL_STATE(1531)] = 55446, + [SMALL_STATE(1532)] = 55455, + [SMALL_STATE(1533)] = 55466, + [SMALL_STATE(1534)] = 55477, + [SMALL_STATE(1535)] = 55486, + [SMALL_STATE(1536)] = 55495, + [SMALL_STATE(1537)] = 55506, + [SMALL_STATE(1538)] = 55517, + [SMALL_STATE(1539)] = 55528, + [SMALL_STATE(1540)] = 55539, + [SMALL_STATE(1541)] = 55548, + [SMALL_STATE(1542)] = 55559, + [SMALL_STATE(1543)] = 55570, + [SMALL_STATE(1544)] = 55581, + [SMALL_STATE(1545)] = 55592, + [SMALL_STATE(1546)] = 55603, + [SMALL_STATE(1547)] = 55614, + [SMALL_STATE(1548)] = 55625, + [SMALL_STATE(1549)] = 55634, + [SMALL_STATE(1550)] = 55645, + [SMALL_STATE(1551)] = 55654, + [SMALL_STATE(1552)] = 55665, + [SMALL_STATE(1553)] = 55676, + [SMALL_STATE(1554)] = 55687, + [SMALL_STATE(1555)] = 55698, + [SMALL_STATE(1556)] = 55709, + [SMALL_STATE(1557)] = 55720, + [SMALL_STATE(1558)] = 55731, + [SMALL_STATE(1559)] = 55742, + [SMALL_STATE(1560)] = 55753, + [SMALL_STATE(1561)] = 55764, + [SMALL_STATE(1562)] = 55775, + [SMALL_STATE(1563)] = 55786, + [SMALL_STATE(1564)] = 55797, + [SMALL_STATE(1565)] = 55808, + [SMALL_STATE(1566)] = 55819, + [SMALL_STATE(1567)] = 55830, + [SMALL_STATE(1568)] = 55841, + [SMALL_STATE(1569)] = 55850, + [SMALL_STATE(1570)] = 55861, + [SMALL_STATE(1571)] = 55872, + [SMALL_STATE(1572)] = 55883, + [SMALL_STATE(1573)] = 55892, + [SMALL_STATE(1574)] = 55903, + [SMALL_STATE(1575)] = 55914, + [SMALL_STATE(1576)] = 55925, + [SMALL_STATE(1577)] = 55936, + [SMALL_STATE(1578)] = 55947, + [SMALL_STATE(1579)] = 55958, + [SMALL_STATE(1580)] = 55969, + [SMALL_STATE(1581)] = 55980, + [SMALL_STATE(1582)] = 55991, + [SMALL_STATE(1583)] = 56002, + [SMALL_STATE(1584)] = 56013, + [SMALL_STATE(1585)] = 56024, + [SMALL_STATE(1586)] = 56035, + [SMALL_STATE(1587)] = 56046, + [SMALL_STATE(1588)] = 56057, + [SMALL_STATE(1589)] = 56068, + [SMALL_STATE(1590)] = 56079, + [SMALL_STATE(1591)] = 56090, + [SMALL_STATE(1592)] = 56101, + [SMALL_STATE(1593)] = 56112, + [SMALL_STATE(1594)] = 56123, + [SMALL_STATE(1595)] = 56134, + [SMALL_STATE(1596)] = 56145, + [SMALL_STATE(1597)] = 56156, + [SMALL_STATE(1598)] = 56167, + [SMALL_STATE(1599)] = 56178, + [SMALL_STATE(1600)] = 56189, + [SMALL_STATE(1601)] = 56200, + [SMALL_STATE(1602)] = 56211, + [SMALL_STATE(1603)] = 56222, + [SMALL_STATE(1604)] = 56233, + [SMALL_STATE(1605)] = 56244, + [SMALL_STATE(1606)] = 56255, + [SMALL_STATE(1607)] = 56266, + [SMALL_STATE(1608)] = 56277, + [SMALL_STATE(1609)] = 56288, + [SMALL_STATE(1610)] = 56299, + [SMALL_STATE(1611)] = 56310, + [SMALL_STATE(1612)] = 56321, + [SMALL_STATE(1613)] = 56332, + [SMALL_STATE(1614)] = 56343, + [SMALL_STATE(1615)] = 56354, + [SMALL_STATE(1616)] = 56365, + [SMALL_STATE(1617)] = 56376, + [SMALL_STATE(1618)] = 56387, + [SMALL_STATE(1619)] = 56398, + [SMALL_STATE(1620)] = 56409, + [SMALL_STATE(1621)] = 56420, + [SMALL_STATE(1622)] = 56431, + [SMALL_STATE(1623)] = 56442, + [SMALL_STATE(1624)] = 56453, + [SMALL_STATE(1625)] = 56464, + [SMALL_STATE(1626)] = 56475, + [SMALL_STATE(1627)] = 56484, + [SMALL_STATE(1628)] = 56495, + [SMALL_STATE(1629)] = 56504, + [SMALL_STATE(1630)] = 56513, + [SMALL_STATE(1631)] = 56524, + [SMALL_STATE(1632)] = 56533, + [SMALL_STATE(1633)] = 56544, + [SMALL_STATE(1634)] = 56555, + [SMALL_STATE(1635)] = 56566, + [SMALL_STATE(1636)] = 56577, + [SMALL_STATE(1637)] = 56588, + [SMALL_STATE(1638)] = 56599, + [SMALL_STATE(1639)] = 56610, + [SMALL_STATE(1640)] = 56621, + [SMALL_STATE(1641)] = 56632, + [SMALL_STATE(1642)] = 56643, + [SMALL_STATE(1643)] = 56652, + [SMALL_STATE(1644)] = 56663, + [SMALL_STATE(1645)] = 56674, + [SMALL_STATE(1646)] = 56685, + [SMALL_STATE(1647)] = 56696, + [SMALL_STATE(1648)] = 56707, + [SMALL_STATE(1649)] = 56718, + [SMALL_STATE(1650)] = 56729, + [SMALL_STATE(1651)] = 56740, + [SMALL_STATE(1652)] = 56751, + [SMALL_STATE(1653)] = 56762, + [SMALL_STATE(1654)] = 56773, + [SMALL_STATE(1655)] = 56784, + [SMALL_STATE(1656)] = 56795, + [SMALL_STATE(1657)] = 56806, + [SMALL_STATE(1658)] = 56817, + [SMALL_STATE(1659)] = 56828, + [SMALL_STATE(1660)] = 56839, + [SMALL_STATE(1661)] = 56850, + [SMALL_STATE(1662)] = 56861, + [SMALL_STATE(1663)] = 56872, + [SMALL_STATE(1664)] = 56883, + [SMALL_STATE(1665)] = 56894, + [SMALL_STATE(1666)] = 56905, + [SMALL_STATE(1667)] = 56916, + [SMALL_STATE(1668)] = 56925, + [SMALL_STATE(1669)] = 56936, + [SMALL_STATE(1670)] = 56947, + [SMALL_STATE(1671)] = 56956, + [SMALL_STATE(1672)] = 56965, + [SMALL_STATE(1673)] = 56976, + [SMALL_STATE(1674)] = 56985, + [SMALL_STATE(1675)] = 56996, + [SMALL_STATE(1676)] = 57007, + [SMALL_STATE(1677)] = 57018, + [SMALL_STATE(1678)] = 57027, + [SMALL_STATE(1679)] = 57038, + [SMALL_STATE(1680)] = 57049, + [SMALL_STATE(1681)] = 57060, + [SMALL_STATE(1682)] = 57069, + [SMALL_STATE(1683)] = 57080, + [SMALL_STATE(1684)] = 57091, + [SMALL_STATE(1685)] = 57102, + [SMALL_STATE(1686)] = 57113, + [SMALL_STATE(1687)] = 57124, + [SMALL_STATE(1688)] = 57133, + [SMALL_STATE(1689)] = 57144, + [SMALL_STATE(1690)] = 57155, + [SMALL_STATE(1691)] = 57166, + [SMALL_STATE(1692)] = 57177, + [SMALL_STATE(1693)] = 57186, + [SMALL_STATE(1694)] = 57197, + [SMALL_STATE(1695)] = 57208, + [SMALL_STATE(1696)] = 57219, + [SMALL_STATE(1697)] = 57230, + [SMALL_STATE(1698)] = 57241, + [SMALL_STATE(1699)] = 57252, + [SMALL_STATE(1700)] = 57263, + [SMALL_STATE(1701)] = 57274, + [SMALL_STATE(1702)] = 57285, + [SMALL_STATE(1703)] = 57296, + [SMALL_STATE(1704)] = 57307, + [SMALL_STATE(1705)] = 57318, + [SMALL_STATE(1706)] = 57329, + [SMALL_STATE(1707)] = 57340, + [SMALL_STATE(1708)] = 57351, + [SMALL_STATE(1709)] = 57362, + [SMALL_STATE(1710)] = 57373, + [SMALL_STATE(1711)] = 57384, + [SMALL_STATE(1712)] = 57395, + [SMALL_STATE(1713)] = 57406, + [SMALL_STATE(1714)] = 57417, + [SMALL_STATE(1715)] = 57426, + [SMALL_STATE(1716)] = 57435, + [SMALL_STATE(1717)] = 57446, + [SMALL_STATE(1718)] = 57457, + [SMALL_STATE(1719)] = 57468, + [SMALL_STATE(1720)] = 57479, + [SMALL_STATE(1721)] = 57488, + [SMALL_STATE(1722)] = 57499, + [SMALL_STATE(1723)] = 57510, + [SMALL_STATE(1724)] = 57519, + [SMALL_STATE(1725)] = 57530, + [SMALL_STATE(1726)] = 57541, + [SMALL_STATE(1727)] = 57550, + [SMALL_STATE(1728)] = 57561, + [SMALL_STATE(1729)] = 57572, + [SMALL_STATE(1730)] = 57581, + [SMALL_STATE(1731)] = 57592, + [SMALL_STATE(1732)] = 57601, + [SMALL_STATE(1733)] = 57610, + [SMALL_STATE(1734)] = 57621, + [SMALL_STATE(1735)] = 57630, + [SMALL_STATE(1736)] = 57641, + [SMALL_STATE(1737)] = 57652, + [SMALL_STATE(1738)] = 57663, + [SMALL_STATE(1739)] = 57674, + [SMALL_STATE(1740)] = 57683, + [SMALL_STATE(1741)] = 57694, + [SMALL_STATE(1742)] = 57705, + [SMALL_STATE(1743)] = 57716, + [SMALL_STATE(1744)] = 57725, + [SMALL_STATE(1745)] = 57736, + [SMALL_STATE(1746)] = 57747, + [SMALL_STATE(1747)] = 57758, + [SMALL_STATE(1748)] = 57767, + [SMALL_STATE(1749)] = 57776, + [SMALL_STATE(1750)] = 57787, + [SMALL_STATE(1751)] = 57796, + [SMALL_STATE(1752)] = 57805, + [SMALL_STATE(1753)] = 57816, + [SMALL_STATE(1754)] = 57827, + [SMALL_STATE(1755)] = 57838, + [SMALL_STATE(1756)] = 57849, + [SMALL_STATE(1757)] = 57860, + [SMALL_STATE(1758)] = 57871, + [SMALL_STATE(1759)] = 57879, + [SMALL_STATE(1760)] = 57887, + [SMALL_STATE(1761)] = 57895, + [SMALL_STATE(1762)] = 57903, + [SMALL_STATE(1763)] = 57911, + [SMALL_STATE(1764)] = 57919, + [SMALL_STATE(1765)] = 57927, + [SMALL_STATE(1766)] = 57935, + [SMALL_STATE(1767)] = 57943, + [SMALL_STATE(1768)] = 57951, + [SMALL_STATE(1769)] = 57959, + [SMALL_STATE(1770)] = 57967, + [SMALL_STATE(1771)] = 57975, + [SMALL_STATE(1772)] = 57983, + [SMALL_STATE(1773)] = 57991, + [SMALL_STATE(1774)] = 57999, + [SMALL_STATE(1775)] = 58007, + [SMALL_STATE(1776)] = 58015, + [SMALL_STATE(1777)] = 58023, + [SMALL_STATE(1778)] = 58031, + [SMALL_STATE(1779)] = 58039, + [SMALL_STATE(1780)] = 58047, + [SMALL_STATE(1781)] = 58055, + [SMALL_STATE(1782)] = 58063, + [SMALL_STATE(1783)] = 58071, + [SMALL_STATE(1784)] = 58079, + [SMALL_STATE(1785)] = 58087, + [SMALL_STATE(1786)] = 58095, + [SMALL_STATE(1787)] = 58105, + [SMALL_STATE(1788)] = 58113, + [SMALL_STATE(1789)] = 58123, + [SMALL_STATE(1790)] = 58131, + [SMALL_STATE(1791)] = 58139, + [SMALL_STATE(1792)] = 58147, + [SMALL_STATE(1793)] = 58155, + [SMALL_STATE(1794)] = 58165, + [SMALL_STATE(1795)] = 58173, + [SMALL_STATE(1796)] = 58183, + [SMALL_STATE(1797)] = 58191, + [SMALL_STATE(1798)] = 58199, + [SMALL_STATE(1799)] = 58207, + [SMALL_STATE(1800)] = 58215, + [SMALL_STATE(1801)] = 58223, + [SMALL_STATE(1802)] = 58231, + [SMALL_STATE(1803)] = 58239, + [SMALL_STATE(1804)] = 58247, + [SMALL_STATE(1805)] = 58255, + [SMALL_STATE(1806)] = 58263, + [SMALL_STATE(1807)] = 58273, + [SMALL_STATE(1808)] = 58281, + [SMALL_STATE(1809)] = 58289, + [SMALL_STATE(1810)] = 58297, + [SMALL_STATE(1811)] = 58305, + [SMALL_STATE(1812)] = 58313, + [SMALL_STATE(1813)] = 58321, + [SMALL_STATE(1814)] = 58329, + [SMALL_STATE(1815)] = 58337, + [SMALL_STATE(1816)] = 58345, + [SMALL_STATE(1817)] = 58353, + [SMALL_STATE(1818)] = 58361, + [SMALL_STATE(1819)] = 58369, + [SMALL_STATE(1820)] = 58377, + [SMALL_STATE(1821)] = 58385, + [SMALL_STATE(1822)] = 58393, + [SMALL_STATE(1823)] = 58401, + [SMALL_STATE(1824)] = 58409, + [SMALL_STATE(1825)] = 58417, + [SMALL_STATE(1826)] = 58425, + [SMALL_STATE(1827)] = 58433, + [SMALL_STATE(1828)] = 58441, + [SMALL_STATE(1829)] = 58449, + [SMALL_STATE(1830)] = 58457, + [SMALL_STATE(1831)] = 58465, + [SMALL_STATE(1832)] = 58473, + [SMALL_STATE(1833)] = 58481, + [SMALL_STATE(1834)] = 58489, + [SMALL_STATE(1835)] = 58497, + [SMALL_STATE(1836)] = 58505, + [SMALL_STATE(1837)] = 58513, + [SMALL_STATE(1838)] = 58521, + [SMALL_STATE(1839)] = 58529, + [SMALL_STATE(1840)] = 58537, + [SMALL_STATE(1841)] = 58545, + [SMALL_STATE(1842)] = 58553, + [SMALL_STATE(1843)] = 58561, + [SMALL_STATE(1844)] = 58569, + [SMALL_STATE(1845)] = 58579, + [SMALL_STATE(1846)] = 58587, + [SMALL_STATE(1847)] = 58595, + [SMALL_STATE(1848)] = 58603, + [SMALL_STATE(1849)] = 58611, + [SMALL_STATE(1850)] = 58619, + [SMALL_STATE(1851)] = 58627, + [SMALL_STATE(1852)] = 58637, + [SMALL_STATE(1853)] = 58645, + [SMALL_STATE(1854)] = 58653, + [SMALL_STATE(1855)] = 58661, + [SMALL_STATE(1856)] = 58669, + [SMALL_STATE(1857)] = 58677, + [SMALL_STATE(1858)] = 58685, + [SMALL_STATE(1859)] = 58693, + [SMALL_STATE(1860)] = 58701, + [SMALL_STATE(1861)] = 58709, + [SMALL_STATE(1862)] = 58717, + [SMALL_STATE(1863)] = 58725, + [SMALL_STATE(1864)] = 58733, + [SMALL_STATE(1865)] = 58741, + [SMALL_STATE(1866)] = 58749, + [SMALL_STATE(1867)] = 58757, + [SMALL_STATE(1868)] = 58765, + [SMALL_STATE(1869)] = 58773, + [SMALL_STATE(1870)] = 58781, + [SMALL_STATE(1871)] = 58789, + [SMALL_STATE(1872)] = 58797, + [SMALL_STATE(1873)] = 58805, + [SMALL_STATE(1874)] = 58813, + [SMALL_STATE(1875)] = 58821, + [SMALL_STATE(1876)] = 58829, + [SMALL_STATE(1877)] = 58839, + [SMALL_STATE(1878)] = 58847, + [SMALL_STATE(1879)] = 58855, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -92333,1795 +94861,1817 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [179] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(119), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(68), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(111), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1318), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(224), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1769), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(229), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1229), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(531), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1144), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1657), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(396), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1668), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1498), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1446), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(81), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1268), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(371), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(740), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(740), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 38), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 38), - [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 101), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 101), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 59), - [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 59), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(120), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(105), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1260), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(244), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1832), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(245), - [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1242), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(110), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(315), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(316), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(119), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 20), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(155), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(317), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(246), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(220), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1829), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(294), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 20), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(335), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1785), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(336), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(856), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(274), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(275), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 70), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 70), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 93), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 93), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 93), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 93), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 89), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 89), - [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 89), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 89), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 89), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 89), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 89), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 89), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 99), - [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 99), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 99), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 99), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 37), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 37), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 37), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 37), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 72), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 72), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 72), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 72), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 77), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 77), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 77), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 77), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 81), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 81), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 81), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 81), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(1648), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1122), - [1068] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(126), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(269), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(126), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 7), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 7), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 30), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 30), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 63), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 63), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 7), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 7), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 107), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 107), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 26), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 26), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 25), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 25), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 54), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 54), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 60), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 60), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 60), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 60), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 54), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 54), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 61), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 61), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 28), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 28), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 63), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 63), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 72), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 72), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 29), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 29), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 77), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 77), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 31), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 31), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 32), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 32), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 32), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 32), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 92), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 92), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 81), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 81), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 62), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 62), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 55), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 55), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1162), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1619), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1212), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(395), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1490), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1673), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1367), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(303), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1245), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(744), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(719), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(726), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1487), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [332] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(119), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(42), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(90), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1314), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(258), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1851), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(303), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1245), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 101), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 101), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 59), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 59), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 38), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 38), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(117), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(96), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1321), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(231), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1793), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(232), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1247), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(92), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(305), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(306), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(119), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(307), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 20), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(184), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(233), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(348), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1844), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(282), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 20), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(326), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1795), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(327), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(856), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(259), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(260), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(1531), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 70), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 70), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 77), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 77), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 77), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 77), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 37), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 37), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 37), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 37), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 99), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 99), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 99), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 99), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 72), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 72), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 72), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 72), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 81), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 81), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 81), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 81), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 89), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 89), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 89), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 89), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 89), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 89), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 89), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 89), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 93), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 93), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 93), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 93), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1141), + [1096] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(127), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(230), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(127), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 7), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 7), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 30), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 30), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 7), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 7), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 63), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 63), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 26), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 26), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 107), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 107), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 25), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 25), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 25), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 25), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 116), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 116), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 27), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 27), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 117), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 117), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 120), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 120), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 81), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 81), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 63), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 63), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 72), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 72), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 28), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 28), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 29), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 29), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 31), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 31), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 32), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 32), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 32), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 32), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 97), [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 97), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 14), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 14), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 15), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 15), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 54), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 54), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 89), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 89), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 89), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 89), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 93), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 93), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 7), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 7), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 64), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 64), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 77), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 77), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 89), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 89), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 52), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 52), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 54), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 54), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 89), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 89), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 55), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 55), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 93), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 93), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 54), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 54), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 92), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 92), [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 104), [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 104), [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 105), [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 105), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 37), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 37), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 106), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 106), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 21), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 21), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 80), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 80), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 99), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 99), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 21), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 21), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 22), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 22), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 25), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 25), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 25), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 25), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 27), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 27), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 116), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 116), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 117), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 117), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 120), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 120), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 25), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 25), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 52), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 52), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 91), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 91), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 47), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 47), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 48), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 48), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 79), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 79), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(118), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 109), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 109), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 110), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 110), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 111), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 111), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 112), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 112), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 113), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 113), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 114), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 114), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 102), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 102), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 103), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 103), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 8, 0, 118), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 8, 0, 118), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 21), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 21), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 14), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 14), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 25), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 25), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 25), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 25), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 106), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 106), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 15), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 15), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 60), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 60), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 61), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 61), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 62), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 62), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 99), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 99), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 21), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 21), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 7), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 7), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 64), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 64), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 37), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 37), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 22), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 22), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 80), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 80), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 54), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 54), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 60), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 60), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 47), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 47), + [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 91), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 91), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 48), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 48), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 79), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 79), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(106), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 8, 0, 118), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 8, 0, 118), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 109), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 109), [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 95), [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 95), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 8, 0, 119), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 8, 0, 119), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 96), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 96), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(319), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(249), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(160), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 8), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 8), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 9), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 9), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 33), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 33), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 33), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 33), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 38), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 38), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 39), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 39), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 40), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 40), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 41), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 41), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 43), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 43), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 7), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 7), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 11), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 11), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 10), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 10), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 12), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 12), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 49), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 49), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 50), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 50), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 51), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 51), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 18), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 18), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 65), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 65), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 73), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 73), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 74), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 74), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 75), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 75), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 76), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 76), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 17), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 17), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 74), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 74), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 18), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 18), - [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 18), REDUCE(sym_object_pattern, 3, 0, 19), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 19), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 78), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 78), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 88), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 88), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 82), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 82), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 90), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 16), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 42), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 44), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 44), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 44), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 19), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 42), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 16), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 18), REDUCE(sym_object_pattern, 3, 0, 19), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), REDUCE(sym_assignment_expression, 3, 0, 42), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 42), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 59), - [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(298), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 110), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 110), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 111), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 111), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 112), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 112), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 102), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 102), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 103), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 103), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 113), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 113), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 114), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 114), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 8, 0, 119), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 8, 0, 119), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 96), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 96), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(235), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(309), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(186), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 8), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 8), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 9), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 9), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 49), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 49), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 12), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 12), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 40), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 40), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 41), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 41), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 43), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 43), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 82), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 82), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 7), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 7), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 17), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 17), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 33), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 33), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this, 1, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this, 1, 0, 0), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 11), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 11), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 50), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 50), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 51), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 51), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 18), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 18), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 65), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 65), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 10), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 10), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 73), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 73), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 88), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 88), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super, 1, 0, 0), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super, 1, 0, 0), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 74), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 74), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_true, 1, 0, 0), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_true, 1, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 75), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 75), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_false, 1, 0, 0), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_false, 1, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 76), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 76), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 33), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 33), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 18), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 18), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 18), REDUCE(sym_object_pattern, 3, 0, 19), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 19), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 74), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 74), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 38), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 38), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 78), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 78), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 39), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 39), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 44), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 44), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 16), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 44), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 42), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 90), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 19), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 16), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 42), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 42), + [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), REDUCE(sym_assignment_expression, 3, 0, 42), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 59), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(286), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 18), REDUCE(sym_object_pattern, 3, 0, 19), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 57), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(340), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1342), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1130), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), - [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(985), - [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(312), - [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1330), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1331), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1023), - [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1228), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1470), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1009), - [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1101), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1028), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1698), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 18), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 19), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 18), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 94), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 94), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 100), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 100), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 58), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 58), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), SHIFT_REPEAT(1470), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 77), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 77), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 84), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 84), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 99), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 99), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 108), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 108), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 89), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 89), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), - [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), SHIFT_REPEAT(1073), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 38), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 38), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 7), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 7), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(129), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), - [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1288), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(1215), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(131), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(1215), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 6), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 6), SHIFT(1649), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 19), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 36), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 45), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 45), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 67), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 69), - [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1233), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(211), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 86), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 57), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(331), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1393), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1138), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1005), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(300), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1386), + [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1397), + [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1039), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1244), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1487), + [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1029), + [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1116), + [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1054), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1666), + [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 18), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 19), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 18), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 94), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 94), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 100), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 100), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 108), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 108), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), + [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), SHIFT_REPEAT(1487), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 77), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 77), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 99), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 99), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 89), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 89), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 58), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 58), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 84), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 84), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 38), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 38), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), SHIFT_REPEAT(1089), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 7), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 7), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1176), + [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(1236), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(130), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), + [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(1236), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 19), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 6), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 6), SHIFT(1550), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 36), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 65), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 65), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(249), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 23), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 24), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 33), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 33), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 34), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 34), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(319), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1320), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1320), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1201), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1348), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1348), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 19), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), - [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1396), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(989), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(992), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 6), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(121), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 57), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 21), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 6), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1221), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1249), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 45), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 45), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 67), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 69), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 86), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 23), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 24), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 65), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 65), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [3139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(235), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 33), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 33), + [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 34), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 34), + [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(309), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1336), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 19), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1217), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(125), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1394), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1394), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1410), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1410), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1225), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 57), + [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(1003), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 6), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 6), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1242), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 85), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 83), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 83), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 87), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 68), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 21), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 98), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [3644] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 68), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 87), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 83), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 85), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 83), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3720] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), }; enum ts_external_scanner_symbol_identifiers { diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index a17a574f..56fc8cd4 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -52,67 +52,96 @@ extern "C" { /// Reserve `new_capacity` elements of space in the array. If `new_capacity` is /// less than the array's current capacity, this function has no effect. -#define array_reserve(self, new_capacity) \ - _array__reserve((Array *)(self), array_elem_size(self), new_capacity) +#define array_reserve(self, new_capacity) \ + ((self)->contents = _array__reserve( \ + (void *)(self)->contents, &(self)->capacity, \ + array_elem_size(self), new_capacity) \ + ) /// Free any memory allocated for this array. Note that this does not free any /// memory allocated for the array's contents. -#define array_delete(self) _array__delete((Array *)(self)) +#define array_delete(self) \ + do { \ + if ((self)->contents) ts_free((self)->contents); \ + (self)->contents = NULL; \ + (self)->size = 0; \ + (self)->capacity = 0; \ + } while (0) /// Push a new `element` onto the end of the array. -#define array_push(self, element) \ - (_array__grow((Array *)(self), 1, array_elem_size(self)), \ - (self)->contents[(self)->size++] = (element)) +#define array_push(self, element) \ + do { \ + (self)->contents = _array__grow( \ + (void *)(self)->contents, (self)->size, &(self)->capacity, \ + 1, array_elem_size(self) \ + ); \ + (self)->contents[(self)->size++] = (element); \ + } while(0) /// Increase the array's size by `count` elements. /// New elements are zero-initialized. -#define array_grow_by(self, count) \ - do { \ - if ((count) == 0) break; \ - _array__grow((Array *)(self), count, array_elem_size(self)); \ +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + (self)->contents = _array__grow( \ + (self)->contents, (self)->size, &(self)->capacity, \ + count, array_elem_size(self) \ + ); \ memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ - (self)->size += (count); \ + (self)->size += (count); \ } while (0) /// Append all elements from one array to the end of another. -#define array_push_all(self, other) \ +#define array_push_all(self, other) \ array_extend((self), (other)->size, (other)->contents) /// Append `count` elements to the end of the array, reading their values from the /// `contents` pointer. -#define array_extend(self, count, contents) \ - _array__splice( \ - (Array *)(self), array_elem_size(self), (self)->size, \ - 0, count, contents \ +#define array_extend(self, count, other_contents) \ + (self)->contents = _array__splice( \ + (void*)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), (self)->size, 0, count, other_contents \ ) /// Remove `old_count` elements from the array starting at the given `index`. At /// the same index, insert `new_count` new elements, reading their values from the /// `new_contents` pointer. -#define array_splice(self, _index, old_count, new_count, new_contents) \ - _array__splice( \ - (Array *)(self), array_elem_size(self), _index, \ - old_count, new_count, new_contents \ +#define array_splice(self, _index, old_count, new_count, new_contents) \ + (self)->contents = _array__splice( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), _index, old_count, new_count, new_contents \ ) /// Insert one `element` into the array at the given `index`. -#define array_insert(self, _index, element) \ - _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) +#define array_insert(self, _index, element) \ + (self)->contents = _array__splice( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), _index, 0, 1, &(element) \ + ) /// Remove one element from the array at the given `index`. #define array_erase(self, _index) \ - _array__erase((Array *)(self), array_elem_size(self), _index) + _array__erase((void *)(self)->contents, &(self)->size, array_elem_size(self), _index) /// Pop the last element off the array, returning the element by value. #define array_pop(self) ((self)->contents[--(self)->size]) /// Assign the contents of one array to another, reallocating if necessary. -#define array_assign(self, other) \ - _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) +#define array_assign(self, other) \ + (self)->contents = _array__assign( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + (const void *)(other)->contents, (other)->size, array_elem_size(self) \ + ) /// Swap one array with another -#define array_swap(self, other) \ - _array__swap((Array *)(self), (Array *)(other)) +#define array_swap(self, other) \ + do { \ + void *_array_swap_tmp = (void *)(self)->contents; \ + (self)->contents = (other)->contents; \ + (other)->contents = _array_swap_tmp; \ + _array__swap(&(self)->size, &(self)->capacity, \ + &(other)->size, &(other)->capacity); \ + } while (0) /// Get the size of the array contents #define array_elem_size(self) (sizeof *(self)->contents) @@ -157,82 +186,90 @@ extern "C" { // Private -typedef Array(void) Array; - -/// This is not what you're looking for, see `array_delete`. -static inline void _array__delete(Array *self) { - if (self->contents) { - ts_free(self->contents); - self->contents = NULL; - self->size = 0; - self->capacity = 0; - } -} +// Pointers to individual `Array` fields (rather than the entire `Array` itself) +// are passed to the various `_array__*` functions below to address strict aliasing +// violations that arises when the _entire_ `Array` struct is passed as `Array(void)*`. +// +// The `Array` type itself was not altered as a solution in order to avoid breakage +// with existing consumers (in particular, parsers with external scanners). /// This is not what you're looking for, see `array_erase`. -static inline void _array__erase(Array *self, size_t element_size, - uint32_t index) { - assert(index < self->size); - char *contents = (char *)self->contents; +static inline void _array__erase(void* self_contents, uint32_t *size, + size_t element_size, uint32_t index) { + assert(index < *size); + char *contents = (char *)self_contents; memmove(contents + index * element_size, contents + (index + 1) * element_size, - (self->size - index - 1) * element_size); - self->size--; + (*size - index - 1) * element_size); + (*size)--; } /// This is not what you're looking for, see `array_reserve`. -static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { - if (new_capacity > self->capacity) { - if (self->contents) { - self->contents = ts_realloc(self->contents, new_capacity * element_size); +static inline void *_array__reserve(void *contents, uint32_t *capacity, + size_t element_size, uint32_t new_capacity) { + void *new_contents = contents; + if (new_capacity > *capacity) { + if (contents) { + new_contents = ts_realloc(contents, new_capacity * element_size); } else { - self->contents = ts_malloc(new_capacity * element_size); + new_contents = ts_malloc(new_capacity * element_size); } - self->capacity = new_capacity; + *capacity = new_capacity; } + return new_contents; } /// This is not what you're looking for, see `array_assign`. -static inline void _array__assign(Array *self, const Array *other, size_t element_size) { - _array__reserve(self, element_size, other->size); - self->size = other->size; - memcpy(self->contents, other->contents, self->size * element_size); +static inline void *_array__assign(void* self_contents, uint32_t *self_size, uint32_t *self_capacity, + const void *other_contents, uint32_t other_size, size_t element_size) { + void *new_contents = _array__reserve(self_contents, self_capacity, element_size, other_size); + *self_size = other_size; + memcpy(new_contents, other_contents, *self_size * element_size); + return new_contents; } /// This is not what you're looking for, see `array_swap`. -static inline void _array__swap(Array *self, Array *other) { - Array swap = *other; - *other = *self; - *self = swap; +static inline void _array__swap(uint32_t *self_size, uint32_t *self_capacity, + uint32_t *other_size, uint32_t *other_capacity) { + uint32_t tmp_size = *self_size; + uint32_t tmp_capacity = *self_capacity; + *self_size = *other_size; + *self_capacity = *other_capacity; + *other_size = tmp_size; + *other_capacity = tmp_capacity; } /// This is not what you're looking for, see `array_push` or `array_grow_by`. -static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { - uint32_t new_size = self->size + count; - if (new_size > self->capacity) { - uint32_t new_capacity = self->capacity * 2; +static inline void *_array__grow(void *contents, uint32_t size, uint32_t *capacity, + uint32_t count, size_t element_size) { + void *new_contents = contents; + uint32_t new_size = size + count; + if (new_size > *capacity) { + uint32_t new_capacity = *capacity * 2; if (new_capacity < 8) new_capacity = 8; if (new_capacity < new_size) new_capacity = new_size; - _array__reserve(self, element_size, new_capacity); + new_contents = _array__reserve(contents, capacity, element_size, new_capacity); } + return new_contents; } /// This is not what you're looking for, see `array_splice`. -static inline void _array__splice(Array *self, size_t element_size, +static inline void *_array__splice(void *self_contents, uint32_t *size, uint32_t *capacity, + size_t element_size, uint32_t index, uint32_t old_count, uint32_t new_count, const void *elements) { - uint32_t new_size = self->size + new_count - old_count; + uint32_t new_size = *size + new_count - old_count; uint32_t old_end = index + old_count; uint32_t new_end = index + new_count; - assert(old_end <= self->size); + assert(old_end <= *size); - _array__reserve(self, element_size, new_size); + void *new_contents = _array__reserve(self_contents, capacity, element_size, new_size); - char *contents = (char *)self->contents; - if (self->size > old_end) { + char *contents = (char *)new_contents; + if (*size > old_end) { memmove( contents + new_end * element_size, contents + old_end * element_size, - (self->size - old_end) * element_size + (*size - old_end) * element_size ); } if (new_count > 0) { @@ -250,7 +287,9 @@ static inline void _array__splice(Array *self, size_t element_size, ); } } - self->size += new_count - old_count; + *size += new_count - old_count; + + return new_contents; } /// A binary search routine, based on Rust's `std::slice::binary_search_by`. diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index bed24104..2bbfcb80 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -1217,6 +1217,36 @@ a ?. b; (optional_chain) (property_identifier)))) +============================================ +Optional chaining with reserved words +============================================ + +a?.delete(b); +a?.class; +a?.return; + +--- + +(program + (expression_statement + (call_expression + (member_expression + (identifier) + (optional_chain) + (property_identifier)) + (arguments + (identifier)))) + (expression_statement + (member_expression + (identifier) + (optional_chain) + (property_identifier))) + (expression_statement + (member_expression + (identifier) + (optional_chain) + (property_identifier)))) + ============================================ Optional chaining array access ============================================ From 7676a3c5b7fd6e38395df374b01645c83f9f8275 Mon Sep 17 00:00:00 2001 From: Bobby Bonestell Date: Fri, 6 Mar 2026 17:18:58 -0700 Subject: [PATCH 2/2] ci: fix node binding tests Add tree-sitter to devDependencies (required by bindings/node/binding_test.js) and pin node-version to 22 (tree-sitter@0.25.0 cannot compile with Node 24). --- .github/workflows/ci.yml | 1 + package.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3edade8c..edaa82d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,6 +43,7 @@ jobs: with: test-rust: true test-node: true + node-version: 22 test-python: true test-go: true test-swift: true diff --git a/package.json b/package.json index 0ddac43a..2a52fbdc 100644 --- a/package.json +++ b/package.json @@ -40,6 +40,7 @@ "eslint": "^9.14.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", + "tree-sitter": "^0.25.0", "tree-sitter-cli": "^0.25.8" }, "peerDependencies": {