From d48469ff3da66ff43d9df7acc2218a6292078b81 Mon Sep 17 00:00:00 2001 From: jackschu Date: Tue, 27 May 2025 23:11:25 -0400 Subject: [PATCH 1/2] ci(test): don't validate generation, needed while on ABI 14 and action v2 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75d4ac42..cba319d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,7 @@ jobs: - name: Run tests uses: tree-sitter/parser-test-action@v2 with: + generate: false # TODO: upgrade ABI, while on ABI 14 it is impossible to pass this check test-rust: true test-node: true test-python: true From 0df01ff6d6ce2d57aab4ba4a91baa5decf7481a6 Mon Sep 17 00:00:00 2001 From: jackschu Date: Tue, 27 May 2025 23:11:48 -0400 Subject: [PATCH 2/2] fix!: correct ASI for arrow function followed by parenthesized expressions. arrow_functions are now expressions rather than primary_expressions and new_expressions are now primary_expressions, go ahead and correct ASI for phrases preceeding [, {, ( since arrow functions motivation the last one --- grammar.js | 53 +- src/grammar.json | 248 +- src/node-types.json | 30 +- src/parser.c | 138825 ++++++++++++++----------- src/scanner.c | 67 +- src/tree_sitter/array.h | 3 +- src/tree_sitter/parser.h | 34 +- test/corpus/semicolon_insertion.txt | 32 + 8 files changed, 77806 insertions(+), 61486 deletions(-) diff --git a/grammar.js b/grammar.js index 3311b300..f3d21af7 100644 --- a/grammar.js +++ b/grammar.js @@ -15,8 +15,13 @@ module.exports = grammar({ $._automatic_semicolon, $._template_chars, $._ternary_qmark, + $._shorthand_arrow, $.html_comment, + // we use these just as signaling to the ASI scanner '||', + '(', + '[', + '{', // We use escape sequence and regex pattern to tell the scanner if we're currently inside a string or template string, in which case // it should NOT parse html comments. $.escape_sequence, @@ -58,7 +63,6 @@ module.exports = grammar({ precedences: $ => [ [ 'member', - 'template_call', 'call', $.update_expression, 'unary_void', @@ -78,8 +82,9 @@ module.exports = grammar({ $.sequence_expression, $.arrow_function, ], + ['new', $.primary_expression], ['assign', $.primary_expression], - ['member', 'template_call', 'new', 'call', $.expression], + ['member', 'new_args', 'call', 'new_no_args', $.expression], ['declaration', 'literal'], [$.primary_expression, $.statement_block, 'object'], [$.meta_property, $.import], @@ -488,12 +493,14 @@ module.exports = grammar({ $.binary_expression, $.ternary_expression, $.update_expression, - $.new_expression, $.yield_expression, + $.arrow_function, ), + // Note: this is similar to MemberExpression from the ecmascript spec primary_expression: $ => choice( $.subscript_expression, + $.new_expression, $.member_expression, $.parenthesized_expression, $._identifier, @@ -510,7 +517,6 @@ module.exports = grammar({ $.object, $.array, $.function_expression, - $.arrow_function, $.generator_function, $.class, $.meta_property, @@ -768,11 +774,16 @@ module.exports = grammar({ )), $._call_signature, ), - '=>', - field('body', choice( - $.expression, - $.statement_block, - )), + choice( + seq( + alias($._shorthand_arrow, '=>'), + field('body', $.expression), + ), + seq( + choice('=>', alias($._shorthand_arrow, '=>')), + field('body', $.statement_block), + ), + ), ), // Override @@ -783,12 +794,8 @@ module.exports = grammar({ call_expression: $ => choice( prec('call', seq( - field('function', choice($.expression, $.import)), - field('arguments', $.arguments), - )), - prec('template_call', seq( - field('function', choice($.primary_expression, $.new_expression)), - field('arguments', $.template_string), + field('function', choice($.primary_expression, $.import)), + field('arguments', choice($.arguments, $.template_string)), )), prec('member', seq( field('function', $.primary_expression), @@ -797,11 +804,17 @@ module.exports = grammar({ )), ), - new_expression: $ => prec.right('new', seq( - 'new', - field('constructor', choice($.primary_expression, $.new_expression)), - field('arguments', optional(prec.dynamic(1, $.arguments))), - )), + new_expression: $ => choice( + prec('new_args', seq( + 'new', + field('constructor', $.primary_expression), + field('arguments', $.arguments), + )), + prec('new_no_args', seq( + 'new', + field('constructor', $.primary_expression), + )), + ), await_expression: $ => prec('unary_void', seq( 'await', diff --git a/src/grammar.json b/src/grammar.json index a662e58f..e1e460b0 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1755,11 +1755,11 @@ }, { "type": "SYMBOL", - "name": "new_expression" + "name": "yield_expression" }, { "type": "SYMBOL", - "name": "yield_expression" + "name": "arrow_function" } ] }, @@ -1770,6 +1770,10 @@ "type": "SYMBOL", "name": "subscript_expression" }, + { + "type": "SYMBOL", + "name": "new_expression" + }, { "type": "SYMBOL", "name": "member_expression" @@ -1839,10 +1843,6 @@ "type": "SYMBOL", "name": "function_expression" }, - { - "type": "SYMBOL", - "name": "arrow_function" - }, { "type": "SYMBOL", "name": "generator_function" @@ -3306,25 +3306,62 @@ ] }, { - "type": "STRING", - "value": "=>" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "statement_block" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_shorthand_arrow" + }, + "named": false, + "value": "=>" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=>" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_shorthand_arrow" + }, + "named": false, + "value": "=>" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + } + ] } ] }, @@ -3370,7 +3407,7 @@ "members": [ { "type": "SYMBOL", - "name": "expression" + "name": "primary_expression" }, { "type": "SYMBOL", @@ -3382,44 +3419,19 @@ { "type": "FIELD", "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "arguments" - } - } - ] - } - }, - { - "type": "PREC", - "value": "template_call", - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "function", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "primary_expression" + "name": "arguments" }, { "type": "SYMBOL", - "name": "new_expression" + "name": "template_string" } ] } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "template_string" - } } ] } @@ -3460,54 +3472,59 @@ ] }, "new_expression": { - "type": "PREC_RIGHT", - "value": "new", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "new" - }, - { - "type": "FIELD", - "name": "constructor", - "content": { - "type": "CHOICE", - "members": [ - { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": "new_args", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "new" + }, + { + "type": "FIELD", + "name": "constructor", + "content": { "type": "SYMBOL", "name": "primary_expression" - }, - { + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { "type": "SYMBOL", - "name": "new_expression" + "name": "arguments" } - ] - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "SYMBOL", - "name": "arguments" - } - }, - { - "type": "BLANK" + } + ] + } + }, + { + "type": "PREC", + "value": "new_no_args", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "new" + }, + { + "type": "FIELD", + "name": "constructor", + "content": { + "type": "SYMBOL", + "name": "primary_expression" } - ] - } + } + ] } - ] - } + } + ] }, "await_expression": { "type": "PREC", @@ -6697,10 +6714,6 @@ "type": "STRING", "value": "member" }, - { - "type": "STRING", - "value": "template_call" - }, { "type": "STRING", "value": "call" @@ -6774,6 +6787,16 @@ "name": "arrow_function" } ], + [ + { + "type": "STRING", + "value": "new" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], [ { "type": "STRING", @@ -6791,15 +6814,15 @@ }, { "type": "STRING", - "value": "template_call" + "value": "new_args" }, { "type": "STRING", - "value": "new" + "value": "call" }, { "type": "STRING", - "value": "call" + "value": "new_no_args" }, { "type": "SYMBOL", @@ -6884,6 +6907,10 @@ "type": "SYMBOL", "name": "_ternary_qmark" }, + { + "type": "SYMBOL", + "name": "_shorthand_arrow" + }, { "type": "SYMBOL", "name": "html_comment" @@ -6892,6 +6919,18 @@ "type": "STRING", "value": "||" }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "{" + }, { "type": "SYMBOL", "name": "escape_sequence" @@ -6927,5 +6966,6 @@ "expression", "primary_expression", "pattern" - ] -} + ], + "reserved": {} +} \ No newline at end of file diff --git a/src/node-types.json b/src/node-types.json index 7f751b3e..9addfb92 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -29,6 +29,10 @@ "type": "expression", "named": true, "subtypes": [ + { + "type": "arrow_function", + "named": true + }, { "type": "assignment_expression", "named": true @@ -53,10 +57,6 @@ "type": "jsx_self_closing_element", "named": true }, - { - "type": "new_expression", - "named": true - }, { "type": "primary_expression", "named": true @@ -121,10 +121,6 @@ "type": "array", "named": true }, - { - "type": "arrow_function", - "named": true - }, { "type": "call_expression", "named": true @@ -157,6 +153,10 @@ "type": "meta_property", "named": true }, + { + "type": "new_expression", + "named": true + }, { "type": "null", "named": true @@ -760,11 +760,11 @@ "required": true, "types": [ { - "type": "expression", + "type": "import", "named": true }, { - "type": "import", + "type": "primary_expression", "named": true } ] @@ -2208,10 +2208,6 @@ "multiple": false, "required": true, "types": [ - { - "type": "new_expression", - "named": true - }, { "type": "primary_expression", "named": true @@ -3297,7 +3293,8 @@ }, { "type": "comment", - "named": true + "named": true, + "extra": true }, { "type": "const", @@ -3373,7 +3370,8 @@ }, { "type": "html_comment", - "named": true + "named": true, + "extra": true }, { "type": "identifier", diff --git a/src/parser.c b/src/parser.c index fe2d3a63..7776ed35 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,3 +1,5 @@ +/* Automatically @generated by tree-sitter v0.25.4 (726dcd1e872149d95de581589fc408fb8ea9cb0b) */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) @@ -5,15 +7,17 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1722 -#define LARGE_STATE_COUNT 326 -#define SYMBOL_COUNT 259 +#define STATE_COUNT 2238 +#define LARGE_STATE_COUNT 389 +#define SYMBOL_COUNT 260 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 133 -#define EXTERNAL_TOKEN_COUNT 8 +#define TOKEN_COUNT 134 +#define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 36 #define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 111 +#define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { sym_identifier = 1, @@ -146,138 +150,139 @@ enum ts_symbol_identifiers { sym__automatic_semicolon = 128, sym__template_chars = 129, sym__ternary_qmark = 130, - sym_html_comment = 131, - sym_jsx_text = 132, - sym_program = 133, - sym_export_statement = 134, - sym_namespace_export = 135, - sym_export_clause = 136, - sym_export_specifier = 137, - sym__module_export_name = 138, - sym_declaration = 139, - sym_import = 140, - sym_import_statement = 141, - sym_import_clause = 142, - sym__from_clause = 143, - sym_namespace_import = 144, - sym_named_imports = 145, - sym_import_specifier = 146, - sym_import_attribute = 147, - sym_statement = 148, - sym_expression_statement = 149, - sym_variable_declaration = 150, - sym_lexical_declaration = 151, - sym_variable_declarator = 152, - sym_statement_block = 153, - sym_else_clause = 154, - sym_if_statement = 155, - sym_switch_statement = 156, - sym_for_statement = 157, - sym_for_in_statement = 158, - sym__for_header = 159, - sym_while_statement = 160, - sym_do_statement = 161, - sym_try_statement = 162, - sym_with_statement = 163, - sym_break_statement = 164, - sym_continue_statement = 165, - sym_debugger_statement = 166, - sym_return_statement = 167, - sym_throw_statement = 168, - sym_empty_statement = 169, - sym_labeled_statement = 170, - sym_switch_body = 171, - sym_switch_case = 172, - sym_switch_default = 173, - sym_catch_clause = 174, - sym_finally_clause = 175, - sym_parenthesized_expression = 176, - sym_expression = 177, - sym_primary_expression = 178, - sym_yield_expression = 179, - sym_object = 180, - sym_object_pattern = 181, - sym_assignment_pattern = 182, - sym_object_assignment_pattern = 183, - sym_array = 184, - sym_array_pattern = 185, - sym_jsx_element = 186, - sym_jsx_expression = 187, - sym_jsx_opening_element = 188, - sym_nested_identifier = 189, - sym_jsx_namespace_name = 190, - sym_jsx_closing_element = 191, - sym_jsx_self_closing_element = 192, - sym_jsx_attribute = 193, - sym__jsx_string = 194, - sym_class = 195, - sym_class_declaration = 196, - sym_class_heritage = 197, - sym_function_expression = 198, - sym_function_declaration = 199, - sym_generator_function = 200, - sym_generator_function_declaration = 201, - sym_arrow_function = 202, - sym_call_expression = 203, - sym_new_expression = 204, - sym_await_expression = 205, - sym_member_expression = 206, - sym_subscript_expression = 207, - sym_assignment_expression = 208, - sym__augmented_assignment_lhs = 209, - sym_augmented_assignment_expression = 210, - sym__initializer = 211, - sym__destructuring_pattern = 212, - sym_spread_element = 213, - sym_ternary_expression = 214, - sym_binary_expression = 215, - sym_unary_expression = 216, - sym_update_expression = 217, - sym_sequence_expression = 218, - sym_string = 219, - sym_template_string = 220, - sym_template_substitution = 221, - sym_regex = 222, - sym_meta_property = 223, - sym_arguments = 224, - sym_decorator = 225, - sym_decorator_member_expression = 226, - sym_decorator_call_expression = 227, - sym_class_body = 228, - sym_field_definition = 229, - sym_formal_parameters = 230, - sym_class_static_block = 231, - sym_pattern = 232, - sym_rest_pattern = 233, - sym_method_definition = 234, - sym_pair = 235, - sym_pair_pattern = 236, - sym__property_name = 237, - sym_computed_property_name = 238, - aux_sym_program_repeat1 = 239, - aux_sym_export_statement_repeat1 = 240, - aux_sym_export_clause_repeat1 = 241, - aux_sym_named_imports_repeat1 = 242, - aux_sym_variable_declaration_repeat1 = 243, - aux_sym_switch_body_repeat1 = 244, - aux_sym_object_repeat1 = 245, - aux_sym_object_pattern_repeat1 = 246, - aux_sym_array_repeat1 = 247, - aux_sym_array_pattern_repeat1 = 248, - aux_sym_jsx_element_repeat1 = 249, - aux_sym_jsx_opening_element_repeat1 = 250, - aux_sym__jsx_string_repeat1 = 251, - aux_sym__jsx_string_repeat2 = 252, - aux_sym_sequence_expression_repeat1 = 253, - aux_sym_string_repeat1 = 254, - aux_sym_string_repeat2 = 255, - aux_sym_template_string_repeat1 = 256, - aux_sym_class_body_repeat1 = 257, - aux_sym_formal_parameters_repeat1 = 258, - alias_sym_property_identifier = 259, - alias_sym_shorthand_property_identifier = 260, - alias_sym_shorthand_property_identifier_pattern = 261, - alias_sym_statement_identifier = 262, + sym__shorthand_arrow = 131, + sym_html_comment = 132, + sym_jsx_text = 133, + sym_program = 134, + sym_export_statement = 135, + sym_namespace_export = 136, + sym_export_clause = 137, + sym_export_specifier = 138, + sym__module_export_name = 139, + sym_declaration = 140, + sym_import = 141, + sym_import_statement = 142, + sym_import_clause = 143, + sym__from_clause = 144, + sym_namespace_import = 145, + sym_named_imports = 146, + sym_import_specifier = 147, + sym_import_attribute = 148, + sym_statement = 149, + sym_expression_statement = 150, + sym_variable_declaration = 151, + sym_lexical_declaration = 152, + sym_variable_declarator = 153, + sym_statement_block = 154, + sym_else_clause = 155, + sym_if_statement = 156, + sym_switch_statement = 157, + sym_for_statement = 158, + sym_for_in_statement = 159, + sym__for_header = 160, + sym_while_statement = 161, + sym_do_statement = 162, + sym_try_statement = 163, + sym_with_statement = 164, + sym_break_statement = 165, + sym_continue_statement = 166, + sym_debugger_statement = 167, + sym_return_statement = 168, + sym_throw_statement = 169, + sym_empty_statement = 170, + sym_labeled_statement = 171, + sym_switch_body = 172, + sym_switch_case = 173, + sym_switch_default = 174, + sym_catch_clause = 175, + sym_finally_clause = 176, + sym_parenthesized_expression = 177, + sym_expression = 178, + sym_primary_expression = 179, + sym_yield_expression = 180, + sym_object = 181, + sym_object_pattern = 182, + sym_assignment_pattern = 183, + sym_object_assignment_pattern = 184, + sym_array = 185, + sym_array_pattern = 186, + sym_jsx_element = 187, + sym_jsx_expression = 188, + sym_jsx_opening_element = 189, + sym_nested_identifier = 190, + sym_jsx_namespace_name = 191, + sym_jsx_closing_element = 192, + sym_jsx_self_closing_element = 193, + sym_jsx_attribute = 194, + sym__jsx_string = 195, + sym_class = 196, + sym_class_declaration = 197, + sym_class_heritage = 198, + sym_function_expression = 199, + sym_function_declaration = 200, + sym_generator_function = 201, + sym_generator_function_declaration = 202, + sym_arrow_function = 203, + sym_call_expression = 204, + sym_new_expression = 205, + sym_await_expression = 206, + sym_member_expression = 207, + sym_subscript_expression = 208, + sym_assignment_expression = 209, + sym__augmented_assignment_lhs = 210, + sym_augmented_assignment_expression = 211, + sym__initializer = 212, + sym__destructuring_pattern = 213, + sym_spread_element = 214, + sym_ternary_expression = 215, + sym_binary_expression = 216, + sym_unary_expression = 217, + sym_update_expression = 218, + sym_sequence_expression = 219, + sym_string = 220, + sym_template_string = 221, + sym_template_substitution = 222, + sym_regex = 223, + sym_meta_property = 224, + sym_arguments = 225, + sym_decorator = 226, + sym_decorator_member_expression = 227, + sym_decorator_call_expression = 228, + sym_class_body = 229, + sym_field_definition = 230, + sym_formal_parameters = 231, + sym_class_static_block = 232, + sym_pattern = 233, + sym_rest_pattern = 234, + sym_method_definition = 235, + sym_pair = 236, + sym_pair_pattern = 237, + sym__property_name = 238, + sym_computed_property_name = 239, + aux_sym_program_repeat1 = 240, + aux_sym_export_statement_repeat1 = 241, + aux_sym_export_clause_repeat1 = 242, + aux_sym_named_imports_repeat1 = 243, + aux_sym_variable_declaration_repeat1 = 244, + aux_sym_switch_body_repeat1 = 245, + aux_sym_object_repeat1 = 246, + aux_sym_object_pattern_repeat1 = 247, + aux_sym_array_repeat1 = 248, + aux_sym_array_pattern_repeat1 = 249, + aux_sym_jsx_element_repeat1 = 250, + aux_sym_jsx_opening_element_repeat1 = 251, + aux_sym__jsx_string_repeat1 = 252, + aux_sym__jsx_string_repeat2 = 253, + aux_sym_sequence_expression_repeat1 = 254, + aux_sym_string_repeat1 = 255, + aux_sym_string_repeat2 = 256, + aux_sym_template_string_repeat1 = 257, + aux_sym_class_body_repeat1 = 258, + aux_sym_formal_parameters_repeat1 = 259, + alias_sym_property_identifier = 260, + alias_sym_shorthand_property_identifier = 261, + alias_sym_shorthand_property_identifier_pattern = 262, + alias_sym_statement_identifier = 263, }; static const char * const ts_symbol_names[] = { @@ -412,6 +417,7 @@ static const char * const ts_symbol_names[] = { [sym__automatic_semicolon] = "_automatic_semicolon", [sym__template_chars] = "string_fragment", [sym__ternary_qmark] = "\?", + [sym__shorthand_arrow] = "=>", [sym_html_comment] = "html_comment", [sym_jsx_text] = "jsx_text", [sym_program] = "program", @@ -678,6 +684,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__automatic_semicolon] = sym__automatic_semicolon, [sym__template_chars] = sym__template_chars, [sym__ternary_qmark] = sym__ternary_qmark, + [sym__shorthand_arrow] = anon_sym_EQ_GT, [sym_html_comment] = sym_html_comment, [sym_jsx_text] = sym_jsx_text, [sym_program] = sym_program, @@ -1337,6 +1344,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym__shorthand_arrow] = { + .visible = true, + .named = false, + }, [sym_html_comment] = { .visible = true, .named = true, @@ -1951,7 +1962,7 @@ static const char * const ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [5] = {.index = 2, .length = 1}, @@ -1962,8 +1973,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [10] = {.index = 9, .length = 2}, [11] = {.index = 11, .length = 2}, [12] = {.index = 13, .length = 2}, - [13] = {.index = 15, .length = 1}, - [14] = {.index = 16, .length = 2}, + [13] = {.index = 15, .length = 2}, + [14] = {.index = 17, .length = 1}, [15] = {.index = 18, .length = 2}, [16] = {.index = 20, .length = 2}, [20] = {.index = 22, .length = 1}, @@ -1986,7 +1997,7 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [37] = {.index = 52, .length = 2}, [38] = {.index = 54, .length = 2}, [39] = {.index = 56, .length = 1}, - [40] = {.index = 18, .length = 2}, + [40] = {.index = 15, .length = 2}, [41] = {.index = 20, .length = 2}, [42] = {.index = 57, .length = 3}, [43] = {.index = 60, .length = 2}, @@ -2000,7 +2011,7 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [51] = {.index = 74, .length = 2}, [52] = {.index = 76, .length = 1}, [53] = {.index = 77, .length = 1}, - [54] = {.index = 18, .length = 2}, + [54] = {.index = 20, .length = 2}, [55] = {.index = 78, .length = 2}, [56] = {.index = 80, .length = 3}, [57] = {.index = 83, .length = 1}, @@ -2086,16 +2097,16 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_decorator, 0, .inherited = true}, {field_decorator, 1, .inherited = true}, [15] = + {field_body, 2}, + {field_parameter, 0}, + [17] = {field_declaration, 2}, - [16] = + [18] = {field_body, 2}, {field_label, 0}, - [18] = + [20] = {field_left, 0}, {field_right, 2}, - [20] = - {field_body, 2}, - {field_parameter, 0}, [22] = {field_source, 1}, [23] = @@ -2399,11 +2410,11 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [4] = { [0] = alias_sym_property_identifier, }, - [14] = { - [0] = alias_sym_statement_identifier, + [13] = { + [0] = sym_identifier, }, [15] = { - [0] = sym_identifier, + [0] = alias_sym_statement_identifier, }, [16] = { [0] = sym_identifier, @@ -2449,404 +2460,404 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 2, [5] = 2, [6] = 2, - [7] = 7, + [7] = 2, [8] = 8, [9] = 9, [10] = 10, [11] = 11, [12] = 12, [13] = 13, - [14] = 12, + [14] = 13, [15] = 15, - [16] = 12, - [17] = 15, - [18] = 18, - [19] = 15, - [20] = 20, - [21] = 12, - [22] = 15, - [23] = 15, - [24] = 12, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 30, - [31] = 30, - [32] = 32, - [33] = 27, - [34] = 28, - [35] = 25, - [36] = 36, - [37] = 37, - [38] = 29, + [16] = 13, + [17] = 17, + [18] = 13, + [19] = 17, + [20] = 17, + [21] = 13, + [22] = 17, + [23] = 23, + [24] = 13, + [25] = 17, + [26] = 13, + [27] = 17, + [28] = 13, + [29] = 17, + [30] = 13, + [31] = 17, + [32] = 13, + [33] = 17, + [34] = 13, + [35] = 17, + [36] = 13, + [37] = 17, + [38] = 17, [39] = 39, - [40] = 37, + [40] = 40, [41] = 41, [42] = 42, [43] = 43, [44] = 44, - [45] = 26, - [46] = 39, + [45] = 45, + [46] = 46, [47] = 47, [48] = 48, - [49] = 41, - [50] = 32, - [51] = 42, - [52] = 36, - [53] = 43, - [54] = 44, - [55] = 48, + [49] = 49, + [50] = 50, + [51] = 51, + [52] = 52, + [53] = 41, + [54] = 42, + [55] = 43, [56] = 56, - [57] = 56, - [58] = 56, - [59] = 56, - [60] = 56, - [61] = 61, - [62] = 62, - [63] = 63, - [64] = 64, - [65] = 65, - [66] = 66, - [67] = 67, - [68] = 68, - [69] = 69, - [70] = 70, - [71] = 71, + [57] = 44, + [58] = 48, + [59] = 59, + [60] = 60, + [61] = 46, + [62] = 49, + [63] = 59, + [64] = 56, + [65] = 52, + [66] = 47, + [67] = 60, + [68] = 50, + [69] = 51, + [70] = 45, + [71] = 40, [72] = 72, - [73] = 73, - [74] = 74, - [75] = 75, - [76] = 76, - [77] = 77, - [78] = 76, - [79] = 76, - [80] = 76, - [81] = 76, - [82] = 76, + [73] = 72, + [74] = 72, + [75] = 72, + [76] = 72, + [77] = 72, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, [83] = 83, [84] = 84, - [85] = 84, - [86] = 83, + [85] = 85, + [86] = 86, [87] = 87, - [88] = 87, + [88] = 88, [89] = 89, [90] = 90, [91] = 91, - [92] = 89, + [92] = 92, [93] = 93, [94] = 93, [95] = 95, - [96] = 96, - [97] = 97, - [98] = 98, - [99] = 96, - [100] = 100, - [101] = 96, + [96] = 93, + [97] = 93, + [98] = 93, + [99] = 93, + [100] = 93, + [101] = 101, [102] = 102, - [103] = 103, - [104] = 104, - [105] = 104, + [103] = 101, + [104] = 102, + [105] = 105, [106] = 106, - [107] = 107, + [107] = 105, [108] = 108, [109] = 109, - [110] = 110, - [111] = 110, - [112] = 108, + [110] = 109, + [111] = 106, + [112] = 112, [113] = 113, - [114] = 114, - [115] = 115, - [116] = 115, + [114] = 112, + [115] = 112, + [116] = 116, [117] = 117, - [118] = 118, - [119] = 118, - [120] = 113, - [121] = 117, - [122] = 122, - [123] = 123, - [124] = 124, + [118] = 117, + [119] = 116, + [120] = 120, + [121] = 121, + [122] = 121, + [123] = 120, + [124] = 116, [125] = 125, - [126] = 126, - [127] = 127, - [128] = 122, - [129] = 122, + [126] = 116, + [127] = 116, + [128] = 128, + [129] = 129, [130] = 130, [131] = 131, - [132] = 132, + [132] = 130, [133] = 133, - [134] = 132, - [135] = 135, - [136] = 131, - [137] = 137, - [138] = 132, + [134] = 134, + [135] = 134, + [136] = 136, + [137] = 133, + [138] = 136, [139] = 139, [140] = 140, [141] = 141, - [142] = 125, - [143] = 131, - [144] = 123, - [145] = 126, - [146] = 127, - [147] = 127, - [148] = 148, - [149] = 124, - [150] = 140, - [151] = 125, - [152] = 126, - [153] = 127, + [142] = 140, + [143] = 143, + [144] = 144, + [145] = 143, + [146] = 140, + [147] = 140, + [148] = 144, + [149] = 149, + [150] = 139, + [151] = 141, + [152] = 152, + [153] = 153, [154] = 154, - [155] = 155, - [156] = 122, - [157] = 155, - [158] = 148, - [159] = 123, - [160] = 124, - [161] = 125, - [162] = 131, + [155] = 153, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 159, + [161] = 161, + [162] = 153, [163] = 163, - [164] = 124, + [164] = 156, [165] = 165, - [166] = 123, - [167] = 124, - [168] = 125, - [169] = 126, - [170] = 127, - [171] = 122, - [172] = 131, - [173] = 126, - [174] = 123, - [175] = 175, + [166] = 166, + [167] = 152, + [168] = 168, + [169] = 158, + [170] = 166, + [171] = 156, + [172] = 166, + [173] = 152, + [174] = 153, + [175] = 158, [176] = 176, [177] = 177, [178] = 178, [179] = 179, - [180] = 180, - [181] = 181, - [182] = 182, - [183] = 183, - [184] = 176, - [185] = 185, - [186] = 186, + [180] = 159, + [181] = 161, + [182] = 179, + [183] = 158, + [184] = 158, + [185] = 165, + [186] = 159, [187] = 187, - [188] = 188, - [189] = 189, + [188] = 161, + [189] = 161, [190] = 190, - [191] = 191, - [192] = 192, - [193] = 193, + [191] = 156, + [192] = 166, + [193] = 152, [194] = 194, - [195] = 195, - [196] = 196, - [197] = 197, - [198] = 198, - [199] = 179, - [200] = 181, - [201] = 201, - [202] = 175, - [203] = 182, - [204] = 183, - [205] = 185, - [206] = 186, - [207] = 187, - [208] = 188, - [209] = 189, - [210] = 190, - [211] = 191, - [212] = 192, - [213] = 193, - [214] = 194, - [215] = 195, - [216] = 196, - [217] = 198, + [195] = 161, + [196] = 156, + [197] = 165, + [198] = 187, + [199] = 194, + [200] = 165, + [201] = 152, + [202] = 166, + [203] = 153, + [204] = 187, + [205] = 194, + [206] = 158, + [207] = 159, + [208] = 161, + [209] = 156, + [210] = 166, + [211] = 152, + [212] = 153, + [213] = 159, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, [218] = 218, [219] = 219, [220] = 220, - [221] = 178, + [221] = 221, [222] = 222, [223] = 223, [224] = 224, - [225] = 219, - [226] = 219, - [227] = 222, + [225] = 225, + [226] = 226, + [227] = 227, [228] = 228, - [229] = 179, - [230] = 181, - [231] = 201, - [232] = 182, - [233] = 183, - [234] = 185, - [235] = 187, - [236] = 188, - [237] = 189, - [238] = 190, - [239] = 191, - [240] = 192, - [241] = 193, - [242] = 194, - [243] = 195, - [244] = 196, - [245] = 198, - [246] = 178, - [247] = 222, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 215, + [237] = 216, + [238] = 217, + [239] = 218, + [240] = 219, + [241] = 220, + [242] = 221, + [243] = 222, + [244] = 223, + [245] = 224, + [246] = 225, + [247] = 247, [248] = 248, [249] = 249, - [250] = 181, - [251] = 201, - [252] = 175, - [253] = 182, - [254] = 183, - [255] = 176, - [256] = 185, - [257] = 187, - [258] = 188, - [259] = 189, - [260] = 190, - [261] = 191, - [262] = 192, - [263] = 193, - [264] = 194, - [265] = 195, - [266] = 196, - [267] = 198, - [268] = 220, + [250] = 250, + [251] = 214, + [252] = 229, + [253] = 230, + [254] = 232, + [255] = 233, + [256] = 234, + [257] = 215, + [258] = 216, + [259] = 217, + [260] = 218, + [261] = 219, + [262] = 220, + [263] = 221, + [264] = 222, + [265] = 223, + [266] = 224, + [267] = 225, + [268] = 248, [269] = 269, [270] = 270, - [271] = 178, - [272] = 176, - [273] = 222, - [274] = 179, - [275] = 201, - [276] = 179, - [277] = 181, - [278] = 201, - [279] = 175, - [280] = 182, - [281] = 183, - [282] = 185, - [283] = 187, - [284] = 188, - [285] = 189, - [286] = 190, - [287] = 191, - [288] = 192, - [289] = 193, - [290] = 194, - [291] = 195, - [292] = 196, - [293] = 198, - [294] = 178, - [295] = 222, - [296] = 176, - [297] = 175, + [271] = 214, + [272] = 269, + [273] = 273, + [274] = 274, + [275] = 226, + [276] = 227, + [277] = 229, + [278] = 230, + [279] = 232, + [280] = 233, + [281] = 234, + [282] = 215, + [283] = 216, + [284] = 217, + [285] = 218, + [286] = 219, + [287] = 220, + [288] = 221, + [289] = 222, + [290] = 223, + [291] = 224, + [292] = 292, + [293] = 248, + [294] = 269, + [295] = 295, + [296] = 226, + [297] = 227, [298] = 298, - [299] = 299, - [300] = 298, - [301] = 298, - [302] = 299, - [303] = 303, - [304] = 303, + [299] = 269, + [300] = 248, + [301] = 230, + [302] = 227, + [303] = 229, + [304] = 230, [305] = 305, - [306] = 305, - [307] = 305, - [308] = 303, - [309] = 309, - [310] = 309, - [311] = 63, - [312] = 64, - [313] = 313, - [314] = 313, - [315] = 313, - [316] = 316, - [317] = 317, - [318] = 309, - [319] = 316, - [320] = 309, - [321] = 309, - [322] = 317, - [323] = 309, - [324] = 324, - [325] = 325, - [326] = 61, - [327] = 65, - [328] = 328, - [329] = 325, - [330] = 316, - [331] = 309, - [332] = 332, - [333] = 333, - [334] = 332, - [335] = 64, - [336] = 63, - [337] = 61, - [338] = 338, - [339] = 339, - [340] = 65, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 328, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 66, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 343, - [353] = 353, - [354] = 354, - [355] = 67, - [356] = 309, - [357] = 309, + [306] = 232, + [307] = 233, + [308] = 292, + [309] = 234, + [310] = 215, + [311] = 216, + [312] = 217, + [313] = 218, + [314] = 219, + [315] = 220, + [316] = 221, + [317] = 222, + [318] = 223, + [319] = 224, + [320] = 225, + [321] = 247, + [322] = 229, + [323] = 323, + [324] = 226, + [325] = 227, + [326] = 248, + [327] = 232, + [328] = 292, + [329] = 233, + [330] = 292, + [331] = 269, + [332] = 226, + [333] = 226, + [334] = 227, + [335] = 235, + [336] = 229, + [337] = 230, + [338] = 232, + [339] = 233, + [340] = 234, + [341] = 215, + [342] = 216, + [343] = 217, + [344] = 218, + [345] = 219, + [346] = 220, + [347] = 221, + [348] = 222, + [349] = 223, + [350] = 224, + [351] = 225, + [352] = 292, + [353] = 234, + [354] = 248, + [355] = 269, + [356] = 292, + [357] = 225, [358] = 358, - [359] = 359, + [359] = 358, [360] = 360, - [361] = 361, - [362] = 362, - [363] = 363, + [361] = 358, + [362] = 358, + [363] = 360, [364] = 364, [365] = 365, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, + [366] = 365, + [367] = 364, + [368] = 364, + [369] = 365, + [370] = 364, + [371] = 365, [372] = 372, - [373] = 373, - [374] = 374, + [373] = 372, + [374] = 372, [375] = 375, - [376] = 376, - [377] = 377, + [376] = 372, + [377] = 375, [378] = 378, - [379] = 379, - [380] = 380, + [379] = 378, + [380] = 378, [381] = 381, - [382] = 382, + [382] = 378, [383] = 383, - [384] = 384, - [385] = 385, + [384] = 372, + [385] = 383, [386] = 386, [387] = 387, - [388] = 388, + [388] = 381, [389] = 389, - [390] = 390, - [391] = 391, - [392] = 392, - [393] = 393, + [390] = 84, + [391] = 375, + [392] = 389, + [393] = 85, [394] = 394, - [395] = 395, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 401, + [395] = 372, + [396] = 81, + [397] = 394, + [398] = 387, + [399] = 83, + [400] = 372, + [401] = 372, [402] = 402, - [403] = 403, - [404] = 404, + [403] = 80, + [404] = 81, [405] = 405, [406] = 406, [407] = 407, @@ -2854,18 +2865,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [409] = 409, [410] = 410, [411] = 411, - [412] = 412, + [412] = 84, [413] = 413, - [414] = 414, + [414] = 85, [415] = 415, [416] = 416, [417] = 417, - [418] = 418, + [418] = 79, [419] = 419, [420] = 420, [421] = 421, [422] = 422, - [423] = 423, + [423] = 83, [424] = 424, [425] = 425, [426] = 426, @@ -2875,158 +2886,158 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [430] = 430, [431] = 431, [432] = 432, - [433] = 359, - [434] = 432, + [433] = 433, + [434] = 434, [435] = 435, [436] = 436, - [437] = 432, + [437] = 437, [438] = 438, - [439] = 438, + [439] = 439, [440] = 440, - [441] = 440, + [441] = 441, [442] = 442, - [443] = 430, + [443] = 443, [444] = 444, - [445] = 429, - [446] = 436, - [447] = 438, + [445] = 445, + [446] = 446, + [447] = 447, [448] = 448, - [449] = 440, - [450] = 427, - [451] = 438, + [449] = 449, + [450] = 450, + [451] = 451, [452] = 452, [453] = 453, - [454] = 440, + [454] = 454, [455] = 455, - [456] = 452, - [457] = 435, - [458] = 440, + [456] = 456, + [457] = 457, + [458] = 458, [459] = 459, - [460] = 438, - [461] = 430, + [460] = 460, + [461] = 461, [462] = 462, [463] = 463, [464] = 464, [465] = 465, - [466] = 455, + [466] = 466, [467] = 467, - [468] = 464, + [468] = 468, [469] = 469, - [470] = 438, - [471] = 440, + [470] = 470, + [471] = 471, [472] = 472, [473] = 473, - [474] = 359, - [475] = 431, - [476] = 359, - [477] = 428, - [478] = 453, - [479] = 469, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, [480] = 480, - [481] = 430, - [482] = 467, + [481] = 481, + [482] = 459, [483] = 483, [484] = 484, [485] = 485, - [486] = 483, - [487] = 430, - [488] = 455, + [486] = 486, + [487] = 487, + [488] = 488, [489] = 489, - [490] = 440, - [491] = 438, - [492] = 464, - [493] = 485, - [494] = 480, - [495] = 440, - [496] = 438, - [497] = 484, - [498] = 483, - [499] = 438, - [500] = 440, - [501] = 489, - [502] = 430, - [503] = 503, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 491, + [494] = 491, + [495] = 491, + [496] = 496, + [497] = 497, + [498] = 492, + [499] = 496, + [500] = 500, + [501] = 407, + [502] = 496, + [503] = 492, [504] = 504, - [505] = 62, - [506] = 63, + [505] = 505, + [506] = 506, [507] = 507, - [508] = 64, + [508] = 508, [509] = 509, [510] = 510, - [511] = 511, - [512] = 512, + [511] = 504, + [512] = 510, [513] = 513, [514] = 514, [515] = 515, [516] = 516, - [517] = 517, - [518] = 518, + [517] = 516, + [518] = 492, [519] = 519, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, + [520] = 492, + [521] = 496, + [522] = 496, + [523] = 515, + [524] = 513, + [525] = 504, [526] = 526, - [527] = 527, + [527] = 500, [528] = 528, [529] = 529, [530] = 530, - [531] = 531, + [531] = 508, [532] = 532, [533] = 533, - [534] = 534, - [535] = 535, - [536] = 536, - [537] = 537, - [538] = 66, - [539] = 539, - [540] = 540, + [534] = 407, + [535] = 514, + [536] = 505, + [537] = 506, + [538] = 407, + [539] = 507, + [540] = 519, [541] = 541, - [542] = 542, + [542] = 509, [543] = 543, [544] = 544, [545] = 545, - [546] = 546, + [546] = 504, [547] = 547, - [548] = 548, + [548] = 504, [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 556, - [557] = 67, + [550] = 547, + [551] = 515, + [552] = 516, + [553] = 492, + [554] = 496, + [555] = 529, + [556] = 496, + [557] = 492, [558] = 558, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 569, - [570] = 61, - [571] = 571, - [572] = 65, - [573] = 573, - [574] = 574, - [575] = 575, + [559] = 492, + [560] = 532, + [561] = 496, + [562] = 549, + [563] = 547, + [564] = 505, + [565] = 504, + [566] = 509, + [567] = 558, + [568] = 506, + [569] = 508, + [570] = 407, + [571] = 504, + [572] = 504, + [573] = 500, + [574] = 507, + [575] = 78, [576] = 576, - [577] = 511, - [578] = 578, - [579] = 503, + [577] = 577, + [578] = 85, + [579] = 84, [580] = 580, [581] = 581, - [582] = 582, - [583] = 583, - [584] = 504, + [582] = 79, + [583] = 576, + [584] = 584, [585] = 585, [586] = 586, [587] = 587, @@ -3034,517 +3045,517 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [589] = 589, [590] = 590, [591] = 591, - [592] = 592, + [592] = 580, [593] = 593, [594] = 594, [595] = 595, [596] = 596, - [597] = 525, + [597] = 597, [598] = 598, - [599] = 533, + [599] = 599, [600] = 600, - [601] = 542, + [601] = 80, [602] = 602, [603] = 603, - [604] = 62, - [605] = 62, - [606] = 525, + [604] = 604, + [605] = 605, + [606] = 606, [607] = 607, - [608] = 569, - [609] = 510, - [610] = 533, - [611] = 507, - [612] = 511, - [613] = 542, - [614] = 509, - [615] = 512, - [616] = 571, - [617] = 513, - [618] = 74, - [619] = 550, - [620] = 555, - [621] = 556, - [622] = 558, - [623] = 587, - [624] = 580, - [625] = 532, - [626] = 551, - [627] = 559, - [628] = 560, - [629] = 589, - [630] = 561, - [631] = 603, - [632] = 632, - [633] = 562, - [634] = 515, - [635] = 563, - [636] = 564, - [637] = 526, - [638] = 72, - [639] = 565, - [640] = 566, - [641] = 527, - [642] = 70, - [643] = 511, - [644] = 534, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 611, + [612] = 612, + [613] = 79, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 593, + [621] = 621, + [622] = 597, + [623] = 623, + [624] = 624, + [625] = 623, + [626] = 83, + [627] = 84, + [628] = 577, + [629] = 85, + [630] = 81, + [631] = 83, + [632] = 81, + [633] = 80, + [634] = 634, + [635] = 78, + [636] = 623, + [637] = 621, + [638] = 78, + [639] = 580, + [640] = 624, + [641] = 597, + [642] = 85, + [643] = 84, + [644] = 593, [645] = 645, - [646] = 71, - [647] = 516, - [648] = 517, - [649] = 518, - [650] = 73, - [651] = 528, - [652] = 75, - [653] = 519, - [654] = 520, - [655] = 521, - [656] = 68, - [657] = 522, - [658] = 535, - [659] = 552, - [660] = 553, - [661] = 69, - [662] = 554, - [663] = 567, - [664] = 568, - [665] = 514, - [666] = 596, - [667] = 525, - [668] = 533, - [669] = 542, - [670] = 529, - [671] = 632, - [672] = 524, - [673] = 575, - [674] = 530, - [675] = 536, - [676] = 537, - [677] = 523, - [678] = 531, - [679] = 539, - [680] = 540, - [681] = 541, - [682] = 514, - [683] = 573, - [684] = 583, - [685] = 543, - [686] = 585, - [687] = 586, - [688] = 544, - [689] = 580, - [690] = 582, - [691] = 588, - [692] = 575, - [693] = 583, - [694] = 585, - [695] = 586, - [696] = 588, - [697] = 590, - [698] = 590, - [699] = 591, - [700] = 592, - [701] = 574, - [702] = 593, - [703] = 594, - [704] = 595, - [705] = 598, - [706] = 600, - [707] = 602, - [708] = 576, - [709] = 578, - [710] = 591, - [711] = 592, - [712] = 587, - [713] = 589, - [714] = 603, - [715] = 574, - [716] = 593, - [717] = 594, - [718] = 596, - [719] = 595, - [720] = 598, - [721] = 600, - [722] = 602, - [723] = 545, - [724] = 546, - [725] = 511, - [726] = 547, - [727] = 581, - [728] = 576, - [729] = 548, - [730] = 578, - [731] = 549, - [732] = 581, - [733] = 582, + [646] = 580, + [647] = 647, + [648] = 648, + [649] = 649, + [650] = 650, + [651] = 591, + [652] = 614, + [653] = 608, + [654] = 654, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 658, + [659] = 89, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 664, + [665] = 90, + [666] = 666, + [667] = 91, + [668] = 618, + [669] = 584, + [670] = 585, + [671] = 586, + [672] = 580, + [673] = 88, + [674] = 87, + [675] = 92, + [676] = 587, + [677] = 612, + [678] = 589, + [679] = 86, + [680] = 599, + [681] = 590, + [682] = 682, + [683] = 598, + [684] = 595, + [685] = 615, + [686] = 616, + [687] = 617, + [688] = 594, + [689] = 593, + [690] = 597, + [691] = 691, + [692] = 692, + [693] = 623, + [694] = 82, + [695] = 596, + [696] = 696, + [697] = 605, + [698] = 619, + [699] = 83, + [700] = 81, + [701] = 696, + [702] = 702, + [703] = 600, + [704] = 704, + [705] = 602, + [706] = 603, + [707] = 604, + [708] = 605, + [709] = 634, + [710] = 606, + [711] = 607, + [712] = 609, + [713] = 581, + [714] = 610, + [715] = 611, + [716] = 588, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 593, + [723] = 597, + [724] = 724, + [725] = 623, + [726] = 726, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 733, [734] = 734, - [735] = 645, + [735] = 682, [736] = 736, [737] = 737, [738] = 738, [739] = 739, - [740] = 525, - [741] = 533, - [742] = 542, + [740] = 740, + [741] = 741, + [742] = 742, [743] = 743, [744] = 744, [745] = 745, [746] = 746, [747] = 747, [748] = 748, - [749] = 749, - [750] = 750, - [751] = 751, - [752] = 752, - [753] = 753, - [754] = 754, - [755] = 754, - [756] = 753, - [757] = 596, - [758] = 607, - [759] = 525, - [760] = 760, - [761] = 533, - [762] = 542, - [763] = 763, - [764] = 603, - [765] = 753, - [766] = 766, - [767] = 767, - [768] = 768, - [769] = 754, - [770] = 760, - [771] = 771, - [772] = 772, - [773] = 768, - [774] = 774, - [775] = 775, - [776] = 753, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 580, - [782] = 582, + [749] = 78, + [750] = 662, + [751] = 663, + [752] = 85, + [753] = 655, + [754] = 656, + [755] = 658, + [756] = 657, + [757] = 577, + [758] = 692, + [759] = 661, + [760] = 593, + [761] = 597, + [762] = 623, + [763] = 696, + [764] = 666, + [765] = 691, + [766] = 576, + [767] = 702, + [768] = 649, + [769] = 83, + [770] = 84, + [771] = 664, + [772] = 704, + [773] = 654, + [774] = 647, + [775] = 648, + [776] = 645, + [777] = 81, + [778] = 660, + [779] = 650, + [780] = 738, + [781] = 781, + [782] = 747, [783] = 783, - [784] = 751, - [785] = 575, - [786] = 589, - [787] = 585, - [788] = 788, - [789] = 777, - [790] = 586, - [791] = 791, - [792] = 588, - [793] = 590, - [794] = 591, - [795] = 592, - [796] = 581, - [797] = 771, - [798] = 574, - [799] = 593, - [800] = 594, - [801] = 595, - [802] = 598, - [803] = 778, - [804] = 600, - [805] = 783, - [806] = 602, - [807] = 791, - [808] = 576, + [784] = 605, + [785] = 580, + [786] = 593, + [787] = 737, + [788] = 597, + [789] = 732, + [790] = 729, + [791] = 736, + [792] = 84, + [793] = 85, + [794] = 739, + [795] = 605, + [796] = 781, + [797] = 748, + [798] = 743, + [799] = 744, + [800] = 719, + [801] = 724, + [802] = 727, + [803] = 728, + [804] = 734, + [805] = 721, + [806] = 740, + [807] = 781, + [808] = 741, [809] = 809, - [810] = 578, - [811] = 788, - [812] = 767, - [813] = 813, - [814] = 587, - [815] = 736, - [816] = 632, - [817] = 766, - [818] = 583, - [819] = 576, - [820] = 511, - [821] = 821, - [822] = 514, + [810] = 781, + [811] = 809, + [812] = 781, + [813] = 623, + [814] = 781, + [815] = 746, + [816] = 781, + [817] = 720, + [818] = 818, + [819] = 818, + [820] = 726, + [821] = 730, + [822] = 822, [823] = 823, - [824] = 823, - [825] = 825, - [826] = 823, - [827] = 823, - [828] = 823, - [829] = 823, - [830] = 744, - [831] = 831, - [832] = 832, - [833] = 833, - [834] = 580, - [835] = 582, - [836] = 575, - [837] = 583, - [838] = 585, - [839] = 586, - [840] = 588, - [841] = 590, - [842] = 591, - [843] = 592, - [844] = 574, - [845] = 593, - [846] = 594, - [847] = 595, - [848] = 598, - [849] = 600, - [850] = 602, - [851] = 578, - [852] = 587, - [853] = 589, - [854] = 603, - [855] = 596, - [856] = 581, - [857] = 857, - [858] = 858, - [859] = 857, - [860] = 857, - [861] = 861, - [862] = 857, - [863] = 736, - [864] = 857, - [865] = 861, - [866] = 866, - [867] = 867, - [868] = 867, - [869] = 869, + [824] = 580, + [825] = 731, + [826] = 826, + [827] = 729, + [828] = 731, + [829] = 829, + [830] = 733, + [831] = 737, + [832] = 732, + [833] = 736, + [834] = 739, + [835] = 748, + [836] = 836, + [837] = 743, + [838] = 744, + [839] = 719, + [840] = 724, + [841] = 727, + [842] = 728, + [843] = 734, + [844] = 738, + [845] = 740, + [846] = 741, + [847] = 746, + [848] = 720, + [849] = 718, + [850] = 721, + [851] = 726, + [852] = 747, + [853] = 853, + [854] = 730, + [855] = 718, + [856] = 580, + [857] = 822, + [858] = 618, + [859] = 859, + [860] = 584, + [861] = 585, + [862] = 862, + [863] = 586, + [864] = 619, + [865] = 587, + [866] = 588, + [867] = 589, + [868] = 590, + [869] = 591, [870] = 870, [871] = 871, - [872] = 870, - [873] = 870, - [874] = 871, - [875] = 875, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 871, [876] = 876, [877] = 877, - [878] = 877, - [879] = 871, - [880] = 880, + [878] = 878, + [879] = 717, + [880] = 876, [881] = 881, [882] = 882, - [883] = 881, - [884] = 882, - [885] = 881, - [886] = 882, - [887] = 882, - [888] = 882, - [889] = 881, - [890] = 882, - [891] = 881, - [892] = 881, + [883] = 883, + [884] = 594, + [885] = 885, + [886] = 595, + [887] = 596, + [888] = 873, + [889] = 889, + [890] = 873, + [891] = 871, + [892] = 892, [893] = 893, - [894] = 893, - [895] = 895, - [896] = 893, - [897] = 893, - [898] = 893, - [899] = 893, + [894] = 80, + [895] = 873, + [896] = 598, + [897] = 871, + [898] = 606, + [899] = 873, [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 905, + [901] = 79, + [902] = 873, + [903] = 617, + [904] = 581, + [905] = 599, [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, + [907] = 616, + [908] = 877, + [909] = 602, [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, + [911] = 603, + [912] = 621, + [913] = 874, + [914] = 604, + [915] = 624, + [916] = 83, + [917] = 81, + [918] = 634, [919] = 919, [920] = 920, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 925, + [921] = 607, + [922] = 609, + [923] = 610, + [924] = 611, + [925] = 873, [926] = 926, - [927] = 927, - [928] = 928, - [929] = 929, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, + [927] = 608, + [928] = 874, + [929] = 612, + [930] = 871, + [931] = 876, + [932] = 893, + [933] = 859, + [934] = 877, + [935] = 892, + [936] = 906, + [937] = 920, + [938] = 926, + [939] = 889, + [940] = 910, + [941] = 836, + [942] = 614, + [943] = 615, + [944] = 600, [945] = 945, [946] = 946, - [947] = 947, - [948] = 63, - [949] = 949, + [947] = 946, + [948] = 84, + [949] = 945, [950] = 950, [951] = 951, - [952] = 952, - [953] = 64, + [952] = 85, + [953] = 953, [954] = 954, - [955] = 955, - [956] = 61, - [957] = 65, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 906, - [962] = 962, - [963] = 963, - [964] = 964, - [965] = 907, - [966] = 966, - [967] = 906, - [968] = 960, + [955] = 718, + [956] = 661, + [957] = 691, + [958] = 647, + [959] = 747, + [960] = 654, + [961] = 655, + [962] = 656, + [963] = 657, + [964] = 666, + [965] = 83, + [966] = 81, + [967] = 967, + [968] = 968, [969] = 969, - [970] = 911, - [971] = 971, - [972] = 916, - [973] = 973, - [974] = 923, - [975] = 975, - [976] = 544, - [977] = 920, - [978] = 978, - [979] = 919, - [980] = 980, - [981] = 981, - [982] = 916, - [983] = 983, - [984] = 978, - [985] = 983, - [986] = 975, - [987] = 987, - [988] = 980, - [989] = 989, - [990] = 987, - [991] = 991, - [992] = 992, - [993] = 991, - [994] = 992, - [995] = 995, - [996] = 996, - [997] = 918, - [998] = 995, - [999] = 996, - [1000] = 564, - [1001] = 568, - [1002] = 1002, - [1003] = 981, - [1004] = 1004, - [1005] = 989, - [1006] = 1006, - [1007] = 973, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, - [1013] = 1009, - [1014] = 1014, - [1015] = 1015, - [1016] = 1012, - [1017] = 1017, - [1018] = 1015, - [1019] = 1015, - [1020] = 1020, - [1021] = 1011, - [1022] = 1022, - [1023] = 1015, - [1024] = 1022, - [1025] = 1010, - [1026] = 1020, - [1027] = 1008, - [1028] = 1017, - [1029] = 1015, - [1030] = 1014, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 1032, - [1036] = 1034, - [1037] = 1033, - [1038] = 1032, - [1039] = 1033, - [1040] = 1034, - [1041] = 1032, - [1042] = 1034, - [1043] = 1033, - [1044] = 1044, - [1045] = 1045, - [1046] = 1044, - [1047] = 1047, - [1048] = 1047, - [1049] = 1044, - [1050] = 1047, - [1051] = 1044, - [1052] = 1047, - [1053] = 1053, - [1054] = 1054, - [1055] = 1054, - [1056] = 1056, - [1057] = 1057, - [1058] = 1058, - [1059] = 1058, - [1060] = 1057, - [1061] = 1061, - [1062] = 1062, - [1063] = 1062, - [1064] = 1061, - [1065] = 1057, - [1066] = 1054, - [1067] = 1061, - [1068] = 1061, - [1069] = 1058, - [1070] = 1070, - [1071] = 1058, - [1072] = 1054, - [1073] = 1062, - [1074] = 1062, - [1075] = 1057, - [1076] = 1076, - [1077] = 1077, - [1078] = 1078, - [1079] = 1079, + [970] = 729, + [971] = 731, + [972] = 737, + [973] = 732, + [974] = 736, + [975] = 739, + [976] = 748, + [977] = 743, + [978] = 744, + [979] = 719, + [980] = 724, + [981] = 727, + [982] = 728, + [983] = 734, + [984] = 738, + [985] = 740, + [986] = 741, + [987] = 746, + [988] = 720, + [989] = 718, + [990] = 721, + [991] = 726, + [992] = 747, + [993] = 692, + [994] = 702, + [995] = 730, + [996] = 967, + [997] = 967, + [998] = 968, + [999] = 649, + [1000] = 650, + [1001] = 658, + [1002] = 664, + [1003] = 729, + [1004] = 731, + [1005] = 967, + [1006] = 737, + [1007] = 704, + [1008] = 732, + [1009] = 736, + [1010] = 739, + [1011] = 748, + [1012] = 968, + [1013] = 743, + [1014] = 744, + [1015] = 719, + [1016] = 724, + [1017] = 727, + [1018] = 728, + [1019] = 734, + [1020] = 738, + [1021] = 740, + [1022] = 741, + [1023] = 746, + [1024] = 645, + [1025] = 720, + [1026] = 836, + [1027] = 660, + [1028] = 718, + [1029] = 662, + [1030] = 721, + [1031] = 663, + [1032] = 726, + [1033] = 730, + [1034] = 967, + [1035] = 729, + [1036] = 731, + [1037] = 737, + [1038] = 732, + [1039] = 736, + [1040] = 739, + [1041] = 748, + [1042] = 743, + [1043] = 744, + [1044] = 719, + [1045] = 724, + [1046] = 727, + [1047] = 728, + [1048] = 734, + [1049] = 738, + [1050] = 740, + [1051] = 741, + [1052] = 746, + [1053] = 720, + [1054] = 721, + [1055] = 726, + [1056] = 747, + [1057] = 967, + [1058] = 730, + [1059] = 648, + [1060] = 1060, + [1061] = 1060, + [1062] = 1060, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1065, + [1067] = 1067, + [1068] = 1068, + [1069] = 1068, + [1070] = 1065, + [1071] = 1067, + [1072] = 1072, + [1073] = 1068, + [1074] = 1065, + [1075] = 1068, + [1076] = 1065, + [1077] = 1068, + [1078] = 1068, + [1079] = 1065, [1080] = 1080, [1081] = 1081, [1082] = 1082, - [1083] = 1082, + [1083] = 1081, [1084] = 1082, [1085] = 1082, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, + [1086] = 1082, + [1087] = 1081, + [1088] = 1082, + [1089] = 1081, [1090] = 1082, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, + [1091] = 1081, + [1092] = 1082, + [1093] = 1081, + [1094] = 1081, [1095] = 1095, - [1096] = 1096, - [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1082, - [1102] = 1102, + [1096] = 1095, + [1097] = 1095, + [1098] = 1095, + [1099] = 1095, + [1100] = 1095, + [1101] = 1101, + [1102] = 1095, [1103] = 1103, [1104] = 1104, [1105] = 1105, @@ -3554,186 +3565,186 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1109] = 1109, [1110] = 1110, [1111] = 1111, - [1112] = 569, + [1112] = 1112, [1113] = 1113, [1114] = 1114, [1115] = 1115, - [1116] = 1089, + [1116] = 1116, [1117] = 1117, [1118] = 1118, [1119] = 1119, - [1120] = 571, - [1121] = 1088, - [1122] = 1106, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, [1123] = 1123, [1124] = 1124, [1125] = 1125, [1126] = 1126, - [1127] = 1102, - [1128] = 1100, - [1129] = 1093, + [1127] = 1127, + [1128] = 1128, + [1129] = 85, [1130] = 1130, - [1131] = 1131, - [1132] = 1115, + [1131] = 84, + [1132] = 1132, [1133] = 1133, - [1134] = 547, + [1134] = 1134, [1135] = 1135, [1136] = 1136, - [1137] = 1137, + [1137] = 1108, [1138] = 1138, - [1139] = 1137, + [1139] = 81, [1140] = 1140, [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 1144, - [1145] = 1144, - [1146] = 553, - [1147] = 554, - [1148] = 1137, - [1149] = 555, - [1150] = 556, + [1144] = 1109, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, + [1148] = 1148, + [1149] = 1114, + [1150] = 1150, [1151] = 1151, [1152] = 1152, - [1153] = 1153, + [1153] = 1150, [1154] = 1154, - [1155] = 565, + [1155] = 1155, [1156] = 1156, [1157] = 1157, - [1158] = 1141, + [1158] = 1158, [1159] = 1159, [1160] = 1160, [1161] = 1161, - [1162] = 531, - [1163] = 1136, - [1164] = 1137, + [1162] = 83, + [1163] = 1163, + [1164] = 1164, [1165] = 1165, - [1166] = 1142, - [1167] = 569, + [1166] = 1166, + [1167] = 1167, [1168] = 1168, - [1169] = 1161, - [1170] = 1156, + [1169] = 1169, + [1170] = 1170, [1171] = 1171, - [1172] = 531, - [1173] = 537, - [1174] = 1174, - [1175] = 1135, + [1172] = 1172, + [1173] = 1173, + [1174] = 1108, + [1175] = 1175, [1176] = 1176, - [1177] = 546, - [1178] = 547, - [1179] = 537, - [1180] = 553, - [1181] = 554, - [1182] = 555, - [1183] = 556, - [1184] = 565, - [1185] = 1153, - [1186] = 1186, - [1187] = 1144, - [1188] = 1144, + [1177] = 1120, + [1178] = 1178, + [1179] = 1121, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1122, + [1186] = 1119, + [1187] = 1187, + [1188] = 1176, [1189] = 1189, - [1190] = 1151, - [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 546, - [1196] = 571, - [1197] = 1174, - [1198] = 1186, + [1190] = 1125, + [1191] = 1189, + [1192] = 1180, + [1193] = 1183, + [1194] = 1184, + [1195] = 1187, + [1196] = 1196, + [1197] = 1178, + [1198] = 1175, [1199] = 1199, - [1200] = 1200, - [1201] = 1201, + [1200] = 1181, + [1201] = 617, [1202] = 1202, [1203] = 1203, - [1204] = 1204, + [1204] = 1125, [1205] = 1205, - [1206] = 1206, - [1207] = 1203, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1086, - [1212] = 1201, + [1206] = 1182, + [1207] = 606, + [1208] = 1199, + [1209] = 581, + [1210] = 1196, + [1211] = 1211, + [1212] = 1211, [1213] = 1213, [1214] = 1214, - [1215] = 1110, - [1216] = 1126, - [1217] = 1217, - [1218] = 1218, - [1219] = 1159, + [1215] = 1215, + [1216] = 1216, + [1217] = 1215, + [1218] = 1213, + [1219] = 1219, [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1223, - [1224] = 1200, - [1225] = 1222, - [1226] = 1226, - [1227] = 1200, - [1228] = 1210, + [1221] = 1216, + [1222] = 1214, + [1223] = 1213, + [1224] = 1213, + [1225] = 1225, + [1226] = 1220, + [1227] = 1225, + [1228] = 1228, [1229] = 1229, - [1230] = 1230, - [1231] = 1231, - [1232] = 1232, - [1233] = 1217, - [1234] = 1234, - [1235] = 1214, - [1236] = 1222, + [1230] = 1229, + [1231] = 1228, + [1232] = 1213, + [1233] = 1219, + [1234] = 1213, + [1235] = 1235, + [1236] = 1235, [1237] = 1237, [1238] = 1238, - [1239] = 1200, - [1240] = 1240, - [1241] = 1229, - [1242] = 1078, - [1243] = 1243, - [1244] = 1244, - [1245] = 1226, - [1246] = 1208, - [1247] = 1226, - [1248] = 1248, - [1249] = 1214, - [1250] = 1222, - [1251] = 1251, + [1239] = 1239, + [1240] = 1239, + [1241] = 1237, + [1242] = 1237, + [1243] = 1239, + [1244] = 1237, + [1245] = 1239, + [1246] = 1238, + [1247] = 1238, + [1248] = 1239, + [1249] = 1237, + [1250] = 1238, + [1251] = 1238, [1252] = 1252, - [1253] = 1204, + [1253] = 1252, [1254] = 1254, - [1255] = 1255, - [1256] = 1118, - [1257] = 1257, + [1255] = 1254, + [1256] = 1252, + [1257] = 1254, [1258] = 1258, - [1259] = 1230, - [1260] = 1260, - [1261] = 1261, + [1259] = 1254, + [1260] = 1252, + [1261] = 1252, [1262] = 1254, [1263] = 1263, - [1264] = 1264, + [1264] = 1263, [1265] = 1265, - [1266] = 1226, - [1267] = 1234, + [1266] = 1265, + [1267] = 1263, [1268] = 1268, - [1269] = 1214, - [1270] = 1270, + [1269] = 1269, + [1270] = 1268, [1271] = 1271, - [1272] = 1232, - [1273] = 1237, + [1272] = 1271, + [1273] = 1269, [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1278, - [1279] = 1279, - [1280] = 1280, + [1275] = 1268, + [1276] = 1269, + [1277] = 1268, + [1278] = 1263, + [1279] = 1271, + [1280] = 1265, [1281] = 1281, - [1282] = 1282, - [1283] = 1283, + [1282] = 1271, + [1283] = 1265, [1284] = 1284, - [1285] = 1285, - [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1289, + [1285] = 1265, + [1286] = 1269, + [1287] = 1263, + [1288] = 1268, + [1289] = 1271, + [1290] = 1269, + [1291] = 1291, [1292] = 1292, [1293] = 1293, [1294] = 1294, @@ -3741,81 +3752,81 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1296] = 1296, [1297] = 1297, [1298] = 1298, - [1299] = 1299, - [1300] = 1300, - [1301] = 1301, + [1299] = 1294, + [1300] = 1294, + [1301] = 85, [1302] = 1302, - [1303] = 1303, + [1303] = 1294, [1304] = 1304, [1305] = 1305, [1306] = 1306, [1307] = 1307, [1308] = 1308, - [1309] = 1292, - [1310] = 1296, - [1311] = 1311, - [1312] = 1312, + [1309] = 1294, + [1310] = 1310, + [1311] = 1294, + [1312] = 1294, [1313] = 1313, - [1314] = 1305, - [1315] = 1315, + [1314] = 1314, + [1315] = 84, [1316] = 1316, - [1317] = 1306, - [1318] = 1318, - [1319] = 1303, + [1317] = 1317, + [1318] = 1313, + [1319] = 1319, [1320] = 1304, [1321] = 1321, [1322] = 1322, - [1323] = 345, + [1323] = 1323, [1324] = 1324, [1325] = 1325, [1326] = 1326, [1327] = 1327, [1328] = 1328, [1329] = 1329, - [1330] = 1330, - [1331] = 1331, - [1332] = 1281, - [1333] = 1289, - [1334] = 1292, - [1335] = 1312, - [1336] = 1297, + [1330] = 1305, + [1331] = 1327, + [1332] = 1308, + [1333] = 1333, + [1334] = 1334, + [1335] = 1335, + [1336] = 1336, [1337] = 1337, - [1338] = 1285, - [1339] = 1339, - [1340] = 1337, - [1341] = 1341, - [1342] = 1325, - [1343] = 1343, - [1344] = 1326, + [1338] = 1321, + [1339] = 386, + [1340] = 83, + [1341] = 1333, + [1342] = 1342, + [1343] = 1302, + [1344] = 1344, [1345] = 1328, - [1346] = 1341, - [1347] = 1305, - [1348] = 1274, - [1349] = 1322, - [1350] = 1296, - [1351] = 1316, - [1352] = 1311, - [1353] = 1324, - [1354] = 1297, - [1355] = 1283, - [1356] = 1284, - [1357] = 1357, - [1358] = 1315, - [1359] = 1359, - [1360] = 1360, + [1346] = 1346, + [1347] = 1124, + [1348] = 1348, + [1349] = 1337, + [1350] = 1350, + [1351] = 81, + [1352] = 1342, + [1353] = 1337, + [1354] = 1354, + [1355] = 1328, + [1356] = 1356, + [1357] = 1296, + [1358] = 1358, + [1359] = 1344, + [1360] = 1327, [1361] = 1361, - [1362] = 1303, + [1362] = 1362, [1363] = 1363, - [1364] = 1304, - [1365] = 1305, - [1366] = 1366, - [1367] = 1306, - [1368] = 1368, - [1369] = 1343, - [1370] = 1275, - [1371] = 1371, - [1372] = 1372, - [1373] = 1373, + [1364] = 661, + [1365] = 1365, + [1366] = 691, + [1367] = 647, + [1368] = 648, + [1369] = 654, + [1370] = 655, + [1371] = 656, + [1372] = 657, + [1373] = 666, [1374] = 1374, [1375] = 1375, [1376] = 1376, @@ -3829,64 +3840,64 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1384] = 1384, [1385] = 1385, [1386] = 1386, - [1387] = 1387, - [1388] = 1388, - [1389] = 1389, - [1390] = 1390, + [1387] = 1365, + [1388] = 1383, + [1389] = 1384, + [1390] = 1378, [1391] = 1391, - [1392] = 1392, + [1392] = 1382, [1393] = 1393, - [1394] = 1394, - [1395] = 1395, - [1396] = 1396, - [1397] = 534, - [1398] = 1398, - [1399] = 1399, - [1400] = 1400, + [1394] = 1383, + [1395] = 1384, + [1396] = 1365, + [1397] = 1397, + [1398] = 1384, + [1399] = 1130, + [1400] = 1385, [1401] = 1401, - [1402] = 1402, + [1402] = 1384, [1403] = 1403, - [1404] = 1404, + [1404] = 1386, [1405] = 1405, - [1406] = 550, - [1407] = 551, - [1408] = 1408, + [1406] = 1406, + [1407] = 1379, + [1408] = 1393, [1409] = 1409, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, + [1410] = 1363, + [1411] = 1406, + [1412] = 1397, + [1413] = 661, [1414] = 1414, - [1415] = 1390, - [1416] = 1416, - [1417] = 1392, - [1418] = 1418, - [1419] = 1419, - [1420] = 1420, - [1421] = 1421, - [1422] = 1422, - [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 1426, + [1415] = 691, + [1416] = 1382, + [1417] = 1417, + [1418] = 1406, + [1419] = 1406, + [1420] = 1406, + [1421] = 647, + [1422] = 648, + [1423] = 654, + [1424] = 655, + [1425] = 656, + [1426] = 657, [1427] = 1427, [1428] = 1428, - [1429] = 1429, + [1429] = 666, [1430] = 1430, [1431] = 1431, [1432] = 1432, - [1433] = 1433, - [1434] = 1434, - [1435] = 1435, + [1433] = 621, + [1434] = 624, + [1435] = 1127, [1436] = 1436, - [1437] = 1437, + [1437] = 621, [1438] = 1438, [1439] = 1439, [1440] = 1440, [1441] = 1441, [1442] = 1442, - [1443] = 1443, - [1444] = 1444, + [1443] = 624, + [1444] = 402, [1445] = 1445, [1446] = 1446, [1447] = 1447, @@ -3894,289 +3905,805 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1449] = 1449, [1450] = 1450, [1451] = 1451, - [1452] = 1452, + [1452] = 407, [1453] = 1453, [1454] = 1454, [1455] = 1455, - [1456] = 1456, - [1457] = 1457, - [1458] = 1412, + [1456] = 1358, + [1457] = 419, + [1458] = 1314, [1459] = 1459, [1460] = 1460, [1461] = 1461, [1462] = 1462, - [1463] = 1463, - [1464] = 1464, - [1465] = 1465, - [1466] = 1377, + [1463] = 1442, + [1464] = 1438, + [1465] = 1354, + [1466] = 1466, [1467] = 1467, - [1468] = 1468, - [1469] = 1433, - [1470] = 1436, - [1471] = 1471, + [1468] = 1440, + [1469] = 1441, + [1470] = 1450, + [1471] = 1356, [1472] = 1472, - [1473] = 1438, - [1474] = 1431, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1479, + [1473] = 1455, + [1474] = 1461, + [1475] = 1462, + [1476] = 1440, + [1477] = 1441, + [1478] = 1310, + [1479] = 1462, [1480] = 1480, - [1481] = 1481, - [1482] = 1482, + [1481] = 1461, + [1482] = 1462, [1483] = 1483, - [1484] = 1484, - [1485] = 1380, - [1486] = 1486, - [1487] = 1410, - [1488] = 1414, - [1489] = 1422, + [1484] = 1440, + [1485] = 1441, + [1486] = 1446, + [1487] = 1461, + [1488] = 1462, + [1489] = 1440, [1490] = 1490, [1491] = 1491, [1492] = 1492, [1493] = 1493, - [1494] = 1444, - [1495] = 1374, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, + [1494] = 1461, + [1495] = 1462, + [1496] = 1440, + [1497] = 1441, + [1498] = 1453, [1499] = 1499, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1463, - [1504] = 1405, - [1505] = 1408, - [1506] = 1409, - [1507] = 1416, - [1508] = 1462, - [1509] = 1465, - [1510] = 1510, - [1511] = 1511, + [1500] = 1461, + [1501] = 1462, + [1502] = 1448, + [1503] = 1503, + [1504] = 1504, + [1505] = 1505, + [1506] = 1483, + [1507] = 1449, + [1508] = 1454, + [1509] = 1445, + [1510] = 1503, + [1511] = 1499, [1512] = 1512, - [1513] = 1418, + [1513] = 1513, [1514] = 1514, [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1518, - [1519] = 1519, - [1520] = 1520, - [1521] = 1521, - [1522] = 1396, + [1516] = 1455, + [1517] = 1461, + [1518] = 1504, + [1519] = 1504, + [1520] = 1483, + [1521] = 1515, + [1522] = 1505, [1523] = 1523, - [1524] = 1478, - [1525] = 1372, - [1526] = 1371, - [1527] = 1510, - [1528] = 1528, - [1529] = 1376, - [1530] = 1515, - [1531] = 1516, - [1532] = 1517, - [1533] = 1533, - [1534] = 1390, - [1535] = 1480, - [1536] = 1392, - [1537] = 1537, - [1538] = 1384, - [1539] = 1386, - [1540] = 1540, - [1541] = 1395, - [1542] = 1403, + [1524] = 1524, + [1525] = 1512, + [1526] = 1526, + [1527] = 1527, + [1528] = 1439, + [1529] = 1524, + [1530] = 1530, + [1531] = 1531, + [1532] = 1414, + [1533] = 1527, + [1534] = 1491, + [1535] = 1450, + [1536] = 1493, + [1537] = 1515, + [1538] = 1526, + [1539] = 1539, + [1540] = 1440, + [1541] = 1441, + [1542] = 1503, [1543] = 1543, - [1544] = 1391, - [1545] = 1428, + [1544] = 1441, + [1545] = 1545, [1546] = 1546, - [1547] = 1432, - [1548] = 1492, + [1547] = 420, + [1548] = 1548, [1549] = 1549, - [1550] = 1537, - [1551] = 1521, - [1552] = 1518, - [1553] = 1519, - [1554] = 1520, - [1555] = 1439, - [1556] = 1452, - [1557] = 1459, + [1550] = 81, + [1551] = 84, + [1552] = 1552, + [1553] = 411, + [1554] = 1554, + [1555] = 1555, + [1556] = 79, + [1557] = 1557, [1558] = 1558, - [1559] = 1270, - [1560] = 1533, + [1559] = 1559, + [1560] = 1560, [1561] = 1561, [1562] = 1562, - [1563] = 1563, - [1564] = 1427, - [1565] = 1434, - [1566] = 1566, - [1567] = 1437, + [1563] = 1545, + [1564] = 1546, + [1565] = 1548, + [1566] = 1549, + [1567] = 1548, [1568] = 1568, - [1569] = 1442, - [1570] = 1570, - [1571] = 1499, + [1569] = 1569, + [1570] = 1561, + [1571] = 1571, [1572] = 1572, - [1573] = 1481, + [1573] = 1573, [1574] = 1574, - [1575] = 1575, - [1576] = 1576, - [1577] = 1496, - [1578] = 1486, - [1579] = 1426, - [1580] = 1580, - [1581] = 1390, - [1582] = 1392, - [1583] = 1500, - [1584] = 1566, - [1585] = 1501, + [1575] = 415, + [1576] = 406, + [1577] = 422, + [1578] = 1202, + [1579] = 1579, + [1580] = 80, + [1581] = 1581, + [1582] = 1582, + [1583] = 1205, + [1584] = 1558, + [1585] = 1545, [1586] = 1586, - [1587] = 1441, + [1587] = 1546, [1588] = 1588, - [1589] = 1450, - [1590] = 1373, - [1591] = 1497, - [1592] = 1375, - [1593] = 1378, - [1594] = 1404, - [1595] = 1493, - [1596] = 1514, - [1597] = 1456, - [1598] = 1563, - [1599] = 1580, - [1600] = 1460, - [1601] = 1413, - [1602] = 1471, - [1603] = 1472, - [1604] = 1475, - [1605] = 1502, - [1606] = 1586, - [1607] = 1419, + [1589] = 1560, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, + [1597] = 1591, + [1598] = 1598, + [1599] = 1599, + [1600] = 1557, + [1601] = 1601, + [1602] = 1594, + [1603] = 1579, + [1604] = 413, + [1605] = 1571, + [1606] = 1606, + [1607] = 1607, [1608] = 1608, - [1609] = 1420, - [1610] = 1484, - [1611] = 1425, - [1612] = 1449, - [1613] = 1512, - [1614] = 1467, + [1609] = 1599, + [1610] = 1610, + [1611] = 1611, + [1612] = 409, + [1613] = 1569, + [1614] = 1606, [1615] = 1615, - [1616] = 1616, + [1616] = 624, [1617] = 1617, [1618] = 1618, [1619] = 1619, [1620] = 1620, [1621] = 1621, - [1622] = 1622, - [1623] = 1623, + [1622] = 1615, + [1623] = 1590, [1624] = 1624, - [1625] = 1625, - [1626] = 1626, + [1625] = 1545, + [1626] = 1618, [1627] = 1627, [1628] = 1628, - [1629] = 1629, - [1630] = 1622, - [1631] = 1240, + [1629] = 1572, + [1630] = 1569, + [1631] = 606, [1632] = 1632, - [1633] = 1619, - [1634] = 1634, - [1635] = 1635, - [1636] = 1622, - [1637] = 1637, - [1638] = 1638, - [1639] = 1638, - [1640] = 1640, - [1641] = 1637, - [1642] = 1642, - [1643] = 1643, - [1644] = 1644, + [1633] = 1601, + [1634] = 85, + [1635] = 1610, + [1636] = 1606, + [1637] = 1546, + [1638] = 421, + [1639] = 1620, + [1640] = 1572, + [1641] = 416, + [1642] = 1545, + [1643] = 1546, + [1644] = 417, [1645] = 1645, - [1646] = 1646, - [1647] = 1621, - [1648] = 1637, - [1649] = 1644, - [1650] = 1617, + [1646] = 1549, + [1647] = 1548, + [1648] = 1608, + [1649] = 621, + [1650] = 1650, [1651] = 1651, [1652] = 1652, - [1653] = 1653, - [1654] = 1654, - [1655] = 1623, - [1656] = 1656, - [1657] = 1651, + [1653] = 1617, + [1654] = 1560, + [1655] = 1611, + [1656] = 1590, + [1657] = 1628, [1658] = 1658, - [1659] = 1659, - [1660] = 1660, + [1659] = 1548, + [1660] = 617, [1661] = 1661, - [1662] = 1662, - [1663] = 1644, + [1662] = 1619, + [1663] = 1579, [1664] = 1664, - [1665] = 1665, - [1666] = 1623, + [1665] = 1582, + [1666] = 1549, [1667] = 1667, [1668] = 1668, - [1669] = 1652, - [1670] = 1617, - [1671] = 1619, - [1672] = 1660, - [1673] = 1645, - [1674] = 1674, - [1675] = 1675, - [1676] = 1676, - [1677] = 1677, - [1678] = 1658, - [1679] = 1624, + [1669] = 1627, + [1670] = 1670, + [1671] = 1671, + [1672] = 1560, + [1673] = 581, + [1674] = 1590, + [1675] = 408, + [1676] = 1549, + [1677] = 1615, + [1678] = 1620, + [1679] = 1650, [1680] = 1680, - [1681] = 1617, - [1682] = 1682, - [1683] = 1683, - [1684] = 1684, - [1685] = 1685, - [1686] = 1686, - [1687] = 1687, - [1688] = 1635, - [1689] = 1682, - [1690] = 1675, - [1691] = 1686, - [1692] = 1635, - [1693] = 1693, + [1681] = 1573, + [1682] = 1619, + [1683] = 1670, + [1684] = 1203, + [1685] = 1615, + [1686] = 83, + [1687] = 1601, + [1688] = 1688, + [1689] = 1619, + [1690] = 1690, + [1691] = 611, + [1692] = 1692, + [1693] = 1324, [1694] = 1694, - [1695] = 1694, - [1696] = 1682, + [1695] = 1695, + [1696] = 455, [1697] = 1697, - [1698] = 1635, - [1699] = 1637, - [1700] = 1637, - [1701] = 1623, - [1702] = 1682, - [1703] = 1632, - [1704] = 1619, - [1705] = 1632, - [1706] = 1624, - [1707] = 1619, - [1708] = 1644, - [1709] = 1623, - [1710] = 1632, - [1711] = 1711, - [1712] = 1677, + [1698] = 1698, + [1699] = 1699, + [1700] = 1700, + [1701] = 1701, + [1702] = 1702, + [1703] = 1703, + [1704] = 1530, + [1705] = 1705, + [1706] = 1706, + [1707] = 1707, + [1708] = 1708, + [1709] = 1709, + [1710] = 1141, + [1711] = 457, + [1712] = 1712, [1713] = 1713, - [1714] = 1622, + [1714] = 465, [1715] = 1715, - [1716] = 1682, + [1716] = 1716, [1717] = 1717, - [1718] = 1632, - [1719] = 1717, - [1720] = 1644, - [1721] = 1624, + [1718] = 1718, + [1719] = 1719, + [1720] = 463, + [1721] = 466, + [1722] = 1722, + [1723] = 1723, + [1724] = 1716, + [1725] = 467, + [1726] = 1726, + [1727] = 1722, + [1728] = 1728, + [1729] = 1729, + [1730] = 1717, + [1731] = 1143, + [1732] = 468, + [1733] = 1733, + [1734] = 1734, + [1735] = 439, + [1736] = 1736, + [1737] = 1737, + [1738] = 1738, + [1739] = 1145, + [1740] = 1740, + [1741] = 471, + [1742] = 1742, + [1743] = 1743, + [1744] = 472, + [1745] = 1745, + [1746] = 1746, + [1747] = 1701, + [1748] = 1703, + [1749] = 1749, + [1750] = 1733, + [1751] = 1751, + [1752] = 1752, + [1753] = 1753, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, + [1757] = 1757, + [1758] = 483, + [1759] = 1752, + [1760] = 1745, + [1761] = 1746, + [1762] = 476, + [1763] = 1763, + [1764] = 1701, + [1765] = 1703, + [1766] = 1749, + [1767] = 477, + [1768] = 479, + [1769] = 424, + [1770] = 1770, + [1771] = 1771, + [1772] = 1772, + [1773] = 1773, + [1774] = 1774, + [1775] = 1156, + [1776] = 1751, + [1777] = 1777, + [1778] = 1753, + [1779] = 1146, + [1780] = 1754, + [1781] = 473, + [1782] = 1782, + [1783] = 1783, + [1784] = 1148, + [1785] = 1734, + [1786] = 1786, + [1787] = 1787, + [1788] = 1788, + [1789] = 1789, + [1790] = 1158, + [1791] = 1755, + [1792] = 1756, + [1793] = 1793, + [1794] = 1706, + [1795] = 1159, + [1796] = 1160, + [1797] = 1797, + [1798] = 1719, + [1799] = 1799, + [1800] = 474, + [1801] = 1801, + [1802] = 485, + [1803] = 1752, + [1804] = 1722, + [1805] = 1805, + [1806] = 1161, + [1807] = 1164, + [1808] = 1132, + [1809] = 440, + [1810] = 475, + [1811] = 461, + [1812] = 1812, + [1813] = 470, + [1814] = 1814, + [1815] = 1166, + [1816] = 1816, + [1817] = 1817, + [1818] = 1818, + [1819] = 1168, + [1820] = 1820, + [1821] = 1169, + [1822] = 1746, + [1823] = 1701, + [1824] = 1703, + [1825] = 1825, + [1826] = 1826, + [1827] = 1172, + [1828] = 478, + [1829] = 480, + [1830] = 1830, + [1831] = 462, + [1832] = 1832, + [1833] = 434, + [1834] = 435, + [1835] = 1835, + [1836] = 490, + [1837] = 1837, + [1838] = 486, + [1839] = 1839, + [1840] = 1690, + [1841] = 1841, + [1842] = 1782, + [1843] = 487, + [1844] = 1844, + [1845] = 1845, + [1846] = 1846, + [1847] = 1167, + [1848] = 489, + [1849] = 1849, + [1850] = 426, + [1851] = 1851, + [1852] = 1812, + [1853] = 427, + [1854] = 1854, + [1855] = 425, + [1856] = 428, + [1857] = 1722, + [1858] = 429, + [1859] = 1859, + [1860] = 432, + [1861] = 1723, + [1862] = 1862, + [1863] = 1863, + [1864] = 1864, + [1865] = 1865, + [1866] = 1839, + [1867] = 484, + [1868] = 1859, + [1869] = 1690, + [1870] = 1870, + [1871] = 1782, + [1872] = 1872, + [1873] = 1690, + [1874] = 430, + [1875] = 431, + [1876] = 1782, + [1877] = 1872, + [1878] = 433, + [1879] = 436, + [1880] = 1880, + [1881] = 1770, + [1882] = 1771, + [1883] = 1772, + [1884] = 1773, + [1885] = 1774, + [1886] = 1886, + [1887] = 1887, + [1888] = 437, + [1889] = 1147, + [1890] = 1163, + [1891] = 1154, + [1892] = 1892, + [1893] = 1893, + [1894] = 1152, + [1895] = 1135, + [1896] = 438, + [1897] = 1699, + [1898] = 1898, + [1899] = 1783, + [1900] = 1151, + [1901] = 1901, + [1902] = 1728, + [1903] = 1726, + [1904] = 1690, + [1905] = 1745, + [1906] = 1782, + [1907] = 1907, + [1908] = 624, + [1909] = 1783, + [1910] = 1715, + [1911] = 1911, + [1912] = 1912, + [1913] = 1913, + [1914] = 1754, + [1915] = 1915, + [1916] = 1916, + [1917] = 1917, + [1918] = 1911, + [1919] = 1729, + [1920] = 1920, + [1921] = 1695, + [1922] = 1922, + [1923] = 1923, + [1924] = 1913, + [1925] = 1925, + [1926] = 1926, + [1927] = 1927, + [1928] = 1734, + [1929] = 1786, + [1930] = 1134, + [1931] = 1697, + [1932] = 1793, + [1933] = 1916, + [1934] = 1736, + [1935] = 1935, + [1936] = 1936, + [1937] = 1937, + [1938] = 1938, + [1939] = 621, + [1940] = 1136, + [1941] = 1941, + [1942] = 1942, + [1943] = 405, + [1944] = 1138, + [1945] = 1893, + [1946] = 1946, + [1947] = 1941, + [1948] = 1825, + [1949] = 1698, + [1950] = 1920, + [1951] = 1700, + [1952] = 1702, + [1953] = 1763, + [1954] = 1954, + [1955] = 1955, + [1956] = 1956, + [1957] = 1957, + [1958] = 443, + [1959] = 1832, + [1960] = 1960, + [1961] = 460, + [1962] = 1826, + [1963] = 1963, + [1964] = 1964, + [1965] = 1965, + [1966] = 1864, + [1967] = 1965, + [1968] = 1968, + [1969] = 1969, + [1970] = 469, + [1971] = 1971, + [1972] = 1972, + [1973] = 441, + [1974] = 1922, + [1975] = 1923, + [1976] = 1936, + [1977] = 1977, + [1978] = 1978, + [1979] = 1979, + [1980] = 1980, + [1981] = 1981, + [1982] = 1942, + [1983] = 442, + [1984] = 1713, + [1985] = 1955, + [1986] = 1986, + [1987] = 1987, + [1988] = 1988, + [1989] = 1694, + [1990] = 1830, + [1991] = 1844, + [1992] = 1849, + [1993] = 1862, + [1994] = 1886, + [1995] = 1956, + [1996] = 1963, + [1997] = 1964, + [1998] = 1972, + [1999] = 1999, + [2000] = 2000, + [2001] = 2001, + [2002] = 1755, + [2003] = 1845, + [2004] = 1709, + [2005] = 1789, + [2006] = 1801, + [2007] = 1814, + [2008] = 1898, + [2009] = 1901, + [2010] = 1907, + [2011] = 1756, + [2012] = 1165, + [2013] = 1793, + [2014] = 1787, + [2015] = 1977, + [2016] = 1712, + [2017] = 1786, + [2018] = 1738, + [2019] = 1742, + [2020] = 1986, + [2021] = 1788, + [2022] = 1999, + [2023] = 1743, + [2024] = 1757, + [2025] = 1954, + [2026] = 1978, + [2027] = 1777, + [2028] = 1713, + [2029] = 1955, + [2030] = 1845, + [2031] = 1820, + [2032] = 2032, + [2033] = 2000, + [2034] = 1837, + [2035] = 2001, + [2036] = 2036, + [2037] = 1846, + [2038] = 449, + [2039] = 451, + [2040] = 454, + [2041] = 456, + [2042] = 2042, + [2043] = 1722, + [2044] = 2044, + [2045] = 1851, + [2046] = 1968, + [2047] = 1915, + [2048] = 1926, + [2049] = 1979, + [2050] = 1969, + [2051] = 1746, + [2052] = 1927, + [2053] = 1701, + [2054] = 1703, + [2055] = 444, + [2056] = 1980, + [2057] = 1937, + [2058] = 1971, + [2059] = 1142, + [2060] = 2060, + [2061] = 2061, + [2062] = 1935, + [2063] = 1706, + [2064] = 1718, + [2065] = 1797, + [2066] = 1799, + [2067] = 2067, + [2068] = 1805, + [2069] = 2069, + [2070] = 481, + [2071] = 1816, + [2072] = 1817, + [2073] = 2073, + [2074] = 1912, + [2075] = 1818, + [2076] = 1981, + [2077] = 1917, + [2078] = 2078, + [2079] = 445, + [2080] = 446, + [2081] = 1925, + [2082] = 2082, + [2083] = 2083, + [2084] = 447, + [2085] = 448, + [2086] = 450, + [2087] = 1880, + [2088] = 2088, + [2089] = 1770, + [2090] = 1751, + [2091] = 1746, + [2092] = 2044, + [2093] = 1938, + [2094] = 1957, + [2095] = 1749, + [2096] = 1771, + [2097] = 1854, + [2098] = 1772, + [2099] = 1954, + [2100] = 464, + [2101] = 1773, + [2102] = 488, + [2103] = 2103, + [2104] = 458, + [2105] = 598, + [2106] = 1960, + [2107] = 1774, + [2108] = 1887, + [2109] = 2109, + [2110] = 1835, + [2111] = 452, + [2112] = 453, + [2113] = 1863, + [2114] = 1722, + [2115] = 1746, + [2116] = 1701, + [2117] = 1703, + [2118] = 1723, + [2119] = 1753, + [2120] = 2120, + [2121] = 610, + [2122] = 1788, + [2123] = 2123, + [2124] = 2124, + [2125] = 2125, + [2126] = 2126, + [2127] = 1539, + [2128] = 2128, + [2129] = 2125, + [2130] = 2130, + [2131] = 2130, + [2132] = 2132, + [2133] = 2133, + [2134] = 2134, + [2135] = 2135, + [2136] = 2136, + [2137] = 2137, + [2138] = 2138, + [2139] = 2139, + [2140] = 2126, + [2141] = 2141, + [2142] = 2142, + [2143] = 2143, + [2144] = 1946, + [2145] = 2145, + [2146] = 2146, + [2147] = 2147, + [2148] = 2148, + [2149] = 2143, + [2150] = 2150, + [2151] = 2135, + [2152] = 2138, + [2153] = 2153, + [2154] = 2126, + [2155] = 2130, + [2156] = 2130, + [2157] = 2143, + [2158] = 2158, + [2159] = 2159, + [2160] = 2126, + [2161] = 2161, + [2162] = 2162, + [2163] = 2125, + [2164] = 2164, + [2165] = 2165, + [2166] = 1870, + [2167] = 2145, + [2168] = 2139, + [2169] = 2169, + [2170] = 2147, + [2171] = 2171, + [2172] = 2172, + [2173] = 2173, + [2174] = 2174, + [2175] = 2164, + [2176] = 2176, + [2177] = 2177, + [2178] = 2178, + [2179] = 2126, + [2180] = 2141, + [2181] = 2181, + [2182] = 1362, + [2183] = 2148, + [2184] = 2126, + [2185] = 2185, + [2186] = 2186, + [2187] = 2125, + [2188] = 1892, + [2189] = 2067, + [2190] = 2161, + [2191] = 2191, + [2192] = 2192, + [2193] = 2165, + [2194] = 1530, + [2195] = 2195, + [2196] = 2196, + [2197] = 2142, + [2198] = 2198, + [2199] = 2186, + [2200] = 2200, + [2201] = 2145, + [2202] = 2161, + [2203] = 2145, + [2204] = 2204, + [2205] = 2134, + [2206] = 2198, + [2207] = 2207, + [2208] = 2208, + [2209] = 2209, + [2210] = 2145, + [2211] = 2181, + [2212] = 2165, + [2213] = 2198, + [2214] = 2161, + [2215] = 2215, + [2216] = 2123, + [2217] = 407, + [2218] = 2186, + [2219] = 2186, + [2220] = 2178, + [2221] = 2130, + [2222] = 2161, + [2223] = 2136, + [2224] = 2186, + [2225] = 2225, + [2226] = 2177, + [2227] = 2227, + [2228] = 2126, + [2229] = 2159, + [2230] = 2230, + [2231] = 2161, + [2232] = 2125, + [2233] = 2174, + [2234] = 2191, + [2235] = 2137, + [2236] = 2125, + [2237] = 2164, }; -static TSCharacterRange extras_character_set_1[] = { +static const TSCharacterRange extras_character_set_1[] = { {'\t', '\r'}, {' ', ' '}, {0xa0, 0xa0}, {0x1680, 0x1680}, {0x2000, 0x200b}, {0x2028, 0x2029}, {0x202f, 0x202f}, {0x205f, 0x2060}, {0x3000, 0x3000}, {0xfeff, 0xfeff}, }; -static TSCharacterRange sym_identifier_character_set_1[] = { +static const TSCharacterRange sym_identifier_character_set_1[] = { {'$', '$'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, {0x1681, 0x1fff}, {0x200c, 0x2027}, {0x202a, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, }; -static TSCharacterRange sym_identifier_character_set_2[] = { +static const TSCharacterRange sym_identifier_character_set_2[] = { {'$', '$'}, {'0', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, {0x1681, 0x1fff}, {0x200c, 0x2027}, {0x202a, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, }; @@ -6576,7 +7103,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4] = {.lex_state = 4, .external_lex_state = 2}, [5] = {.lex_state = 4, .external_lex_state = 2}, [6] = {.lex_state = 4, .external_lex_state = 2}, - [7] = {.lex_state = 125, .external_lex_state = 2}, + [7] = {.lex_state = 4, .external_lex_state = 2}, [8] = {.lex_state = 125, .external_lex_state = 2}, [9] = {.lex_state = 125, .external_lex_state = 2}, [10] = {.lex_state = 125, .external_lex_state = 2}, @@ -6625,43 +7152,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [53] = {.lex_state = 125, .external_lex_state = 2}, [54] = {.lex_state = 125, .external_lex_state = 2}, [55] = {.lex_state = 125, .external_lex_state = 2}, - [56] = {.lex_state = 124, .external_lex_state = 3}, - [57] = {.lex_state = 124, .external_lex_state = 4}, - [58] = {.lex_state = 124, .external_lex_state = 4}, - [59] = {.lex_state = 124, .external_lex_state = 3}, - [60] = {.lex_state = 124, .external_lex_state = 3}, - [61] = {.lex_state = 124, .external_lex_state = 4}, - [62] = {.lex_state = 124, .external_lex_state = 4}, - [63] = {.lex_state = 124, .external_lex_state = 4}, - [64] = {.lex_state = 124, .external_lex_state = 4}, - [65] = {.lex_state = 124, .external_lex_state = 4}, - [66] = {.lex_state = 124, .external_lex_state = 4}, - [67] = {.lex_state = 124, .external_lex_state = 4}, - [68] = {.lex_state = 124, .external_lex_state = 4}, - [69] = {.lex_state = 124, .external_lex_state = 4}, - [70] = {.lex_state = 124, .external_lex_state = 4}, - [71] = {.lex_state = 124, .external_lex_state = 4}, - [72] = {.lex_state = 124, .external_lex_state = 4}, + [56] = {.lex_state = 125, .external_lex_state = 2}, + [57] = {.lex_state = 125, .external_lex_state = 2}, + [58] = {.lex_state = 125, .external_lex_state = 2}, + [59] = {.lex_state = 125, .external_lex_state = 2}, + [60] = {.lex_state = 125, .external_lex_state = 2}, + [61] = {.lex_state = 125, .external_lex_state = 2}, + [62] = {.lex_state = 125, .external_lex_state = 2}, + [63] = {.lex_state = 125, .external_lex_state = 2}, + [64] = {.lex_state = 125, .external_lex_state = 2}, + [65] = {.lex_state = 125, .external_lex_state = 2}, + [66] = {.lex_state = 125, .external_lex_state = 2}, + [67] = {.lex_state = 125, .external_lex_state = 2}, + [68] = {.lex_state = 125, .external_lex_state = 2}, + [69] = {.lex_state = 125, .external_lex_state = 2}, + [70] = {.lex_state = 125, .external_lex_state = 2}, + [71] = {.lex_state = 125, .external_lex_state = 2}, + [72] = {.lex_state = 124, .external_lex_state = 3}, [73] = {.lex_state = 124, .external_lex_state = 4}, [74] = {.lex_state = 124, .external_lex_state = 4}, - [75] = {.lex_state = 124, .external_lex_state = 4}, - [76] = {.lex_state = 125, .external_lex_state = 2}, - [77] = {.lex_state = 125, .external_lex_state = 2}, - [78] = {.lex_state = 125, .external_lex_state = 2}, - [79] = {.lex_state = 125, .external_lex_state = 2}, - [80] = {.lex_state = 125, .external_lex_state = 2}, - [81] = {.lex_state = 125, .external_lex_state = 2}, - [82] = {.lex_state = 125, .external_lex_state = 2}, - [83] = {.lex_state = 125, .external_lex_state = 2}, - [84] = {.lex_state = 125, .external_lex_state = 2}, - [85] = {.lex_state = 125, .external_lex_state = 2}, - [86] = {.lex_state = 125, .external_lex_state = 2}, - [87] = {.lex_state = 125, .external_lex_state = 2}, - [88] = {.lex_state = 125, .external_lex_state = 2}, - [89] = {.lex_state = 125, .external_lex_state = 2}, - [90] = {.lex_state = 125, .external_lex_state = 2}, - [91] = {.lex_state = 125, .external_lex_state = 2}, - [92] = {.lex_state = 125, .external_lex_state = 2}, + [75] = {.lex_state = 124, .external_lex_state = 3}, + [76] = {.lex_state = 124, .external_lex_state = 3}, + [77] = {.lex_state = 124, .external_lex_state = 3}, + [78] = {.lex_state = 124, .external_lex_state = 4}, + [79] = {.lex_state = 124, .external_lex_state = 4}, + [80] = {.lex_state = 124, .external_lex_state = 4}, + [81] = {.lex_state = 124, .external_lex_state = 4}, + [82] = {.lex_state = 124, .external_lex_state = 4}, + [83] = {.lex_state = 124, .external_lex_state = 4}, + [84] = {.lex_state = 124, .external_lex_state = 4}, + [85] = {.lex_state = 124, .external_lex_state = 4}, + [86] = {.lex_state = 124, .external_lex_state = 4}, + [87] = {.lex_state = 124, .external_lex_state = 4}, + [88] = {.lex_state = 124, .external_lex_state = 4}, + [89] = {.lex_state = 124, .external_lex_state = 4}, + [90] = {.lex_state = 124, .external_lex_state = 4}, + [91] = {.lex_state = 124, .external_lex_state = 4}, + [92] = {.lex_state = 124, .external_lex_state = 4}, [93] = {.lex_state = 125, .external_lex_state = 2}, [94] = {.lex_state = 125, .external_lex_state = 2}, [95] = {.lex_state = 125, .external_lex_state = 2}, @@ -6678,7 +7205,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [106] = {.lex_state = 125, .external_lex_state = 2}, [107] = {.lex_state = 125, .external_lex_state = 2}, [108] = {.lex_state = 125, .external_lex_state = 2}, - [109] = {.lex_state = 125, .external_lex_state = 5}, + [109] = {.lex_state = 125, .external_lex_state = 2}, [110] = {.lex_state = 125, .external_lex_state = 2}, [111] = {.lex_state = 125, .external_lex_state = 2}, [112] = {.lex_state = 125, .external_lex_state = 2}, @@ -6700,31 +7227,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [128] = {.lex_state = 125, .external_lex_state = 2}, [129] = {.lex_state = 125, .external_lex_state = 2}, [130] = {.lex_state = 125, .external_lex_state = 2}, - [131] = {.lex_state = 5, .external_lex_state = 2}, - [132] = {.lex_state = 6, .external_lex_state = 4}, - [133] = {.lex_state = 125, .external_lex_state = 2}, - [134] = {.lex_state = 6, .external_lex_state = 4}, + [131] = {.lex_state = 125, .external_lex_state = 2}, + [132] = {.lex_state = 125, .external_lex_state = 2}, + [133] = {.lex_state = 125, .external_lex_state = 5}, + [134] = {.lex_state = 125, .external_lex_state = 2}, [135] = {.lex_state = 125, .external_lex_state = 2}, - [136] = {.lex_state = 5, .external_lex_state = 2}, - [137] = {.lex_state = 125, .external_lex_state = 2}, - [138] = {.lex_state = 6, .external_lex_state = 4}, + [136] = {.lex_state = 125, .external_lex_state = 2}, + [137] = {.lex_state = 125, .external_lex_state = 5}, + [138] = {.lex_state = 125, .external_lex_state = 2}, [139] = {.lex_state = 125, .external_lex_state = 2}, - [140] = {.lex_state = 125, .external_lex_state = 2}, + [140] = {.lex_state = 6, .external_lex_state = 6}, [141] = {.lex_state = 125, .external_lex_state = 2}, - [142] = {.lex_state = 125, .external_lex_state = 2}, - [143] = {.lex_state = 5, .external_lex_state = 2}, + [142] = {.lex_state = 6, .external_lex_state = 6}, + [143] = {.lex_state = 125, .external_lex_state = 2}, [144] = {.lex_state = 125, .external_lex_state = 2}, [145] = {.lex_state = 125, .external_lex_state = 2}, - [146] = {.lex_state = 125, .external_lex_state = 2}, - [147] = {.lex_state = 125, .external_lex_state = 2}, + [146] = {.lex_state = 6, .external_lex_state = 6}, + [147] = {.lex_state = 6, .external_lex_state = 6}, [148] = {.lex_state = 125, .external_lex_state = 2}, [149] = {.lex_state = 125, .external_lex_state = 2}, [150] = {.lex_state = 125, .external_lex_state = 2}, [151] = {.lex_state = 125, .external_lex_state = 2}, [152] = {.lex_state = 125, .external_lex_state = 2}, - [153] = {.lex_state = 125, .external_lex_state = 2}, + [153] = {.lex_state = 5, .external_lex_state = 2}, [154] = {.lex_state = 125, .external_lex_state = 2}, - [155] = {.lex_state = 125, .external_lex_state = 2}, + [155] = {.lex_state = 5, .external_lex_state = 2}, [156] = {.lex_state = 125, .external_lex_state = 2}, [157] = {.lex_state = 125, .external_lex_state = 2}, [158] = {.lex_state = 125, .external_lex_state = 2}, @@ -6741,9 +7268,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [169] = {.lex_state = 125, .external_lex_state = 2}, [170] = {.lex_state = 125, .external_lex_state = 2}, [171] = {.lex_state = 125, .external_lex_state = 2}, - [172] = {.lex_state = 5, .external_lex_state = 2}, + [172] = {.lex_state = 125, .external_lex_state = 2}, [173] = {.lex_state = 125, .external_lex_state = 2}, - [174] = {.lex_state = 125, .external_lex_state = 2}, + [174] = {.lex_state = 5, .external_lex_state = 2}, [175] = {.lex_state = 125, .external_lex_state = 2}, [176] = {.lex_state = 125, .external_lex_state = 2}, [177] = {.lex_state = 125, .external_lex_state = 2}, @@ -6772,7 +7299,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [200] = {.lex_state = 125, .external_lex_state = 2}, [201] = {.lex_state = 125, .external_lex_state = 2}, [202] = {.lex_state = 125, .external_lex_state = 2}, - [203] = {.lex_state = 125, .external_lex_state = 2}, + [203] = {.lex_state = 5, .external_lex_state = 2}, [204] = {.lex_state = 125, .external_lex_state = 2}, [205] = {.lex_state = 125, .external_lex_state = 2}, [206] = {.lex_state = 125, .external_lex_state = 2}, @@ -6781,7 +7308,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [209] = {.lex_state = 125, .external_lex_state = 2}, [210] = {.lex_state = 125, .external_lex_state = 2}, [211] = {.lex_state = 125, .external_lex_state = 2}, - [212] = {.lex_state = 125, .external_lex_state = 2}, + [212] = {.lex_state = 5, .external_lex_state = 2}, [213] = {.lex_state = 125, .external_lex_state = 2}, [214] = {.lex_state = 125, .external_lex_state = 2}, [215] = {.lex_state = 125, .external_lex_state = 2}, @@ -6867,1434 +7394,1950 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [295] = {.lex_state = 125, .external_lex_state = 2}, [296] = {.lex_state = 125, .external_lex_state = 2}, [297] = {.lex_state = 125, .external_lex_state = 2}, - [298] = {.lex_state = 6, .external_lex_state = 4}, - [299] = {.lex_state = 6, .external_lex_state = 4}, - [300] = {.lex_state = 6, .external_lex_state = 4}, - [301] = {.lex_state = 6, .external_lex_state = 4}, - [302] = {.lex_state = 6, .external_lex_state = 4}, - [303] = {.lex_state = 6, .external_lex_state = 4}, - [304] = {.lex_state = 6, .external_lex_state = 4}, - [305] = {.lex_state = 6, .external_lex_state = 4}, - [306] = {.lex_state = 6, .external_lex_state = 4}, - [307] = {.lex_state = 6, .external_lex_state = 4}, - [308] = {.lex_state = 6, .external_lex_state = 4}, - [309] = {.lex_state = 6, .external_lex_state = 3}, - [310] = {.lex_state = 6, .external_lex_state = 3}, - [311] = {.lex_state = 125, .external_lex_state = 5}, - [312] = {.lex_state = 125, .external_lex_state = 5}, - [313] = {.lex_state = 6, .external_lex_state = 4}, - [314] = {.lex_state = 6, .external_lex_state = 4}, - [315] = {.lex_state = 6, .external_lex_state = 4}, - [316] = {.lex_state = 6, .external_lex_state = 3}, - [317] = {.lex_state = 6, .external_lex_state = 4}, - [318] = {.lex_state = 6, .external_lex_state = 4}, - [319] = {.lex_state = 6, .external_lex_state = 3}, - [320] = {.lex_state = 6, .external_lex_state = 4}, - [321] = {.lex_state = 6, .external_lex_state = 4}, - [322] = {.lex_state = 6, .external_lex_state = 4}, - [323] = {.lex_state = 6, .external_lex_state = 4}, + [298] = {.lex_state = 125, .external_lex_state = 2}, + [299] = {.lex_state = 125, .external_lex_state = 2}, + [300] = {.lex_state = 125, .external_lex_state = 2}, + [301] = {.lex_state = 125, .external_lex_state = 2}, + [302] = {.lex_state = 125, .external_lex_state = 2}, + [303] = {.lex_state = 125, .external_lex_state = 2}, + [304] = {.lex_state = 125, .external_lex_state = 2}, + [305] = {.lex_state = 125, .external_lex_state = 2}, + [306] = {.lex_state = 125, .external_lex_state = 2}, + [307] = {.lex_state = 125, .external_lex_state = 2}, + [308] = {.lex_state = 125, .external_lex_state = 2}, + [309] = {.lex_state = 125, .external_lex_state = 2}, + [310] = {.lex_state = 125, .external_lex_state = 2}, + [311] = {.lex_state = 125, .external_lex_state = 2}, + [312] = {.lex_state = 125, .external_lex_state = 2}, + [313] = {.lex_state = 125, .external_lex_state = 2}, + [314] = {.lex_state = 125, .external_lex_state = 2}, + [315] = {.lex_state = 125, .external_lex_state = 2}, + [316] = {.lex_state = 125, .external_lex_state = 2}, + [317] = {.lex_state = 125, .external_lex_state = 2}, + [318] = {.lex_state = 125, .external_lex_state = 2}, + [319] = {.lex_state = 125, .external_lex_state = 2}, + [320] = {.lex_state = 125, .external_lex_state = 2}, + [321] = {.lex_state = 125, .external_lex_state = 2}, + [322] = {.lex_state = 125, .external_lex_state = 2}, + [323] = {.lex_state = 125, .external_lex_state = 2}, [324] = {.lex_state = 125, .external_lex_state = 2}, - [325] = {.lex_state = 6, .external_lex_state = 3}, + [325] = {.lex_state = 125, .external_lex_state = 2}, [326] = {.lex_state = 125, .external_lex_state = 2}, [327] = {.lex_state = 125, .external_lex_state = 2}, - [328] = {.lex_state = 6, .external_lex_state = 3}, - [329] = {.lex_state = 6, .external_lex_state = 3}, - [330] = {.lex_state = 6, .external_lex_state = 3}, - [331] = {.lex_state = 6, .external_lex_state = 3}, - [332] = {.lex_state = 6, .external_lex_state = 4}, + [328] = {.lex_state = 125, .external_lex_state = 2}, + [329] = {.lex_state = 125, .external_lex_state = 2}, + [330] = {.lex_state = 125, .external_lex_state = 2}, + [331] = {.lex_state = 125, .external_lex_state = 2}, + [332] = {.lex_state = 125, .external_lex_state = 2}, [333] = {.lex_state = 125, .external_lex_state = 2}, - [334] = {.lex_state = 6, .external_lex_state = 4}, - [335] = {.lex_state = 125, .external_lex_state = 5}, - [336] = {.lex_state = 125, .external_lex_state = 5}, - [337] = {.lex_state = 125, .external_lex_state = 5}, - [338] = {.lex_state = 125, .external_lex_state = 5}, + [334] = {.lex_state = 125, .external_lex_state = 2}, + [335] = {.lex_state = 125, .external_lex_state = 2}, + [336] = {.lex_state = 125, .external_lex_state = 2}, + [337] = {.lex_state = 125, .external_lex_state = 2}, + [338] = {.lex_state = 125, .external_lex_state = 2}, [339] = {.lex_state = 125, .external_lex_state = 2}, - [340] = {.lex_state = 125, .external_lex_state = 5}, - [341] = {.lex_state = 125, .external_lex_state = 5}, + [340] = {.lex_state = 125, .external_lex_state = 2}, + [341] = {.lex_state = 125, .external_lex_state = 2}, [342] = {.lex_state = 125, .external_lex_state = 2}, - [343] = {.lex_state = 6, .external_lex_state = 4}, - [344] = {.lex_state = 6, .external_lex_state = 3}, + [343] = {.lex_state = 125, .external_lex_state = 2}, + [344] = {.lex_state = 125, .external_lex_state = 2}, [345] = {.lex_state = 125, .external_lex_state = 2}, [346] = {.lex_state = 125, .external_lex_state = 2}, - [347] = {.lex_state = 125, .external_lex_state = 5}, - [348] = {.lex_state = 125, .external_lex_state = 5}, - [349] = {.lex_state = 125, .external_lex_state = 5}, - [350] = {.lex_state = 125, .external_lex_state = 5}, - [351] = {.lex_state = 125, .external_lex_state = 5}, - [352] = {.lex_state = 6, .external_lex_state = 4}, - [353] = {.lex_state = 125, .external_lex_state = 5}, - [354] = {.lex_state = 125, .external_lex_state = 5}, - [355] = {.lex_state = 125, .external_lex_state = 5}, - [356] = {.lex_state = 6, .external_lex_state = 3}, - [357] = {.lex_state = 6, .external_lex_state = 3}, - [358] = {.lex_state = 125, .external_lex_state = 5}, - [359] = {.lex_state = 125, .external_lex_state = 5}, - [360] = {.lex_state = 125, .external_lex_state = 2}, - [361] = {.lex_state = 125, .external_lex_state = 2}, - [362] = {.lex_state = 125, .external_lex_state = 2}, - [363] = {.lex_state = 125, .external_lex_state = 2}, - [364] = {.lex_state = 125, .external_lex_state = 2}, - [365] = {.lex_state = 125, .external_lex_state = 2}, - [366] = {.lex_state = 125, .external_lex_state = 2}, - [367] = {.lex_state = 125, .external_lex_state = 2}, - [368] = {.lex_state = 125, .external_lex_state = 2}, - [369] = {.lex_state = 125, .external_lex_state = 2}, - [370] = {.lex_state = 125, .external_lex_state = 2}, - [371] = {.lex_state = 125, .external_lex_state = 2}, - [372] = {.lex_state = 125, .external_lex_state = 2}, - [373] = {.lex_state = 125, .external_lex_state = 2}, - [374] = {.lex_state = 125, .external_lex_state = 2}, - [375] = {.lex_state = 125, .external_lex_state = 2}, - [376] = {.lex_state = 125, .external_lex_state = 2}, - [377] = {.lex_state = 125, .external_lex_state = 2}, - [378] = {.lex_state = 125, .external_lex_state = 2}, - [379] = {.lex_state = 125, .external_lex_state = 2}, - [380] = {.lex_state = 125, .external_lex_state = 2}, - [381] = {.lex_state = 125, .external_lex_state = 2}, - [382] = {.lex_state = 125, .external_lex_state = 2}, - [383] = {.lex_state = 125, .external_lex_state = 2}, - [384] = {.lex_state = 125, .external_lex_state = 2}, - [385] = {.lex_state = 125, .external_lex_state = 2}, + [347] = {.lex_state = 125, .external_lex_state = 2}, + [348] = {.lex_state = 125, .external_lex_state = 2}, + [349] = {.lex_state = 125, .external_lex_state = 2}, + [350] = {.lex_state = 125, .external_lex_state = 2}, + [351] = {.lex_state = 125, .external_lex_state = 2}, + [352] = {.lex_state = 125, .external_lex_state = 2}, + [353] = {.lex_state = 125, .external_lex_state = 2}, + [354] = {.lex_state = 125, .external_lex_state = 2}, + [355] = {.lex_state = 125, .external_lex_state = 2}, + [356] = {.lex_state = 125, .external_lex_state = 2}, + [357] = {.lex_state = 125, .external_lex_state = 2}, + [358] = {.lex_state = 6, .external_lex_state = 7}, + [359] = {.lex_state = 6, .external_lex_state = 7}, + [360] = {.lex_state = 6, .external_lex_state = 6}, + [361] = {.lex_state = 6, .external_lex_state = 7}, + [362] = {.lex_state = 6, .external_lex_state = 7}, + [363] = {.lex_state = 6, .external_lex_state = 6}, + [364] = {.lex_state = 6, .external_lex_state = 7}, + [365] = {.lex_state = 6, .external_lex_state = 7}, + [366] = {.lex_state = 6, .external_lex_state = 7}, + [367] = {.lex_state = 6, .external_lex_state = 7}, + [368] = {.lex_state = 6, .external_lex_state = 7}, + [369] = {.lex_state = 6, .external_lex_state = 7}, + [370] = {.lex_state = 6, .external_lex_state = 7}, + [371] = {.lex_state = 6, .external_lex_state = 7}, + [372] = {.lex_state = 6, .external_lex_state = 8}, + [373] = {.lex_state = 6, .external_lex_state = 8}, + [374] = {.lex_state = 6, .external_lex_state = 7}, + [375] = {.lex_state = 6, .external_lex_state = 8}, + [376] = {.lex_state = 6, .external_lex_state = 7}, + [377] = {.lex_state = 6, .external_lex_state = 8}, + [378] = {.lex_state = 6, .external_lex_state = 6}, + [379] = {.lex_state = 6, .external_lex_state = 6}, + [380] = {.lex_state = 6, .external_lex_state = 6}, + [381] = {.lex_state = 6, .external_lex_state = 8}, + [382] = {.lex_state = 6, .external_lex_state = 6}, + [383] = {.lex_state = 6, .external_lex_state = 7}, + [384] = {.lex_state = 6, .external_lex_state = 7}, + [385] = {.lex_state = 6, .external_lex_state = 7}, [386] = {.lex_state = 125, .external_lex_state = 2}, - [387] = {.lex_state = 125, .external_lex_state = 2}, - [388] = {.lex_state = 125, .external_lex_state = 2}, - [389] = {.lex_state = 125, .external_lex_state = 2}, - [390] = {.lex_state = 125, .external_lex_state = 2}, - [391] = {.lex_state = 125, .external_lex_state = 2}, - [392] = {.lex_state = 125, .external_lex_state = 2}, - [393] = {.lex_state = 125, .external_lex_state = 2}, - [394] = {.lex_state = 125, .external_lex_state = 2}, - [395] = {.lex_state = 125, .external_lex_state = 2}, + [387] = {.lex_state = 6, .external_lex_state = 8}, + [388] = {.lex_state = 6, .external_lex_state = 8}, + [389] = {.lex_state = 6, .external_lex_state = 7}, + [390] = {.lex_state = 125, .external_lex_state = 5}, + [391] = {.lex_state = 6, .external_lex_state = 8}, + [392] = {.lex_state = 6, .external_lex_state = 7}, + [393] = {.lex_state = 125, .external_lex_state = 5}, + [394] = {.lex_state = 6, .external_lex_state = 6}, + [395] = {.lex_state = 6, .external_lex_state = 9}, [396] = {.lex_state = 125, .external_lex_state = 2}, - [397] = {.lex_state = 125, .external_lex_state = 2}, - [398] = {.lex_state = 125, .external_lex_state = 2}, + [397] = {.lex_state = 6, .external_lex_state = 6}, + [398] = {.lex_state = 6, .external_lex_state = 8}, [399] = {.lex_state = 125, .external_lex_state = 2}, - [400] = {.lex_state = 125, .external_lex_state = 2}, - [401] = {.lex_state = 125, .external_lex_state = 2}, + [400] = {.lex_state = 6, .external_lex_state = 9}, + [401] = {.lex_state = 6, .external_lex_state = 8}, [402] = {.lex_state = 125, .external_lex_state = 2}, - [403] = {.lex_state = 125, .external_lex_state = 2}, - [404] = {.lex_state = 125, .external_lex_state = 2}, + [403] = {.lex_state = 125, .external_lex_state = 5}, + [404] = {.lex_state = 125, .external_lex_state = 5}, [405] = {.lex_state = 125, .external_lex_state = 2}, - [406] = {.lex_state = 125, .external_lex_state = 2}, - [407] = {.lex_state = 125, .external_lex_state = 2}, - [408] = {.lex_state = 125, .external_lex_state = 2}, - [409] = {.lex_state = 125, .external_lex_state = 2}, - [410] = {.lex_state = 6, .external_lex_state = 3}, + [406] = {.lex_state = 125, .external_lex_state = 5}, + [407] = {.lex_state = 125, .external_lex_state = 5}, + [408] = {.lex_state = 125, .external_lex_state = 5}, + [409] = {.lex_state = 125, .external_lex_state = 5}, + [410] = {.lex_state = 6, .external_lex_state = 9}, [411] = {.lex_state = 125, .external_lex_state = 2}, - [412] = {.lex_state = 125, .external_lex_state = 2}, + [412] = {.lex_state = 125, .external_lex_state = 5}, [413] = {.lex_state = 125, .external_lex_state = 2}, - [414] = {.lex_state = 125, .external_lex_state = 2}, - [415] = {.lex_state = 125, .external_lex_state = 2}, - [416] = {.lex_state = 125, .external_lex_state = 2}, - [417] = {.lex_state = 125, .external_lex_state = 2}, - [418] = {.lex_state = 125, .external_lex_state = 2}, - [419] = {.lex_state = 125, .external_lex_state = 2}, + [414] = {.lex_state = 125, .external_lex_state = 5}, + [415] = {.lex_state = 125, .external_lex_state = 5}, + [416] = {.lex_state = 125, .external_lex_state = 5}, + [417] = {.lex_state = 125, .external_lex_state = 5}, + [418] = {.lex_state = 125, .external_lex_state = 5}, + [419] = {.lex_state = 125, .external_lex_state = 5}, [420] = {.lex_state = 125, .external_lex_state = 2}, - [421] = {.lex_state = 125, .external_lex_state = 2}, - [422] = {.lex_state = 125, .external_lex_state = 2}, - [423] = {.lex_state = 125, .external_lex_state = 2}, + [421] = {.lex_state = 125, .external_lex_state = 5}, + [422] = {.lex_state = 125, .external_lex_state = 5}, + [423] = {.lex_state = 125, .external_lex_state = 5}, [424] = {.lex_state = 125, .external_lex_state = 2}, [425] = {.lex_state = 125, .external_lex_state = 2}, - [426] = {.lex_state = 6, .external_lex_state = 4}, - [427] = {.lex_state = 6, .external_lex_state = 3}, - [428] = {.lex_state = 6, .external_lex_state = 3}, - [429] = {.lex_state = 6, .external_lex_state = 3}, - [430] = {.lex_state = 6, .external_lex_state = 3}, - [431] = {.lex_state = 6, .external_lex_state = 3}, - [432] = {.lex_state = 6, .external_lex_state = 4}, - [433] = {.lex_state = 6, .external_lex_state = 3}, - [434] = {.lex_state = 6, .external_lex_state = 4}, - [435] = {.lex_state = 6, .external_lex_state = 3}, - [436] = {.lex_state = 6, .external_lex_state = 3}, - [437] = {.lex_state = 6, .external_lex_state = 4}, - [438] = {.lex_state = 6, .external_lex_state = 3}, - [439] = {.lex_state = 6, .external_lex_state = 3}, - [440] = {.lex_state = 6, .external_lex_state = 3}, - [441] = {.lex_state = 6, .external_lex_state = 3}, - [442] = {.lex_state = 6, .external_lex_state = 3}, - [443] = {.lex_state = 6, .external_lex_state = 3}, + [426] = {.lex_state = 125, .external_lex_state = 2}, + [427] = {.lex_state = 125, .external_lex_state = 2}, + [428] = {.lex_state = 125, .external_lex_state = 2}, + [429] = {.lex_state = 125, .external_lex_state = 2}, + [430] = {.lex_state = 125, .external_lex_state = 2}, + [431] = {.lex_state = 125, .external_lex_state = 2}, + [432] = {.lex_state = 125, .external_lex_state = 2}, + [433] = {.lex_state = 125, .external_lex_state = 2}, + [434] = {.lex_state = 125, .external_lex_state = 2}, + [435] = {.lex_state = 125, .external_lex_state = 2}, + [436] = {.lex_state = 125, .external_lex_state = 2}, + [437] = {.lex_state = 125, .external_lex_state = 2}, + [438] = {.lex_state = 125, .external_lex_state = 2}, + [439] = {.lex_state = 125, .external_lex_state = 2}, + [440] = {.lex_state = 125, .external_lex_state = 2}, + [441] = {.lex_state = 125, .external_lex_state = 2}, + [442] = {.lex_state = 125, .external_lex_state = 2}, + [443] = {.lex_state = 125, .external_lex_state = 2}, [444] = {.lex_state = 125, .external_lex_state = 2}, - [445] = {.lex_state = 6, .external_lex_state = 4}, - [446] = {.lex_state = 6, .external_lex_state = 4}, - [447] = {.lex_state = 6, .external_lex_state = 4}, + [445] = {.lex_state = 125, .external_lex_state = 2}, + [446] = {.lex_state = 125, .external_lex_state = 2}, + [447] = {.lex_state = 125, .external_lex_state = 2}, [448] = {.lex_state = 125, .external_lex_state = 2}, - [449] = {.lex_state = 6, .external_lex_state = 4}, - [450] = {.lex_state = 6, .external_lex_state = 4}, - [451] = {.lex_state = 6, .external_lex_state = 4}, - [452] = {.lex_state = 6, .external_lex_state = 4}, - [453] = {.lex_state = 6, .external_lex_state = 4}, - [454] = {.lex_state = 6, .external_lex_state = 4}, - [455] = {.lex_state = 6, .external_lex_state = 3}, - [456] = {.lex_state = 6, .external_lex_state = 4}, - [457] = {.lex_state = 6, .external_lex_state = 4}, - [458] = {.lex_state = 6, .external_lex_state = 4}, - [459] = {.lex_state = 125, .external_lex_state = 2}, - [460] = {.lex_state = 6, .external_lex_state = 4}, - [461] = {.lex_state = 6, .external_lex_state = 4}, + [449] = {.lex_state = 125, .external_lex_state = 2}, + [450] = {.lex_state = 125, .external_lex_state = 2}, + [451] = {.lex_state = 125, .external_lex_state = 2}, + [452] = {.lex_state = 125, .external_lex_state = 2}, + [453] = {.lex_state = 125, .external_lex_state = 2}, + [454] = {.lex_state = 125, .external_lex_state = 2}, + [455] = {.lex_state = 125, .external_lex_state = 2}, + [456] = {.lex_state = 125, .external_lex_state = 2}, + [457] = {.lex_state = 125, .external_lex_state = 2}, + [458] = {.lex_state = 125, .external_lex_state = 2}, + [459] = {.lex_state = 6, .external_lex_state = 6}, + [460] = {.lex_state = 125, .external_lex_state = 2}, + [461] = {.lex_state = 125, .external_lex_state = 2}, [462] = {.lex_state = 125, .external_lex_state = 2}, [463] = {.lex_state = 125, .external_lex_state = 2}, - [464] = {.lex_state = 6, .external_lex_state = 3}, + [464] = {.lex_state = 125, .external_lex_state = 2}, [465] = {.lex_state = 125, .external_lex_state = 2}, - [466] = {.lex_state = 6, .external_lex_state = 3}, - [467] = {.lex_state = 6, .external_lex_state = 3}, - [468] = {.lex_state = 6, .external_lex_state = 3}, - [469] = {.lex_state = 6, .external_lex_state = 3}, - [470] = {.lex_state = 6, .external_lex_state = 4}, - [471] = {.lex_state = 6, .external_lex_state = 4}, + [466] = {.lex_state = 125, .external_lex_state = 2}, + [467] = {.lex_state = 125, .external_lex_state = 2}, + [468] = {.lex_state = 125, .external_lex_state = 2}, + [469] = {.lex_state = 125, .external_lex_state = 2}, + [470] = {.lex_state = 125, .external_lex_state = 2}, + [471] = {.lex_state = 125, .external_lex_state = 2}, [472] = {.lex_state = 125, .external_lex_state = 2}, [473] = {.lex_state = 125, .external_lex_state = 2}, [474] = {.lex_state = 125, .external_lex_state = 2}, - [475] = {.lex_state = 6, .external_lex_state = 4}, - [476] = {.lex_state = 6, .external_lex_state = 4}, - [477] = {.lex_state = 6, .external_lex_state = 4}, - [478] = {.lex_state = 6, .external_lex_state = 4}, - [479] = {.lex_state = 6, .external_lex_state = 3}, - [480] = {.lex_state = 6, .external_lex_state = 3}, - [481] = {.lex_state = 6, .external_lex_state = 4}, - [482] = {.lex_state = 6, .external_lex_state = 3}, - [483] = {.lex_state = 6, .external_lex_state = 3}, - [484] = {.lex_state = 6, .external_lex_state = 3}, - [485] = {.lex_state = 6, .external_lex_state = 3}, - [486] = {.lex_state = 6, .external_lex_state = 3}, - [487] = {.lex_state = 6, .external_lex_state = 4}, - [488] = {.lex_state = 6, .external_lex_state = 3}, - [489] = {.lex_state = 6, .external_lex_state = 3}, - [490] = {.lex_state = 6, .external_lex_state = 3}, - [491] = {.lex_state = 6, .external_lex_state = 3}, - [492] = {.lex_state = 6, .external_lex_state = 3}, - [493] = {.lex_state = 6, .external_lex_state = 3}, - [494] = {.lex_state = 6, .external_lex_state = 3}, - [495] = {.lex_state = 6, .external_lex_state = 3}, - [496] = {.lex_state = 6, .external_lex_state = 3}, - [497] = {.lex_state = 6, .external_lex_state = 3}, - [498] = {.lex_state = 6, .external_lex_state = 3}, - [499] = {.lex_state = 6, .external_lex_state = 3}, - [500] = {.lex_state = 6, .external_lex_state = 3}, - [501] = {.lex_state = 6, .external_lex_state = 3}, - [502] = {.lex_state = 6, .external_lex_state = 3}, - [503] = {.lex_state = 124, .external_lex_state = 3}, - [504] = {.lex_state = 124, .external_lex_state = 3}, - [505] = {.lex_state = 124, .external_lex_state = 4}, - [506] = {.lex_state = 124, .external_lex_state = 4}, - [507] = {.lex_state = 124, .external_lex_state = 3}, - [508] = {.lex_state = 124, .external_lex_state = 4}, - [509] = {.lex_state = 124, .external_lex_state = 3}, - [510] = {.lex_state = 124, .external_lex_state = 3}, - [511] = {.lex_state = 124, .external_lex_state = 3}, - [512] = {.lex_state = 124, .external_lex_state = 3}, - [513] = {.lex_state = 124, .external_lex_state = 3}, - [514] = {.lex_state = 7, .external_lex_state = 3}, - [515] = {.lex_state = 124, .external_lex_state = 3}, - [516] = {.lex_state = 124, .external_lex_state = 3}, - [517] = {.lex_state = 124, .external_lex_state = 3}, - [518] = {.lex_state = 124, .external_lex_state = 3}, - [519] = {.lex_state = 124, .external_lex_state = 3}, - [520] = {.lex_state = 124, .external_lex_state = 3}, - [521] = {.lex_state = 124, .external_lex_state = 3}, - [522] = {.lex_state = 124, .external_lex_state = 3}, - [523] = {.lex_state = 124, .external_lex_state = 3}, - [524] = {.lex_state = 124, .external_lex_state = 3}, - [525] = {.lex_state = 124, .external_lex_state = 3}, - [526] = {.lex_state = 124, .external_lex_state = 3}, - [527] = {.lex_state = 124, .external_lex_state = 3}, - [528] = {.lex_state = 124, .external_lex_state = 3}, - [529] = {.lex_state = 124, .external_lex_state = 3}, - [530] = {.lex_state = 124, .external_lex_state = 3}, - [531] = {.lex_state = 124, .external_lex_state = 3}, - [532] = {.lex_state = 124, .external_lex_state = 3}, - [533] = {.lex_state = 124, .external_lex_state = 3}, - [534] = {.lex_state = 124, .external_lex_state = 3}, - [535] = {.lex_state = 124, .external_lex_state = 3}, - [536] = {.lex_state = 124, .external_lex_state = 3}, - [537] = {.lex_state = 124, .external_lex_state = 3}, - [538] = {.lex_state = 124, .external_lex_state = 3}, - [539] = {.lex_state = 124, .external_lex_state = 3}, - [540] = {.lex_state = 124, .external_lex_state = 3}, - [541] = {.lex_state = 124, .external_lex_state = 3}, - [542] = {.lex_state = 124, .external_lex_state = 3}, - [543] = {.lex_state = 124, .external_lex_state = 3}, - [544] = {.lex_state = 124, .external_lex_state = 3}, - [545] = {.lex_state = 124, .external_lex_state = 3}, - [546] = {.lex_state = 124, .external_lex_state = 3}, - [547] = {.lex_state = 124, .external_lex_state = 3}, - [548] = {.lex_state = 124, .external_lex_state = 3}, - [549] = {.lex_state = 124, .external_lex_state = 3}, - [550] = {.lex_state = 124, .external_lex_state = 3}, - [551] = {.lex_state = 124, .external_lex_state = 3}, - [552] = {.lex_state = 124, .external_lex_state = 3}, - [553] = {.lex_state = 124, .external_lex_state = 3}, - [554] = {.lex_state = 124, .external_lex_state = 3}, - [555] = {.lex_state = 124, .external_lex_state = 3}, - [556] = {.lex_state = 124, .external_lex_state = 3}, - [557] = {.lex_state = 124, .external_lex_state = 3}, - [558] = {.lex_state = 124, .external_lex_state = 3}, - [559] = {.lex_state = 124, .external_lex_state = 3}, - [560] = {.lex_state = 124, .external_lex_state = 3}, - [561] = {.lex_state = 124, .external_lex_state = 3}, - [562] = {.lex_state = 124, .external_lex_state = 3}, - [563] = {.lex_state = 124, .external_lex_state = 3}, - [564] = {.lex_state = 124, .external_lex_state = 3}, - [565] = {.lex_state = 124, .external_lex_state = 3}, - [566] = {.lex_state = 124, .external_lex_state = 3}, - [567] = {.lex_state = 124, .external_lex_state = 3}, - [568] = {.lex_state = 124, .external_lex_state = 3}, - [569] = {.lex_state = 124, .external_lex_state = 3}, - [570] = {.lex_state = 124, .external_lex_state = 3}, - [571] = {.lex_state = 124, .external_lex_state = 3}, - [572] = {.lex_state = 124, .external_lex_state = 3}, - [573] = {.lex_state = 124, .external_lex_state = 3}, - [574] = {.lex_state = 124, .external_lex_state = 3}, - [575] = {.lex_state = 124, .external_lex_state = 3}, - [576] = {.lex_state = 124, .external_lex_state = 3}, - [577] = {.lex_state = 124, .external_lex_state = 3}, - [578] = {.lex_state = 124, .external_lex_state = 3}, - [579] = {.lex_state = 124, .external_lex_state = 4}, - [580] = {.lex_state = 124, .external_lex_state = 3}, - [581] = {.lex_state = 124, .external_lex_state = 3}, - [582] = {.lex_state = 124, .external_lex_state = 3}, - [583] = {.lex_state = 124, .external_lex_state = 3}, - [584] = {.lex_state = 124, .external_lex_state = 4}, - [585] = {.lex_state = 124, .external_lex_state = 3}, - [586] = {.lex_state = 124, .external_lex_state = 3}, - [587] = {.lex_state = 124, .external_lex_state = 3}, - [588] = {.lex_state = 124, .external_lex_state = 3}, - [589] = {.lex_state = 124, .external_lex_state = 3}, - [590] = {.lex_state = 124, .external_lex_state = 3}, - [591] = {.lex_state = 124, .external_lex_state = 3}, - [592] = {.lex_state = 124, .external_lex_state = 3}, - [593] = {.lex_state = 124, .external_lex_state = 3}, - [594] = {.lex_state = 124, .external_lex_state = 3}, - [595] = {.lex_state = 124, .external_lex_state = 3}, - [596] = {.lex_state = 124, .external_lex_state = 3}, - [597] = {.lex_state = 124, .external_lex_state = 3}, - [598] = {.lex_state = 124, .external_lex_state = 3}, - [599] = {.lex_state = 124, .external_lex_state = 3}, - [600] = {.lex_state = 124, .external_lex_state = 3}, - [601] = {.lex_state = 124, .external_lex_state = 3}, - [602] = {.lex_state = 124, .external_lex_state = 3}, - [603] = {.lex_state = 124, .external_lex_state = 3}, - [604] = {.lex_state = 124, .external_lex_state = 4}, - [605] = {.lex_state = 124, .external_lex_state = 4}, - [606] = {.lex_state = 124, .external_lex_state = 4}, - [607] = {.lex_state = 124, .external_lex_state = 3}, - [608] = {.lex_state = 124, .external_lex_state = 4}, - [609] = {.lex_state = 124, .external_lex_state = 4}, - [610] = {.lex_state = 124, .external_lex_state = 4}, - [611] = {.lex_state = 124, .external_lex_state = 4}, - [612] = {.lex_state = 124, .external_lex_state = 4}, - [613] = {.lex_state = 124, .external_lex_state = 4}, - [614] = {.lex_state = 124, .external_lex_state = 4}, - [615] = {.lex_state = 124, .external_lex_state = 4}, - [616] = {.lex_state = 124, .external_lex_state = 4}, - [617] = {.lex_state = 124, .external_lex_state = 4}, - [618] = {.lex_state = 124, .external_lex_state = 4}, - [619] = {.lex_state = 124, .external_lex_state = 4}, - [620] = {.lex_state = 124, .external_lex_state = 4}, - [621] = {.lex_state = 124, .external_lex_state = 4}, - [622] = {.lex_state = 124, .external_lex_state = 4}, - [623] = {.lex_state = 124, .external_lex_state = 4}, - [624] = {.lex_state = 124, .external_lex_state = 4}, - [625] = {.lex_state = 124, .external_lex_state = 4}, - [626] = {.lex_state = 124, .external_lex_state = 4}, - [627] = {.lex_state = 124, .external_lex_state = 4}, - [628] = {.lex_state = 124, .external_lex_state = 4}, - [629] = {.lex_state = 124, .external_lex_state = 4}, - [630] = {.lex_state = 124, .external_lex_state = 4}, - [631] = {.lex_state = 124, .external_lex_state = 4}, - [632] = {.lex_state = 124, .external_lex_state = 3}, - [633] = {.lex_state = 124, .external_lex_state = 4}, - [634] = {.lex_state = 124, .external_lex_state = 4}, - [635] = {.lex_state = 124, .external_lex_state = 4}, - [636] = {.lex_state = 124, .external_lex_state = 4}, - [637] = {.lex_state = 124, .external_lex_state = 4}, - [638] = {.lex_state = 124, .external_lex_state = 4}, - [639] = {.lex_state = 124, .external_lex_state = 4}, - [640] = {.lex_state = 124, .external_lex_state = 4}, - [641] = {.lex_state = 124, .external_lex_state = 4}, - [642] = {.lex_state = 124, .external_lex_state = 4}, - [643] = {.lex_state = 124, .external_lex_state = 4}, - [644] = {.lex_state = 124, .external_lex_state = 4}, - [645] = {.lex_state = 124, .external_lex_state = 3}, - [646] = {.lex_state = 124, .external_lex_state = 4}, - [647] = {.lex_state = 124, .external_lex_state = 4}, - [648] = {.lex_state = 124, .external_lex_state = 4}, - [649] = {.lex_state = 124, .external_lex_state = 4}, - [650] = {.lex_state = 124, .external_lex_state = 4}, - [651] = {.lex_state = 124, .external_lex_state = 4}, - [652] = {.lex_state = 124, .external_lex_state = 4}, - [653] = {.lex_state = 124, .external_lex_state = 4}, - [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 = 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}, - [661] = {.lex_state = 124, .external_lex_state = 4}, - [662] = {.lex_state = 124, .external_lex_state = 4}, - [663] = {.lex_state = 124, .external_lex_state = 4}, - [664] = {.lex_state = 124, .external_lex_state = 4}, - [665] = {.lex_state = 7, .external_lex_state = 4}, - [666] = {.lex_state = 124, .external_lex_state = 4}, - [667] = {.lex_state = 124, .external_lex_state = 3}, - [668] = {.lex_state = 124, .external_lex_state = 3}, - [669] = {.lex_state = 124, .external_lex_state = 3}, - [670] = {.lex_state = 124, .external_lex_state = 4}, - [671] = {.lex_state = 124, .external_lex_state = 3}, - [672] = {.lex_state = 124, .external_lex_state = 4}, - [673] = {.lex_state = 124, .external_lex_state = 4}, - [674] = {.lex_state = 124, .external_lex_state = 4}, - [675] = {.lex_state = 124, .external_lex_state = 4}, - [676] = {.lex_state = 124, .external_lex_state = 4}, - [677] = {.lex_state = 124, .external_lex_state = 4}, - [678] = {.lex_state = 124, .external_lex_state = 4}, - [679] = {.lex_state = 124, .external_lex_state = 4}, - [680] = {.lex_state = 124, .external_lex_state = 4}, - [681] = {.lex_state = 124, .external_lex_state = 4}, - [682] = {.lex_state = 7, .external_lex_state = 4}, - [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 = 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 = 4}, - [697] = {.lex_state = 124, .external_lex_state = 4}, - [698] = {.lex_state = 124, .external_lex_state = 4}, - [699] = {.lex_state = 124, .external_lex_state = 4}, - [700] = {.lex_state = 124, .external_lex_state = 4}, - [701] = {.lex_state = 124, .external_lex_state = 4}, - [702] = {.lex_state = 124, .external_lex_state = 4}, - [703] = {.lex_state = 124, .external_lex_state = 4}, - [704] = {.lex_state = 124, .external_lex_state = 4}, - [705] = {.lex_state = 124, .external_lex_state = 4}, - [706] = {.lex_state = 124, .external_lex_state = 4}, - [707] = {.lex_state = 124, .external_lex_state = 4}, - [708] = {.lex_state = 124, .external_lex_state = 4}, - [709] = {.lex_state = 124, .external_lex_state = 4}, - [710] = {.lex_state = 124, .external_lex_state = 4}, - [711] = {.lex_state = 124, .external_lex_state = 4}, - [712] = {.lex_state = 124, .external_lex_state = 4}, - [713] = {.lex_state = 124, .external_lex_state = 4}, - [714] = {.lex_state = 124, .external_lex_state = 4}, - [715] = {.lex_state = 124, .external_lex_state = 4}, - [716] = {.lex_state = 124, .external_lex_state = 4}, - [717] = {.lex_state = 124, .external_lex_state = 4}, - [718] = {.lex_state = 124, .external_lex_state = 4}, - [719] = {.lex_state = 124, .external_lex_state = 4}, - [720] = {.lex_state = 124, .external_lex_state = 4}, - [721] = {.lex_state = 124, .external_lex_state = 4}, - [722] = {.lex_state = 124, .external_lex_state = 4}, - [723] = {.lex_state = 124, .external_lex_state = 4}, - [724] = {.lex_state = 124, .external_lex_state = 4}, - [725] = {.lex_state = 124, .external_lex_state = 4}, - [726] = {.lex_state = 124, .external_lex_state = 4}, - [727] = {.lex_state = 124, .external_lex_state = 4}, - [728] = {.lex_state = 124, .external_lex_state = 4}, - [729] = {.lex_state = 124, .external_lex_state = 4}, - [730] = {.lex_state = 124, .external_lex_state = 4}, - [731] = {.lex_state = 124, .external_lex_state = 4}, - [732] = {.lex_state = 124, .external_lex_state = 4}, - [733] = {.lex_state = 124, .external_lex_state = 4}, - [734] = {.lex_state = 124, .external_lex_state = 4}, - [735] = {.lex_state = 124, .external_lex_state = 3}, - [736] = {.lex_state = 124, .external_lex_state = 4}, - [737] = {.lex_state = 124, .external_lex_state = 3}, - [738] = {.lex_state = 124, .external_lex_state = 4}, - [739] = {.lex_state = 124, .external_lex_state = 3}, - [740] = {.lex_state = 124, .external_lex_state = 3}, - [741] = {.lex_state = 124, .external_lex_state = 3}, - [742] = {.lex_state = 124, .external_lex_state = 3}, - [743] = {.lex_state = 124, .external_lex_state = 4}, - [744] = {.lex_state = 124, .external_lex_state = 3}, - [745] = {.lex_state = 124, .external_lex_state = 4}, - [746] = {.lex_state = 124, .external_lex_state = 4}, - [747] = {.lex_state = 124, .external_lex_state = 4}, - [748] = {.lex_state = 124, .external_lex_state = 4}, + [475] = {.lex_state = 125, .external_lex_state = 2}, + [476] = {.lex_state = 125, .external_lex_state = 2}, + [477] = {.lex_state = 125, .external_lex_state = 2}, + [478] = {.lex_state = 125, .external_lex_state = 2}, + [479] = {.lex_state = 125, .external_lex_state = 2}, + [480] = {.lex_state = 125, .external_lex_state = 2}, + [481] = {.lex_state = 125, .external_lex_state = 2}, + [482] = {.lex_state = 6, .external_lex_state = 6}, + [483] = {.lex_state = 125, .external_lex_state = 2}, + [484] = {.lex_state = 125, .external_lex_state = 2}, + [485] = {.lex_state = 125, .external_lex_state = 2}, + [486] = {.lex_state = 125, .external_lex_state = 2}, + [487] = {.lex_state = 125, .external_lex_state = 2}, + [488] = {.lex_state = 125, .external_lex_state = 2}, + [489] = {.lex_state = 125, .external_lex_state = 2}, + [490] = {.lex_state = 125, .external_lex_state = 2}, + [491] = {.lex_state = 6, .external_lex_state = 7}, + [492] = {.lex_state = 6, .external_lex_state = 8}, + [493] = {.lex_state = 6, .external_lex_state = 7}, + [494] = {.lex_state = 6, .external_lex_state = 7}, + [495] = {.lex_state = 6, .external_lex_state = 7}, + [496] = {.lex_state = 6, .external_lex_state = 8}, + [497] = {.lex_state = 6, .external_lex_state = 9}, + [498] = {.lex_state = 6, .external_lex_state = 8}, + [499] = {.lex_state = 6, .external_lex_state = 8}, + [500] = {.lex_state = 6, .external_lex_state = 10}, + [501] = {.lex_state = 6, .external_lex_state = 10}, + [502] = {.lex_state = 6, .external_lex_state = 7}, + [503] = {.lex_state = 6, .external_lex_state = 7}, + [504] = {.lex_state = 6, .external_lex_state = 10}, + [505] = {.lex_state = 6, .external_lex_state = 10}, + [506] = {.lex_state = 6, .external_lex_state = 10}, + [507] = {.lex_state = 6, .external_lex_state = 10}, + [508] = {.lex_state = 6, .external_lex_state = 10}, + [509] = {.lex_state = 6, .external_lex_state = 10}, + [510] = {.lex_state = 6, .external_lex_state = 7}, + [511] = {.lex_state = 6, .external_lex_state = 10}, + [512] = {.lex_state = 6, .external_lex_state = 7}, + [513] = {.lex_state = 6, .external_lex_state = 7}, + [514] = {.lex_state = 6, .external_lex_state = 8}, + [515] = {.lex_state = 6, .external_lex_state = 8}, + [516] = {.lex_state = 6, .external_lex_state = 8}, + [517] = {.lex_state = 6, .external_lex_state = 8}, + [518] = {.lex_state = 6, .external_lex_state = 7}, + [519] = {.lex_state = 6, .external_lex_state = 8}, + [520] = {.lex_state = 6, .external_lex_state = 7}, + [521] = {.lex_state = 6, .external_lex_state = 7}, + [522] = {.lex_state = 6, .external_lex_state = 7}, + [523] = {.lex_state = 6, .external_lex_state = 8}, + [524] = {.lex_state = 6, .external_lex_state = 7}, + [525] = {.lex_state = 6, .external_lex_state = 11}, + [526] = {.lex_state = 125, .external_lex_state = 2}, + [527] = {.lex_state = 6, .external_lex_state = 11}, + [528] = {.lex_state = 125, .external_lex_state = 2}, + [529] = {.lex_state = 6, .external_lex_state = 8}, + [530] = {.lex_state = 125, .external_lex_state = 2}, + [531] = {.lex_state = 6, .external_lex_state = 11}, + [532] = {.lex_state = 6, .external_lex_state = 8}, + [533] = {.lex_state = 125, .external_lex_state = 2}, + [534] = {.lex_state = 125, .external_lex_state = 2}, + [535] = {.lex_state = 6, .external_lex_state = 8}, + [536] = {.lex_state = 6, .external_lex_state = 11}, + [537] = {.lex_state = 6, .external_lex_state = 11}, + [538] = {.lex_state = 6, .external_lex_state = 11}, + [539] = {.lex_state = 6, .external_lex_state = 11}, + [540] = {.lex_state = 6, .external_lex_state = 8}, + [541] = {.lex_state = 125, .external_lex_state = 2}, + [542] = {.lex_state = 6, .external_lex_state = 11}, + [543] = {.lex_state = 125, .external_lex_state = 2}, + [544] = {.lex_state = 125, .external_lex_state = 2}, + [545] = {.lex_state = 125, .external_lex_state = 2}, + [546] = {.lex_state = 6, .external_lex_state = 11}, + [547] = {.lex_state = 6, .external_lex_state = 10}, + [548] = {.lex_state = 6, .external_lex_state = 11}, + [549] = {.lex_state = 6, .external_lex_state = 10}, + [550] = {.lex_state = 6, .external_lex_state = 10}, + [551] = {.lex_state = 6, .external_lex_state = 8}, + [552] = {.lex_state = 6, .external_lex_state = 8}, + [553] = {.lex_state = 6, .external_lex_state = 9}, + [554] = {.lex_state = 6, .external_lex_state = 9}, + [555] = {.lex_state = 6, .external_lex_state = 8}, + [556] = {.lex_state = 6, .external_lex_state = 9}, + [557] = {.lex_state = 6, .external_lex_state = 8}, + [558] = {.lex_state = 6, .external_lex_state = 10}, + [559] = {.lex_state = 6, .external_lex_state = 9}, + [560] = {.lex_state = 6, .external_lex_state = 8}, + [561] = {.lex_state = 6, .external_lex_state = 8}, + [562] = {.lex_state = 6, .external_lex_state = 10}, + [563] = {.lex_state = 6, .external_lex_state = 10}, + [564] = {.lex_state = 6, .external_lex_state = 3}, + [565] = {.lex_state = 6, .external_lex_state = 3}, + [566] = {.lex_state = 6, .external_lex_state = 3}, + [567] = {.lex_state = 6, .external_lex_state = 10}, + [568] = {.lex_state = 6, .external_lex_state = 3}, + [569] = {.lex_state = 6, .external_lex_state = 3}, + [570] = {.lex_state = 6, .external_lex_state = 3}, + [571] = {.lex_state = 6, .external_lex_state = 10}, + [572] = {.lex_state = 6, .external_lex_state = 3}, + [573] = {.lex_state = 6, .external_lex_state = 3}, + [574] = {.lex_state = 6, .external_lex_state = 3}, + [575] = {.lex_state = 124, .external_lex_state = 11}, + [576] = {.lex_state = 124, .external_lex_state = 10}, + [577] = {.lex_state = 124, .external_lex_state = 10}, + [578] = {.lex_state = 124, .external_lex_state = 11}, + [579] = {.lex_state = 124, .external_lex_state = 11}, + [580] = {.lex_state = 124, .external_lex_state = 10}, + [581] = {.lex_state = 124, .external_lex_state = 10}, + [582] = {.lex_state = 124, .external_lex_state = 11}, + [583] = {.lex_state = 124, .external_lex_state = 11}, + [584] = {.lex_state = 124, .external_lex_state = 10}, + [585] = {.lex_state = 124, .external_lex_state = 10}, + [586] = {.lex_state = 124, .external_lex_state = 10}, + [587] = {.lex_state = 124, .external_lex_state = 10}, + [588] = {.lex_state = 124, .external_lex_state = 10}, + [589] = {.lex_state = 124, .external_lex_state = 10}, + [590] = {.lex_state = 124, .external_lex_state = 10}, + [591] = {.lex_state = 124, .external_lex_state = 10}, + [592] = {.lex_state = 124, .external_lex_state = 10}, + [593] = {.lex_state = 124, .external_lex_state = 10}, + [594] = {.lex_state = 124, .external_lex_state = 10}, + [595] = {.lex_state = 124, .external_lex_state = 10}, + [596] = {.lex_state = 124, .external_lex_state = 10}, + [597] = {.lex_state = 124, .external_lex_state = 10}, + [598] = {.lex_state = 124, .external_lex_state = 10}, + [599] = {.lex_state = 124, .external_lex_state = 10}, + [600] = {.lex_state = 124, .external_lex_state = 10}, + [601] = {.lex_state = 124, .external_lex_state = 10}, + [602] = {.lex_state = 124, .external_lex_state = 10}, + [603] = {.lex_state = 124, .external_lex_state = 10}, + [604] = {.lex_state = 124, .external_lex_state = 10}, + [605] = {.lex_state = 7, .external_lex_state = 10}, + [606] = {.lex_state = 124, .external_lex_state = 10}, + [607] = {.lex_state = 124, .external_lex_state = 10}, + [608] = {.lex_state = 124, .external_lex_state = 10}, + [609] = {.lex_state = 124, .external_lex_state = 10}, + [610] = {.lex_state = 124, .external_lex_state = 10}, + [611] = {.lex_state = 124, .external_lex_state = 10}, + [612] = {.lex_state = 124, .external_lex_state = 10}, + [613] = {.lex_state = 124, .external_lex_state = 10}, + [614] = {.lex_state = 124, .external_lex_state = 10}, + [615] = {.lex_state = 124, .external_lex_state = 10}, + [616] = {.lex_state = 124, .external_lex_state = 10}, + [617] = {.lex_state = 124, .external_lex_state = 10}, + [618] = {.lex_state = 124, .external_lex_state = 10}, + [619] = {.lex_state = 124, .external_lex_state = 10}, + [620] = {.lex_state = 124, .external_lex_state = 10}, + [621] = {.lex_state = 124, .external_lex_state = 10}, + [622] = {.lex_state = 124, .external_lex_state = 10}, + [623] = {.lex_state = 124, .external_lex_state = 10}, + [624] = {.lex_state = 124, .external_lex_state = 10}, + [625] = {.lex_state = 124, .external_lex_state = 10}, + [626] = {.lex_state = 124, .external_lex_state = 11}, + [627] = {.lex_state = 124, .external_lex_state = 11}, + [628] = {.lex_state = 124, .external_lex_state = 11}, + [629] = {.lex_state = 124, .external_lex_state = 11}, + [630] = {.lex_state = 124, .external_lex_state = 11}, + [631] = {.lex_state = 124, .external_lex_state = 10}, + [632] = {.lex_state = 124, .external_lex_state = 10}, + [633] = {.lex_state = 124, .external_lex_state = 11}, + [634] = {.lex_state = 124, .external_lex_state = 10}, + [635] = {.lex_state = 124, .external_lex_state = 11}, + [636] = {.lex_state = 124, .external_lex_state = 11}, + [637] = {.lex_state = 124, .external_lex_state = 11}, + [638] = {.lex_state = 124, .external_lex_state = 11}, + [639] = {.lex_state = 124, .external_lex_state = 11}, + [640] = {.lex_state = 124, .external_lex_state = 11}, + [641] = {.lex_state = 124, .external_lex_state = 11}, + [642] = {.lex_state = 124, .external_lex_state = 12}, + [643] = {.lex_state = 124, .external_lex_state = 12}, + [644] = {.lex_state = 124, .external_lex_state = 11}, + [645] = {.lex_state = 124, .external_lex_state = 13}, + [646] = {.lex_state = 124, .external_lex_state = 11}, + [647] = {.lex_state = 124, .external_lex_state = 13}, + [648] = {.lex_state = 124, .external_lex_state = 13}, + [649] = {.lex_state = 124, .external_lex_state = 13}, + [650] = {.lex_state = 124, .external_lex_state = 13}, + [651] = {.lex_state = 124, .external_lex_state = 11}, + [652] = {.lex_state = 124, .external_lex_state = 11}, + [653] = {.lex_state = 124, .external_lex_state = 11}, + [654] = {.lex_state = 124, .external_lex_state = 13}, + [655] = {.lex_state = 124, .external_lex_state = 13}, + [656] = {.lex_state = 124, .external_lex_state = 13}, + [657] = {.lex_state = 124, .external_lex_state = 13}, + [658] = {.lex_state = 124, .external_lex_state = 13}, + [659] = {.lex_state = 124, .external_lex_state = 11}, + [660] = {.lex_state = 124, .external_lex_state = 13}, + [661] = {.lex_state = 124, .external_lex_state = 13}, + [662] = {.lex_state = 124, .external_lex_state = 13}, + [663] = {.lex_state = 124, .external_lex_state = 13}, + [664] = {.lex_state = 124, .external_lex_state = 13}, + [665] = {.lex_state = 124, .external_lex_state = 11}, + [666] = {.lex_state = 124, .external_lex_state = 13}, + [667] = {.lex_state = 124, .external_lex_state = 11}, + [668] = {.lex_state = 124, .external_lex_state = 11}, + [669] = {.lex_state = 124, .external_lex_state = 11}, + [670] = {.lex_state = 124, .external_lex_state = 11}, + [671] = {.lex_state = 124, .external_lex_state = 11}, + [672] = {.lex_state = 124, .external_lex_state = 11}, + [673] = {.lex_state = 124, .external_lex_state = 11}, + [674] = {.lex_state = 124, .external_lex_state = 11}, + [675] = {.lex_state = 124, .external_lex_state = 11}, + [676] = {.lex_state = 124, .external_lex_state = 11}, + [677] = {.lex_state = 124, .external_lex_state = 11}, + [678] = {.lex_state = 124, .external_lex_state = 11}, + [679] = {.lex_state = 124, .external_lex_state = 11}, + [680] = {.lex_state = 124, .external_lex_state = 11}, + [681] = {.lex_state = 124, .external_lex_state = 11}, + [682] = {.lex_state = 124, .external_lex_state = 10}, + [683] = {.lex_state = 124, .external_lex_state = 11}, + [684] = {.lex_state = 124, .external_lex_state = 11}, + [685] = {.lex_state = 124, .external_lex_state = 11}, + [686] = {.lex_state = 124, .external_lex_state = 11}, + [687] = {.lex_state = 124, .external_lex_state = 11}, + [688] = {.lex_state = 124, .external_lex_state = 11}, + [689] = {.lex_state = 124, .external_lex_state = 10}, + [690] = {.lex_state = 124, .external_lex_state = 10}, + [691] = {.lex_state = 124, .external_lex_state = 13}, + [692] = {.lex_state = 124, .external_lex_state = 13}, + [693] = {.lex_state = 124, .external_lex_state = 10}, + [694] = {.lex_state = 124, .external_lex_state = 11}, + [695] = {.lex_state = 124, .external_lex_state = 11}, + [696] = {.lex_state = 124, .external_lex_state = 10}, + [697] = {.lex_state = 7, .external_lex_state = 11}, + [698] = {.lex_state = 124, .external_lex_state = 11}, + [699] = {.lex_state = 124, .external_lex_state = 13}, + [700] = {.lex_state = 124, .external_lex_state = 13}, + [701] = {.lex_state = 124, .external_lex_state = 10}, + [702] = {.lex_state = 124, .external_lex_state = 13}, + [703] = {.lex_state = 124, .external_lex_state = 11}, + [704] = {.lex_state = 124, .external_lex_state = 13}, + [705] = {.lex_state = 124, .external_lex_state = 11}, + [706] = {.lex_state = 124, .external_lex_state = 11}, + [707] = {.lex_state = 124, .external_lex_state = 11}, + [708] = {.lex_state = 7, .external_lex_state = 11}, + [709] = {.lex_state = 124, .external_lex_state = 11}, + [710] = {.lex_state = 124, .external_lex_state = 11}, + [711] = {.lex_state = 124, .external_lex_state = 11}, + [712] = {.lex_state = 124, .external_lex_state = 11}, + [713] = {.lex_state = 124, .external_lex_state = 11}, + [714] = {.lex_state = 124, .external_lex_state = 11}, + [715] = {.lex_state = 124, .external_lex_state = 11}, + [716] = {.lex_state = 124, .external_lex_state = 11}, + [717] = {.lex_state = 124, .external_lex_state = 13}, + [718] = {.lex_state = 124, .external_lex_state = 13}, + [719] = {.lex_state = 124, .external_lex_state = 13}, + [720] = {.lex_state = 124, .external_lex_state = 13}, + [721] = {.lex_state = 124, .external_lex_state = 13}, + [722] = {.lex_state = 124, .external_lex_state = 10}, + [723] = {.lex_state = 124, .external_lex_state = 10}, + [724] = {.lex_state = 124, .external_lex_state = 13}, + [725] = {.lex_state = 124, .external_lex_state = 10}, + [726] = {.lex_state = 124, .external_lex_state = 13}, + [727] = {.lex_state = 124, .external_lex_state = 13}, + [728] = {.lex_state = 124, .external_lex_state = 13}, + [729] = {.lex_state = 124, .external_lex_state = 13}, + [730] = {.lex_state = 124, .external_lex_state = 13}, + [731] = {.lex_state = 124, .external_lex_state = 13}, + [732] = {.lex_state = 124, .external_lex_state = 13}, + [733] = {.lex_state = 124, .external_lex_state = 10}, + [734] = {.lex_state = 124, .external_lex_state = 13}, + [735] = {.lex_state = 124, .external_lex_state = 10}, + [736] = {.lex_state = 124, .external_lex_state = 13}, + [737] = {.lex_state = 124, .external_lex_state = 13}, + [738] = {.lex_state = 124, .external_lex_state = 13}, + [739] = {.lex_state = 124, .external_lex_state = 13}, + [740] = {.lex_state = 124, .external_lex_state = 13}, + [741] = {.lex_state = 124, .external_lex_state = 13}, + [742] = {.lex_state = 124, .external_lex_state = 11}, + [743] = {.lex_state = 124, .external_lex_state = 13}, + [744] = {.lex_state = 124, .external_lex_state = 13}, + [745] = {.lex_state = 124, .external_lex_state = 11}, + [746] = {.lex_state = 124, .external_lex_state = 13}, + [747] = {.lex_state = 124, .external_lex_state = 13}, + [748] = {.lex_state = 124, .external_lex_state = 13}, [749] = {.lex_state = 124, .external_lex_state = 4}, - [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}, + [750] = {.lex_state = 124, .external_lex_state = 12}, + [751] = {.lex_state = 124, .external_lex_state = 12}, + [752] = {.lex_state = 124, .external_lex_state = 12}, + [753] = {.lex_state = 124, .external_lex_state = 12}, + [754] = {.lex_state = 124, .external_lex_state = 12}, + [755] = {.lex_state = 124, .external_lex_state = 12}, + [756] = {.lex_state = 124, .external_lex_state = 12}, [757] = {.lex_state = 124, .external_lex_state = 3}, - [758] = {.lex_state = 124, .external_lex_state = 4}, - [759] = {.lex_state = 124, .external_lex_state = 3}, - [760] = {.lex_state = 124, .external_lex_state = 3}, - [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 = 3}, + [758] = {.lex_state = 124, .external_lex_state = 12}, + [759] = {.lex_state = 124, .external_lex_state = 12}, + [760] = {.lex_state = 124, .external_lex_state = 10}, + [761] = {.lex_state = 124, .external_lex_state = 10}, + [762] = {.lex_state = 124, .external_lex_state = 10}, + [763] = {.lex_state = 124, .external_lex_state = 10}, + [764] = {.lex_state = 124, .external_lex_state = 12}, + [765] = {.lex_state = 124, .external_lex_state = 12}, [766] = {.lex_state = 124, .external_lex_state = 3}, - [767] = {.lex_state = 124, .external_lex_state = 3}, - [768] = {.lex_state = 124, .external_lex_state = 3}, - [769] = {.lex_state = 124, .external_lex_state = 3}, - [770] = {.lex_state = 124, .external_lex_state = 3}, - [771] = {.lex_state = 124, .external_lex_state = 3}, - [772] = {.lex_state = 124, .external_lex_state = 3}, - [773] = {.lex_state = 124, .external_lex_state = 3}, - [774] = {.lex_state = 124, .external_lex_state = 3}, - [775] = {.lex_state = 124, .external_lex_state = 3}, - [776] = {.lex_state = 124, .external_lex_state = 3}, - [777] = {.lex_state = 124, .external_lex_state = 3}, - [778] = {.lex_state = 124, .external_lex_state = 3}, - [779] = {.lex_state = 124, .external_lex_state = 3}, - [780] = {.lex_state = 124, .external_lex_state = 3}, - [781] = {.lex_state = 124, .external_lex_state = 3}, - [782] = {.lex_state = 124, .external_lex_state = 3}, - [783] = {.lex_state = 124, .external_lex_state = 3}, - [784] = {.lex_state = 124, .external_lex_state = 3}, + [767] = {.lex_state = 124, .external_lex_state = 12}, + [768] = {.lex_state = 124, .external_lex_state = 12}, + [769] = {.lex_state = 124, .external_lex_state = 12}, + [770] = {.lex_state = 124, .external_lex_state = 12}, + [771] = {.lex_state = 124, .external_lex_state = 12}, + [772] = {.lex_state = 124, .external_lex_state = 12}, + [773] = {.lex_state = 124, .external_lex_state = 12}, + [774] = {.lex_state = 124, .external_lex_state = 12}, + [775] = {.lex_state = 124, .external_lex_state = 12}, + [776] = {.lex_state = 124, .external_lex_state = 12}, + [777] = {.lex_state = 124, .external_lex_state = 12}, + [778] = {.lex_state = 124, .external_lex_state = 12}, + [779] = {.lex_state = 124, .external_lex_state = 12}, + [780] = {.lex_state = 124, .external_lex_state = 12}, + [781] = {.lex_state = 4, .external_lex_state = 14}, + [782] = {.lex_state = 124, .external_lex_state = 12}, + [783] = {.lex_state = 124, .external_lex_state = 13}, + [784] = {.lex_state = 7, .external_lex_state = 10}, [785] = {.lex_state = 124, .external_lex_state = 3}, [786] = {.lex_state = 124, .external_lex_state = 3}, - [787] = {.lex_state = 124, .external_lex_state = 3}, + [787] = {.lex_state = 124, .external_lex_state = 12}, [788] = {.lex_state = 124, .external_lex_state = 3}, - [789] = {.lex_state = 124, .external_lex_state = 3}, - [790] = {.lex_state = 124, .external_lex_state = 3}, - [791] = {.lex_state = 124, .external_lex_state = 3}, - [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 = 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}, - [799] = {.lex_state = 124, .external_lex_state = 3}, - [800] = {.lex_state = 124, .external_lex_state = 3}, - [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 = 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}, - [808] = {.lex_state = 124, .external_lex_state = 3}, - [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 = 3}, + [789] = {.lex_state = 124, .external_lex_state = 12}, + [790] = {.lex_state = 124, .external_lex_state = 12}, + [791] = {.lex_state = 124, .external_lex_state = 12}, + [792] = {.lex_state = 124, .external_lex_state = 4}, + [793] = {.lex_state = 124, .external_lex_state = 4}, + [794] = {.lex_state = 124, .external_lex_state = 12}, + [795] = {.lex_state = 7, .external_lex_state = 3}, + [796] = {.lex_state = 4, .external_lex_state = 14}, + [797] = {.lex_state = 124, .external_lex_state = 12}, + [798] = {.lex_state = 124, .external_lex_state = 12}, + [799] = {.lex_state = 124, .external_lex_state = 12}, + [800] = {.lex_state = 124, .external_lex_state = 12}, + [801] = {.lex_state = 124, .external_lex_state = 12}, + [802] = {.lex_state = 124, .external_lex_state = 12}, + [803] = {.lex_state = 124, .external_lex_state = 12}, + [804] = {.lex_state = 124, .external_lex_state = 12}, + [805] = {.lex_state = 124, .external_lex_state = 12}, + [806] = {.lex_state = 124, .external_lex_state = 12}, + [807] = {.lex_state = 4, .external_lex_state = 14}, + [808] = {.lex_state = 124, .external_lex_state = 12}, + [809] = {.lex_state = 124, .external_lex_state = 12}, + [810] = {.lex_state = 4, .external_lex_state = 14}, + [811] = {.lex_state = 124, .external_lex_state = 12}, + [812] = {.lex_state = 4, .external_lex_state = 14}, [813] = {.lex_state = 124, .external_lex_state = 3}, - [814] = {.lex_state = 124, .external_lex_state = 3}, - [815] = {.lex_state = 124, .external_lex_state = 4}, - [816] = {.lex_state = 124, .external_lex_state = 3}, - [817] = {.lex_state = 124, .external_lex_state = 3}, - [818] = {.lex_state = 124, .external_lex_state = 3}, - [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 = 7, .external_lex_state = 3}, - [823] = {.lex_state = 4, .external_lex_state = 2}, - [824] = {.lex_state = 4, .external_lex_state = 2}, - [825] = {.lex_state = 124, .external_lex_state = 4}, - [826] = {.lex_state = 4, .external_lex_state = 2}, - [827] = {.lex_state = 4, .external_lex_state = 2}, - [828] = {.lex_state = 4, .external_lex_state = 2}, - [829] = {.lex_state = 4, .external_lex_state = 2}, - [830] = {.lex_state = 124, .external_lex_state = 3}, - [831] = {.lex_state = 124, .external_lex_state = 4}, - [832] = {.lex_state = 124, .external_lex_state = 3}, - [833] = {.lex_state = 124, .external_lex_state = 3}, - [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 = 3}, - [839] = {.lex_state = 124, .external_lex_state = 3}, - [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 = 3}, - [845] = {.lex_state = 124, .external_lex_state = 3}, - [846] = {.lex_state = 124, .external_lex_state = 3}, - [847] = {.lex_state = 124, .external_lex_state = 3}, - [848] = {.lex_state = 124, .external_lex_state = 3}, - [849] = {.lex_state = 124, .external_lex_state = 3}, - [850] = {.lex_state = 124, .external_lex_state = 3}, - [851] = {.lex_state = 124, .external_lex_state = 3}, - [852] = {.lex_state = 124, .external_lex_state = 3}, - [853] = {.lex_state = 124, .external_lex_state = 3}, - [854] = {.lex_state = 124, .external_lex_state = 3}, - [855] = {.lex_state = 124, .external_lex_state = 3}, - [856] = {.lex_state = 124, .external_lex_state = 3}, - [857] = {.lex_state = 124, .external_lex_state = 3}, + [814] = {.lex_state = 4, .external_lex_state = 14}, + [815] = {.lex_state = 124, .external_lex_state = 12}, + [816] = {.lex_state = 4, .external_lex_state = 14}, + [817] = {.lex_state = 124, .external_lex_state = 12}, + [818] = {.lex_state = 124, .external_lex_state = 12}, + [819] = {.lex_state = 124, .external_lex_state = 12}, + [820] = {.lex_state = 124, .external_lex_state = 12}, + [821] = {.lex_state = 124, .external_lex_state = 12}, + [822] = {.lex_state = 124, .external_lex_state = 12}, + [823] = {.lex_state = 124, .external_lex_state = 12}, + [824] = {.lex_state = 124, .external_lex_state = 3}, + [825] = {.lex_state = 124, .external_lex_state = 12}, + [826] = {.lex_state = 124, .external_lex_state = 12}, + [827] = {.lex_state = 124, .external_lex_state = 12}, + [828] = {.lex_state = 124, .external_lex_state = 12}, + [829] = {.lex_state = 124, .external_lex_state = 12}, + [830] = {.lex_state = 124, .external_lex_state = 10}, + [831] = {.lex_state = 124, .external_lex_state = 12}, + [832] = {.lex_state = 124, .external_lex_state = 12}, + [833] = {.lex_state = 124, .external_lex_state = 12}, + [834] = {.lex_state = 124, .external_lex_state = 12}, + [835] = {.lex_state = 124, .external_lex_state = 12}, + [836] = {.lex_state = 124, .external_lex_state = 12}, + [837] = {.lex_state = 124, .external_lex_state = 12}, + [838] = {.lex_state = 124, .external_lex_state = 12}, + [839] = {.lex_state = 124, .external_lex_state = 12}, + [840] = {.lex_state = 124, .external_lex_state = 12}, + [841] = {.lex_state = 124, .external_lex_state = 12}, + [842] = {.lex_state = 124, .external_lex_state = 12}, + [843] = {.lex_state = 124, .external_lex_state = 12}, + [844] = {.lex_state = 124, .external_lex_state = 12}, + [845] = {.lex_state = 124, .external_lex_state = 12}, + [846] = {.lex_state = 124, .external_lex_state = 12}, + [847] = {.lex_state = 124, .external_lex_state = 12}, + [848] = {.lex_state = 124, .external_lex_state = 12}, + [849] = {.lex_state = 124, .external_lex_state = 12}, + [850] = {.lex_state = 124, .external_lex_state = 12}, + [851] = {.lex_state = 124, .external_lex_state = 12}, + [852] = {.lex_state = 124, .external_lex_state = 12}, + [853] = {.lex_state = 124, .external_lex_state = 13}, + [854] = {.lex_state = 124, .external_lex_state = 12}, + [855] = {.lex_state = 124, .external_lex_state = 12}, + [856] = {.lex_state = 124, .external_lex_state = 10}, + [857] = {.lex_state = 124, .external_lex_state = 12}, [858] = {.lex_state = 124, .external_lex_state = 3}, - [859] = {.lex_state = 124, .external_lex_state = 3}, + [859] = {.lex_state = 124, .external_lex_state = 13}, [860] = {.lex_state = 124, .external_lex_state = 3}, [861] = {.lex_state = 124, .external_lex_state = 3}, - [862] = {.lex_state = 124, .external_lex_state = 3}, + [862] = {.lex_state = 124, .external_lex_state = 13}, [863] = {.lex_state = 124, .external_lex_state = 3}, [864] = {.lex_state = 124, .external_lex_state = 3}, [865] = {.lex_state = 124, .external_lex_state = 3}, - [866] = {.lex_state = 4, .external_lex_state = 2}, + [866] = {.lex_state = 124, .external_lex_state = 3}, [867] = {.lex_state = 124, .external_lex_state = 3}, [868] = {.lex_state = 124, .external_lex_state = 3}, - [869] = {.lex_state = 4, .external_lex_state = 2}, - [870] = {.lex_state = 4, .external_lex_state = 2}, - [871] = {.lex_state = 4, .external_lex_state = 2}, - [872] = {.lex_state = 4, .external_lex_state = 2}, - [873] = {.lex_state = 4, .external_lex_state = 2}, - [874] = {.lex_state = 4, .external_lex_state = 2}, - [875] = {.lex_state = 4, .external_lex_state = 2}, - [876] = {.lex_state = 4, .external_lex_state = 2}, - [877] = {.lex_state = 125, .external_lex_state = 2}, - [878] = {.lex_state = 125, .external_lex_state = 2}, - [879] = {.lex_state = 4, .external_lex_state = 2}, - [880] = {.lex_state = 125, .external_lex_state = 2}, - [881] = {.lex_state = 125, .external_lex_state = 2}, - [882] = {.lex_state = 125, .external_lex_state = 2}, - [883] = {.lex_state = 125, .external_lex_state = 2}, - [884] = {.lex_state = 125, .external_lex_state = 2}, - [885] = {.lex_state = 125, .external_lex_state = 2}, - [886] = {.lex_state = 125, .external_lex_state = 2}, - [887] = {.lex_state = 125, .external_lex_state = 2}, - [888] = {.lex_state = 125, .external_lex_state = 2}, - [889] = {.lex_state = 125, .external_lex_state = 2}, - [890] = {.lex_state = 125, .external_lex_state = 2}, - [891] = {.lex_state = 125, .external_lex_state = 2}, - [892] = {.lex_state = 125, .external_lex_state = 2}, - [893] = {.lex_state = 125, .external_lex_state = 2}, - [894] = {.lex_state = 125, .external_lex_state = 2}, - [895] = {.lex_state = 125, .external_lex_state = 5}, - [896] = {.lex_state = 125, .external_lex_state = 2}, - [897] = {.lex_state = 125, .external_lex_state = 2}, - [898] = {.lex_state = 125, .external_lex_state = 2}, - [899] = {.lex_state = 125, .external_lex_state = 2}, - [900] = {.lex_state = 125, .external_lex_state = 2}, - [901] = {.lex_state = 125, .external_lex_state = 2}, - [902] = {.lex_state = 125, .external_lex_state = 2}, - [903] = {.lex_state = 4, .external_lex_state = 2}, - [904] = {.lex_state = 125, .external_lex_state = 2}, - [905] = {.lex_state = 125, .external_lex_state = 2}, - [906] = {.lex_state = 125, .external_lex_state = 5}, - [907] = {.lex_state = 125, .external_lex_state = 5}, - [908] = {.lex_state = 125, .external_lex_state = 5}, - [909] = {.lex_state = 125, .external_lex_state = 2}, - [910] = {.lex_state = 4, .external_lex_state = 2}, - [911] = {.lex_state = 125, .external_lex_state = 5}, - [912] = {.lex_state = 125, .external_lex_state = 2}, - [913] = {.lex_state = 125, .external_lex_state = 5}, - [914] = {.lex_state = 125, .external_lex_state = 2}, - [915] = {.lex_state = 4, .external_lex_state = 2}, - [916] = {.lex_state = 125, .external_lex_state = 5}, - [917] = {.lex_state = 9, .external_lex_state = 2}, - [918] = {.lex_state = 125, .external_lex_state = 5}, - [919] = {.lex_state = 125, .external_lex_state = 5}, - [920] = {.lex_state = 125, .external_lex_state = 5}, - [921] = {.lex_state = 125, .external_lex_state = 5}, - [922] = {.lex_state = 125, .external_lex_state = 2}, - [923] = {.lex_state = 125, .external_lex_state = 5}, - [924] = {.lex_state = 4, .external_lex_state = 2}, - [925] = {.lex_state = 4, .external_lex_state = 2}, - [926] = {.lex_state = 4, .external_lex_state = 2}, - [927] = {.lex_state = 4, .external_lex_state = 2}, - [928] = {.lex_state = 4, .external_lex_state = 2}, - [929] = {.lex_state = 9, .external_lex_state = 2}, - [930] = {.lex_state = 4, .external_lex_state = 2}, - [931] = {.lex_state = 4, .external_lex_state = 2}, - [932] = {.lex_state = 4, .external_lex_state = 2}, - [933] = {.lex_state = 4, .external_lex_state = 2}, - [934] = {.lex_state = 4, .external_lex_state = 2}, - [935] = {.lex_state = 4, .external_lex_state = 2}, - [936] = {.lex_state = 4, .external_lex_state = 2}, - [937] = {.lex_state = 4, .external_lex_state = 2}, - [938] = {.lex_state = 4, .external_lex_state = 2}, - [939] = {.lex_state = 4, .external_lex_state = 2}, - [940] = {.lex_state = 4, .external_lex_state = 2}, - [941] = {.lex_state = 4, .external_lex_state = 2}, - [942] = {.lex_state = 4, .external_lex_state = 2}, - [943] = {.lex_state = 4, .external_lex_state = 2}, - [944] = {.lex_state = 4, .external_lex_state = 2}, - [945] = {.lex_state = 4, .external_lex_state = 2}, - [946] = {.lex_state = 4, .external_lex_state = 2}, - [947] = {.lex_state = 4, .external_lex_state = 2}, - [948] = {.lex_state = 4, .external_lex_state = 5}, - [949] = {.lex_state = 4, .external_lex_state = 2}, - [950] = {.lex_state = 4, .external_lex_state = 2}, - [951] = {.lex_state = 4, .external_lex_state = 2}, - [952] = {.lex_state = 4, .external_lex_state = 2}, - [953] = {.lex_state = 4, .external_lex_state = 5}, - [954] = {.lex_state = 4, .external_lex_state = 2}, - [955] = {.lex_state = 4, .external_lex_state = 2}, - [956] = {.lex_state = 4, .external_lex_state = 2}, - [957] = {.lex_state = 4, .external_lex_state = 2}, - [958] = {.lex_state = 4, .external_lex_state = 2}, - [959] = {.lex_state = 125, .external_lex_state = 2}, - [960] = {.lex_state = 125, .external_lex_state = 2}, - [961] = {.lex_state = 125, .external_lex_state = 2}, - [962] = {.lex_state = 4, .external_lex_state = 2}, - [963] = {.lex_state = 4, .external_lex_state = 2}, - [964] = {.lex_state = 125, .external_lex_state = 2}, - [965] = {.lex_state = 125, .external_lex_state = 2}, - [966] = {.lex_state = 125, .external_lex_state = 2}, - [967] = {.lex_state = 125, .external_lex_state = 2}, - [968] = {.lex_state = 125, .external_lex_state = 2}, - [969] = {.lex_state = 4, .external_lex_state = 2}, - [970] = {.lex_state = 125, .external_lex_state = 2}, - [971] = {.lex_state = 4, .external_lex_state = 2}, - [972] = {.lex_state = 125, .external_lex_state = 2}, - [973] = {.lex_state = 125, .external_lex_state = 2}, - [974] = {.lex_state = 125, .external_lex_state = 2}, - [975] = {.lex_state = 125, .external_lex_state = 2}, - [976] = {.lex_state = 4, .external_lex_state = 2}, - [977] = {.lex_state = 125, .external_lex_state = 2}, - [978] = {.lex_state = 125, .external_lex_state = 2}, - [979] = {.lex_state = 125, .external_lex_state = 2}, - [980] = {.lex_state = 125, .external_lex_state = 2}, - [981] = {.lex_state = 125, .external_lex_state = 2}, - [982] = {.lex_state = 125, .external_lex_state = 2}, - [983] = {.lex_state = 125, .external_lex_state = 2}, - [984] = {.lex_state = 125, .external_lex_state = 2}, - [985] = {.lex_state = 125, .external_lex_state = 2}, - [986] = {.lex_state = 125, .external_lex_state = 2}, - [987] = {.lex_state = 125, .external_lex_state = 2}, - [988] = {.lex_state = 125, .external_lex_state = 2}, - [989] = {.lex_state = 125, .external_lex_state = 2}, - [990] = {.lex_state = 125, .external_lex_state = 2}, - [991] = {.lex_state = 125, .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}, - [1000] = {.lex_state = 4, .external_lex_state = 2}, - [1001] = {.lex_state = 4, .external_lex_state = 2}, - [1002] = {.lex_state = 4, .external_lex_state = 2}, - [1003] = {.lex_state = 125, .external_lex_state = 2}, - [1004] = {.lex_state = 4, .external_lex_state = 2}, - [1005] = {.lex_state = 125, .external_lex_state = 2}, - [1006] = {.lex_state = 4, .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 = 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 = 125, .external_lex_state = 2}, - [1015] = {.lex_state = 6, .external_lex_state = 2}, - [1016] = {.lex_state = 125, .external_lex_state = 2}, - [1017] = {.lex_state = 125, .external_lex_state = 2}, - [1018] = {.lex_state = 6, .external_lex_state = 2}, - [1019] = {.lex_state = 6, .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 = 2}, - [1023] = {.lex_state = 6, .external_lex_state = 2}, - [1024] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 2}, - [1029] = {.lex_state = 6, .external_lex_state = 2}, - [1030] = {.lex_state = 125, .external_lex_state = 2}, - [1031] = {.lex_state = 124, .external_lex_state = 2}, - [1032] = {.lex_state = 9, .external_lex_state = 6}, - [1033] = {.lex_state = 9, .external_lex_state = 6}, - [1034] = {.lex_state = 31, .external_lex_state = 2}, - [1035] = {.lex_state = 9, .external_lex_state = 6}, - [1036] = {.lex_state = 31, .external_lex_state = 2}, - [1037] = {.lex_state = 9, .external_lex_state = 6}, - [1038] = {.lex_state = 9, .external_lex_state = 6}, - [1039] = {.lex_state = 9, .external_lex_state = 6}, - [1040] = {.lex_state = 31, .external_lex_state = 2}, - [1041] = {.lex_state = 9, .external_lex_state = 6}, - [1042] = {.lex_state = 31, .external_lex_state = 2}, - [1043] = {.lex_state = 9, .external_lex_state = 6}, - [1044] = {.lex_state = 31, .external_lex_state = 2}, - [1045] = {.lex_state = 9, .external_lex_state = 6}, - [1046] = {.lex_state = 31, .external_lex_state = 2}, - [1047] = {.lex_state = 31, .external_lex_state = 2}, - [1048] = {.lex_state = 31, .external_lex_state = 2}, - [1049] = {.lex_state = 31, .external_lex_state = 2}, - [1050] = {.lex_state = 31, .external_lex_state = 2}, - [1051] = {.lex_state = 31, .external_lex_state = 2}, - [1052] = {.lex_state = 31, .external_lex_state = 2}, - [1053] = {.lex_state = 125, .external_lex_state = 2}, - [1054] = {.lex_state = 31, .external_lex_state = 2}, - [1055] = {.lex_state = 31, .external_lex_state = 2}, - [1056] = {.lex_state = 125, .external_lex_state = 2}, - [1057] = {.lex_state = 31, .external_lex_state = 2}, - [1058] = {.lex_state = 31, .external_lex_state = 2}, - [1059] = {.lex_state = 31, .external_lex_state = 2}, - [1060] = {.lex_state = 31, .external_lex_state = 2}, - [1061] = {.lex_state = 31, .external_lex_state = 2}, - [1062] = {.lex_state = 31, .external_lex_state = 2}, - [1063] = {.lex_state = 31, .external_lex_state = 2}, - [1064] = {.lex_state = 31, .external_lex_state = 2}, - [1065] = {.lex_state = 31, .external_lex_state = 2}, - [1066] = {.lex_state = 31, .external_lex_state = 2}, - [1067] = {.lex_state = 31, .external_lex_state = 2}, - [1068] = {.lex_state = 31, .external_lex_state = 2}, - [1069] = {.lex_state = 31, .external_lex_state = 2}, - [1070] = {.lex_state = 31, .external_lex_state = 2}, - [1071] = {.lex_state = 31, .external_lex_state = 2}, - [1072] = {.lex_state = 31, .external_lex_state = 2}, - [1073] = {.lex_state = 31, .external_lex_state = 2}, - [1074] = {.lex_state = 31, .external_lex_state = 2}, - [1075] = {.lex_state = 31, .external_lex_state = 2}, - [1076] = {.lex_state = 125, .external_lex_state = 2}, - [1077] = {.lex_state = 125, .external_lex_state = 2}, - [1078] = {.lex_state = 125, .external_lex_state = 2}, - [1079] = {.lex_state = 125, .external_lex_state = 2}, - [1080] = {.lex_state = 125, .external_lex_state = 2}, - [1081] = {.lex_state = 125, .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}, - [1085] = {.lex_state = 125, .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}, - [1090] = {.lex_state = 125, .external_lex_state = 2}, - [1091] = {.lex_state = 125, .external_lex_state = 2}, - [1092] = {.lex_state = 125, .external_lex_state = 5}, - [1093] = {.lex_state = 125, .external_lex_state = 2}, - [1094] = {.lex_state = 31, .external_lex_state = 2}, - [1095] = {.lex_state = 125, .external_lex_state = 2}, - [1096] = {.lex_state = 125, .external_lex_state = 2}, - [1097] = {.lex_state = 125, .external_lex_state = 2}, - [1098] = {.lex_state = 125, .external_lex_state = 2}, - [1099] = {.lex_state = 125, .external_lex_state = 5}, - [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 = 31, .external_lex_state = 2}, - [1106] = {.lex_state = 16, .external_lex_state = 7}, - [1107] = {.lex_state = 125, .external_lex_state = 2}, - [1108] = {.lex_state = 125, .external_lex_state = 2}, - [1109] = {.lex_state = 125, .external_lex_state = 5}, - [1110] = {.lex_state = 125, .external_lex_state = 5}, - [1111] = {.lex_state = 125, .external_lex_state = 5}, - [1112] = {.lex_state = 125, .external_lex_state = 2}, - [1113] = {.lex_state = 125, .external_lex_state = 2}, - [1114] = {.lex_state = 125, .external_lex_state = 5}, - [1115] = {.lex_state = 16, .external_lex_state = 7}, - [1116] = {.lex_state = 125, .external_lex_state = 5}, - [1117] = {.lex_state = 125, .external_lex_state = 2}, - [1118] = {.lex_state = 125, .external_lex_state = 5}, - [1119] = {.lex_state = 31, .external_lex_state = 2}, - [1120] = {.lex_state = 125, .external_lex_state = 2}, - [1121] = {.lex_state = 125, .external_lex_state = 5}, - [1122] = {.lex_state = 16, .external_lex_state = 7}, - [1123] = {.lex_state = 16, .external_lex_state = 7}, - [1124] = {.lex_state = 31, .external_lex_state = 2}, - [1125] = {.lex_state = 125, .external_lex_state = 2}, - [1126] = {.lex_state = 125, .external_lex_state = 5}, - [1127] = {.lex_state = 125, .external_lex_state = 5}, - [1128] = {.lex_state = 125, .external_lex_state = 5}, - [1129] = {.lex_state = 125, .external_lex_state = 5}, - [1130] = {.lex_state = 125, .external_lex_state = 5}, - [1131] = {.lex_state = 125, .external_lex_state = 2}, - [1132] = {.lex_state = 16, .external_lex_state = 7}, - [1133] = {.lex_state = 125, .external_lex_state = 2}, - [1134] = {.lex_state = 9, .external_lex_state = 6}, - [1135] = {.lex_state = 125, .external_lex_state = 2}, - [1136] = {.lex_state = 9, .external_lex_state = 6}, - [1137] = {.lex_state = 31, .external_lex_state = 2}, - [1138] = {.lex_state = 125, .external_lex_state = 2}, - [1139] = {.lex_state = 31, .external_lex_state = 2}, - [1140] = {.lex_state = 31, .external_lex_state = 2}, - [1141] = {.lex_state = 125, .external_lex_state = 2}, - [1142] = {.lex_state = 125, .external_lex_state = 2}, - [1143] = {.lex_state = 31, .external_lex_state = 2}, - [1144] = {.lex_state = 31, .external_lex_state = 2}, - [1145] = {.lex_state = 31, .external_lex_state = 2}, - [1146] = {.lex_state = 9, .external_lex_state = 6}, - [1147] = {.lex_state = 9, .external_lex_state = 6}, - [1148] = {.lex_state = 31, .external_lex_state = 2}, - [1149] = {.lex_state = 9, .external_lex_state = 6}, - [1150] = {.lex_state = 9, .external_lex_state = 6}, - [1151] = {.lex_state = 125, .external_lex_state = 2}, - [1152] = {.lex_state = 9, .external_lex_state = 6}, - [1153] = {.lex_state = 125, .external_lex_state = 2}, - [1154] = {.lex_state = 9, .external_lex_state = 6}, - [1155] = {.lex_state = 9, .external_lex_state = 6}, - [1156] = {.lex_state = 125, .external_lex_state = 2}, - [1157] = {.lex_state = 9, .external_lex_state = 6}, - [1158] = {.lex_state = 125, .external_lex_state = 2}, - [1159] = {.lex_state = 125, .external_lex_state = 2}, - [1160] = {.lex_state = 125, .external_lex_state = 2}, - [1161] = {.lex_state = 125, .external_lex_state = 2}, - [1162] = {.lex_state = 31, .external_lex_state = 2}, - [1163] = {.lex_state = 31, .external_lex_state = 2}, - [1164] = {.lex_state = 31, .external_lex_state = 2}, - [1165] = {.lex_state = 9, .external_lex_state = 6}, - [1166] = {.lex_state = 125, .external_lex_state = 2}, - [1167] = {.lex_state = 125, .external_lex_state = 5}, - [1168] = {.lex_state = 31, .external_lex_state = 2}, - [1169] = {.lex_state = 125, .external_lex_state = 2}, - [1170] = {.lex_state = 125, .external_lex_state = 2}, - [1171] = {.lex_state = 125, .external_lex_state = 2}, - [1172] = {.lex_state = 9, .external_lex_state = 6}, - [1173] = {.lex_state = 31, .external_lex_state = 2}, - [1174] = {.lex_state = 125, .external_lex_state = 2}, - [1175] = {.lex_state = 125, .external_lex_state = 2}, - [1176] = {.lex_state = 125, .external_lex_state = 2}, - [1177] = {.lex_state = 31, .external_lex_state = 2}, - [1178] = {.lex_state = 31, .external_lex_state = 2}, - [1179] = {.lex_state = 9, .external_lex_state = 6}, - [1180] = {.lex_state = 31, .external_lex_state = 2}, - [1181] = {.lex_state = 31, .external_lex_state = 2}, - [1182] = {.lex_state = 31, .external_lex_state = 2}, - [1183] = {.lex_state = 31, .external_lex_state = 2}, - [1184] = {.lex_state = 31, .external_lex_state = 2}, - [1185] = {.lex_state = 125, .external_lex_state = 2}, - [1186] = {.lex_state = 9, .external_lex_state = 6}, - [1187] = {.lex_state = 31, .external_lex_state = 2}, - [1188] = {.lex_state = 31, .external_lex_state = 2}, - [1189] = {.lex_state = 9, .external_lex_state = 6}, - [1190] = {.lex_state = 125, .external_lex_state = 2}, - [1191] = {.lex_state = 125, .external_lex_state = 5}, - [1192] = {.lex_state = 31, .external_lex_state = 2}, - [1193] = {.lex_state = 31, .external_lex_state = 2}, - [1194] = {.lex_state = 125, .external_lex_state = 5}, - [1195] = {.lex_state = 9, .external_lex_state = 6}, - [1196] = {.lex_state = 125, .external_lex_state = 5}, - [1197] = {.lex_state = 125, .external_lex_state = 2}, - [1198] = {.lex_state = 31, .external_lex_state = 2}, - [1199] = {.lex_state = 9, .external_lex_state = 6}, - [1200] = {.lex_state = 20, .external_lex_state = 8}, - [1201] = {.lex_state = 125, .external_lex_state = 2}, - [1202] = {.lex_state = 125, .external_lex_state = 2}, - [1203] = {.lex_state = 125, .external_lex_state = 2}, - [1204] = {.lex_state = 125, .external_lex_state = 2}, - [1205] = {.lex_state = 10, .external_lex_state = 2}, - [1206] = {.lex_state = 125, .external_lex_state = 2}, - [1207] = {.lex_state = 125, .external_lex_state = 2}, - [1208] = {.lex_state = 125, .external_lex_state = 2}, - [1209] = {.lex_state = 18, .external_lex_state = 2}, - [1210] = {.lex_state = 125, .external_lex_state = 2}, - [1211] = {.lex_state = 125, .external_lex_state = 5}, - [1212] = {.lex_state = 125, .external_lex_state = 2}, - [1213] = {.lex_state = 10, .external_lex_state = 2}, - [1214] = {.lex_state = 12, .external_lex_state = 8}, - [1215] = {.lex_state = 125, .external_lex_state = 2}, - [1216] = {.lex_state = 125, .external_lex_state = 2}, - [1217] = {.lex_state = 125, .external_lex_state = 2}, - [1218] = {.lex_state = 18, .external_lex_state = 2}, - [1219] = {.lex_state = 125, .external_lex_state = 2}, - [1220] = {.lex_state = 125, .external_lex_state = 2}, - [1221] = {.lex_state = 125, .external_lex_state = 2}, - [1222] = {.lex_state = 20, .external_lex_state = 8}, - [1223] = {.lex_state = 125, .external_lex_state = 5}, - [1224] = {.lex_state = 20, .external_lex_state = 8}, - [1225] = {.lex_state = 20, .external_lex_state = 8}, - [1226] = {.lex_state = 12, .external_lex_state = 8}, - [1227] = {.lex_state = 20, .external_lex_state = 8}, - [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 = 5}, - [1232] = {.lex_state = 124, .external_lex_state = 2}, - [1233] = {.lex_state = 125, .external_lex_state = 2}, - [1234] = {.lex_state = 125, .external_lex_state = 2}, - [1235] = {.lex_state = 12, .external_lex_state = 8}, - [1236] = {.lex_state = 20, .external_lex_state = 8}, - [1237] = {.lex_state = 125, .external_lex_state = 2}, - [1238] = {.lex_state = 125, .external_lex_state = 2}, - [1239] = {.lex_state = 20, .external_lex_state = 8}, - [1240] = {.lex_state = 125, .external_lex_state = 5}, - [1241] = {.lex_state = 125, .external_lex_state = 2}, - [1242] = {.lex_state = 125, .external_lex_state = 5}, - [1243] = {.lex_state = 125, .external_lex_state = 2}, - [1244] = {.lex_state = 12, .external_lex_state = 8}, - [1245] = {.lex_state = 12, .external_lex_state = 8}, - [1246] = {.lex_state = 125, .external_lex_state = 2}, - [1247] = {.lex_state = 12, .external_lex_state = 8}, - [1248] = {.lex_state = 125, .external_lex_state = 5}, - [1249] = {.lex_state = 12, .external_lex_state = 8}, - [1250] = {.lex_state = 20, .external_lex_state = 8}, - [1251] = {.lex_state = 125, .external_lex_state = 2}, - [1252] = {.lex_state = 20, .external_lex_state = 8}, - [1253] = {.lex_state = 125, .external_lex_state = 2}, - [1254] = {.lex_state = 125, .external_lex_state = 2}, - [1255] = {.lex_state = 125, .external_lex_state = 5}, - [1256] = {.lex_state = 125, .external_lex_state = 2}, - [1257] = {.lex_state = 125, .external_lex_state = 2}, - [1258] = {.lex_state = 125, .external_lex_state = 2}, - [1259] = {.lex_state = 125, .external_lex_state = 2}, - [1260] = {.lex_state = 125, .external_lex_state = 5}, - [1261] = {.lex_state = 125, .external_lex_state = 5}, - [1262] = {.lex_state = 125, .external_lex_state = 2}, - [1263] = {.lex_state = 10, .external_lex_state = 2}, - [1264] = {.lex_state = 18, .external_lex_state = 2}, - [1265] = {.lex_state = 16, .external_lex_state = 7}, - [1266] = {.lex_state = 12, .external_lex_state = 8}, - [1267] = {.lex_state = 125, .external_lex_state = 2}, - [1268] = {.lex_state = 125, .external_lex_state = 5}, - [1269] = {.lex_state = 12, .external_lex_state = 8}, - [1270] = {.lex_state = 125, .external_lex_state = 5}, - [1271] = {.lex_state = 125, .external_lex_state = 5}, - [1272] = {.lex_state = 124, .external_lex_state = 2}, - [1273] = {.lex_state = 125, .external_lex_state = 2}, - [1274] = {.lex_state = 125, .external_lex_state = 2}, - [1275] = {.lex_state = 125, .external_lex_state = 2}, - [1276] = {.lex_state = 125, .external_lex_state = 2}, - [1277] = {.lex_state = 125, .external_lex_state = 2}, - [1278] = {.lex_state = 125, .external_lex_state = 2}, - [1279] = {.lex_state = 125, .external_lex_state = 2}, - [1280] = {.lex_state = 125, .external_lex_state = 2}, - [1281] = {.lex_state = 125, .external_lex_state = 2}, - [1282] = {.lex_state = 125, .external_lex_state = 2}, - [1283] = {.lex_state = 125, .external_lex_state = 2}, - [1284] = {.lex_state = 125, .external_lex_state = 2}, - [1285] = {.lex_state = 125, .external_lex_state = 2}, - [1286] = {.lex_state = 125, .external_lex_state = 2}, - [1287] = {.lex_state = 125, .external_lex_state = 2}, - [1288] = {.lex_state = 125, .external_lex_state = 2}, - [1289] = {.lex_state = 125, .external_lex_state = 2}, - [1290] = {.lex_state = 125, .external_lex_state = 2}, - [1291] = {.lex_state = 125, .external_lex_state = 2}, - [1292] = {.lex_state = 125, .external_lex_state = 2}, - [1293] = {.lex_state = 125, .external_lex_state = 5}, - [1294] = {.lex_state = 125, .external_lex_state = 2}, - [1295] = {.lex_state = 125, .external_lex_state = 2}, - [1296] = {.lex_state = 125, .external_lex_state = 2}, - [1297] = {.lex_state = 125, .external_lex_state = 2}, - [1298] = {.lex_state = 125, .external_lex_state = 2}, - [1299] = {.lex_state = 125, .external_lex_state = 2}, - [1300] = {.lex_state = 125, .external_lex_state = 2}, - [1301] = {.lex_state = 125, .external_lex_state = 2}, - [1302] = {.lex_state = 125, .external_lex_state = 5}, - [1303] = {.lex_state = 125, .external_lex_state = 2}, - [1304] = {.lex_state = 125, .external_lex_state = 2}, - [1305] = {.lex_state = 5, .external_lex_state = 2}, - [1306] = {.lex_state = 125, .external_lex_state = 2}, - [1307] = {.lex_state = 125, .external_lex_state = 2}, - [1308] = {.lex_state = 125, .external_lex_state = 5}, - [1309] = {.lex_state = 125, .external_lex_state = 2}, - [1310] = {.lex_state = 125, .external_lex_state = 2}, - [1311] = {.lex_state = 125, .external_lex_state = 2}, - [1312] = {.lex_state = 125, .external_lex_state = 2}, - [1313] = {.lex_state = 125, .external_lex_state = 5}, - [1314] = {.lex_state = 5, .external_lex_state = 2}, - [1315] = {.lex_state = 125, .external_lex_state = 2}, - [1316] = {.lex_state = 125, .external_lex_state = 2}, - [1317] = {.lex_state = 125, .external_lex_state = 2}, - [1318] = {.lex_state = 125, .external_lex_state = 5}, - [1319] = {.lex_state = 125, .external_lex_state = 2}, - [1320] = {.lex_state = 125, .external_lex_state = 2}, - [1321] = {.lex_state = 125, .external_lex_state = 2}, - [1322] = {.lex_state = 125, .external_lex_state = 2}, - [1323] = {.lex_state = 125, .external_lex_state = 2}, - [1324] = {.lex_state = 125, .external_lex_state = 2}, - [1325] = {.lex_state = 125, .external_lex_state = 2}, - [1326] = {.lex_state = 125, .external_lex_state = 2}, - [1327] = {.lex_state = 125, .external_lex_state = 5}, - [1328] = {.lex_state = 125, .external_lex_state = 2}, - [1329] = {.lex_state = 125, .external_lex_state = 5}, - [1330] = {.lex_state = 125, .external_lex_state = 2}, - [1331] = {.lex_state = 125, .external_lex_state = 5}, - [1332] = {.lex_state = 125, .external_lex_state = 2}, - [1333] = {.lex_state = 125, .external_lex_state = 2}, - [1334] = {.lex_state = 125, .external_lex_state = 2}, - [1335] = {.lex_state = 125, .external_lex_state = 2}, - [1336] = {.lex_state = 125, .external_lex_state = 2}, - [1337] = {.lex_state = 124, .external_lex_state = 2}, - [1338] = {.lex_state = 125, .external_lex_state = 2}, - [1339] = {.lex_state = 125, .external_lex_state = 2}, - [1340] = {.lex_state = 124, .external_lex_state = 2}, - [1341] = {.lex_state = 125, .external_lex_state = 2}, - [1342] = {.lex_state = 125, .external_lex_state = 2}, - [1343] = {.lex_state = 125, .external_lex_state = 2}, - [1344] = {.lex_state = 125, .external_lex_state = 2}, - [1345] = {.lex_state = 125, .external_lex_state = 2}, - [1346] = {.lex_state = 125, .external_lex_state = 2}, - [1347] = {.lex_state = 5, .external_lex_state = 2}, - [1348] = {.lex_state = 125, .external_lex_state = 2}, - [1349] = {.lex_state = 125, .external_lex_state = 2}, - [1350] = {.lex_state = 125, .external_lex_state = 2}, - [1351] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 125, .external_lex_state = 2}, - [1356] = {.lex_state = 125, .external_lex_state = 2}, - [1357] = {.lex_state = 125, .external_lex_state = 2}, - [1358] = {.lex_state = 125, .external_lex_state = 2}, - [1359] = {.lex_state = 125, .external_lex_state = 5}, - [1360] = {.lex_state = 125, .external_lex_state = 5}, - [1361] = {.lex_state = 125, .external_lex_state = 2}, - [1362] = {.lex_state = 125, .external_lex_state = 2}, - [1363] = {.lex_state = 125, .external_lex_state = 2}, - [1364] = {.lex_state = 125, .external_lex_state = 2}, - [1365] = {.lex_state = 5, .external_lex_state = 2}, - [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 = 125, .external_lex_state = 2}, - [1370] = {.lex_state = 125, .external_lex_state = 2}, - [1371] = {.lex_state = 125, .external_lex_state = 2}, - [1372] = {.lex_state = 125, .external_lex_state = 2}, - [1373] = {.lex_state = 125, .external_lex_state = 2}, - [1374] = {.lex_state = 125, .external_lex_state = 2}, - [1375] = {.lex_state = 125, .external_lex_state = 2}, - [1376] = {.lex_state = 125, .external_lex_state = 2}, - [1377] = {.lex_state = 125, .external_lex_state = 2}, - [1378] = {.lex_state = 125, .external_lex_state = 2}, - [1379] = {.lex_state = 125, .external_lex_state = 2}, - [1380] = {.lex_state = 125, .external_lex_state = 2}, - [1381] = {.lex_state = 125, .external_lex_state = 2}, - [1382] = {.lex_state = 125, .external_lex_state = 2}, - [1383] = {.lex_state = 125, .external_lex_state = 2}, - [1384] = {.lex_state = 125, .external_lex_state = 2}, - [1385] = {.lex_state = 125, .external_lex_state = 2}, - [1386] = {.lex_state = 125, .external_lex_state = 2}, - [1387] = {.lex_state = 125, .external_lex_state = 2}, - [1388] = {.lex_state = 125, .external_lex_state = 2}, - [1389] = {.lex_state = 125, .external_lex_state = 2}, - [1390] = {.lex_state = 125, .external_lex_state = 2}, - [1391] = {.lex_state = 125, .external_lex_state = 2}, - [1392] = {.lex_state = 5, .external_lex_state = 2}, - [1393] = {.lex_state = 125, .external_lex_state = 2}, - [1394] = {.lex_state = 125, .external_lex_state = 2}, - [1395] = {.lex_state = 125, .external_lex_state = 2}, - [1396] = {.lex_state = 125, .external_lex_state = 2}, - [1397] = {.lex_state = 125, .external_lex_state = 5}, - [1398] = {.lex_state = 125, .external_lex_state = 5}, - [1399] = {.lex_state = 125, .external_lex_state = 5}, - [1400] = {.lex_state = 125, .external_lex_state = 2}, - [1401] = {.lex_state = 125, .external_lex_state = 5}, - [1402] = {.lex_state = 125, .external_lex_state = 5}, - [1403] = {.lex_state = 125, .external_lex_state = 2}, - [1404] = {.lex_state = 125, .external_lex_state = 2}, - [1405] = {.lex_state = 125, .external_lex_state = 2}, - [1406] = {.lex_state = 125, .external_lex_state = 5}, - [1407] = {.lex_state = 125, .external_lex_state = 5}, - [1408] = {.lex_state = 125, .external_lex_state = 2}, - [1409] = {.lex_state = 125, .external_lex_state = 2}, - [1410] = {.lex_state = 125, .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 = 2}, - [1416] = {.lex_state = 125, .external_lex_state = 2}, - [1417] = {.lex_state = 5, .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}, - [1423] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 125, .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}, - [1432] = {.lex_state = 125, .external_lex_state = 2}, - [1433] = {.lex_state = 125, .external_lex_state = 2}, - [1434] = {.lex_state = 125, .external_lex_state = 2}, - [1435] = {.lex_state = 125, .external_lex_state = 5}, - [1436] = {.lex_state = 125, .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 = 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 = 125, .external_lex_state = 2}, - [1445] = {.lex_state = 125, .external_lex_state = 2}, - [1446] = {.lex_state = 125, .external_lex_state = 2}, - [1447] = {.lex_state = 125, .external_lex_state = 5}, - [1448] = {.lex_state = 125, .external_lex_state = 5}, - [1449] = {.lex_state = 125, .external_lex_state = 2}, - [1450] = {.lex_state = 125, .external_lex_state = 2}, - [1451] = {.lex_state = 125, .external_lex_state = 5}, - [1452] = {.lex_state = 125, .external_lex_state = 2}, - [1453] = {.lex_state = 125, .external_lex_state = 5}, - [1454] = {.lex_state = 125, .external_lex_state = 2}, - [1455] = {.lex_state = 125, .external_lex_state = 5}, - [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}, - [1460] = {.lex_state = 125, .external_lex_state = 2}, - [1461] = {.lex_state = 125, .external_lex_state = 5}, - [1462] = {.lex_state = 125, .external_lex_state = 2}, - [1463] = {.lex_state = 125, .external_lex_state = 2}, - [1464] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 2}, - [1469] = {.lex_state = 125, .external_lex_state = 2}, - [1470] = {.lex_state = 125, .external_lex_state = 2}, - [1471] = {.lex_state = 125, .external_lex_state = 2}, - [1472] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 5}, - [1477] = {.lex_state = 125, .external_lex_state = 2}, - [1478] = {.lex_state = 125, .external_lex_state = 2}, - [1479] = {.lex_state = 125, .external_lex_state = 2}, - [1480] = {.lex_state = 125, .external_lex_state = 2}, - [1481] = {.lex_state = 125, .external_lex_state = 2}, - [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}, - [1486] = {.lex_state = 125, .external_lex_state = 2}, - [1487] = {.lex_state = 125, .external_lex_state = 2}, - [1488] = {.lex_state = 125, .external_lex_state = 2}, - [1489] = {.lex_state = 125, .external_lex_state = 2}, - [1490] = {.lex_state = 125, .external_lex_state = 2}, - [1491] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 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 = 2}, - [1501] = {.lex_state = 125, .external_lex_state = 2}, - [1502] = {.lex_state = 125, .external_lex_state = 2}, - [1503] = {.lex_state = 125, .external_lex_state = 2}, - [1504] = {.lex_state = 125, .external_lex_state = 2}, - [1505] = {.lex_state = 125, .external_lex_state = 2}, - [1506] = {.lex_state = 125, .external_lex_state = 2}, - [1507] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 125, .external_lex_state = 2}, - [1513] = {.lex_state = 125, .external_lex_state = 2}, - [1514] = {.lex_state = 125, .external_lex_state = 2}, - [1515] = {.lex_state = 125, .external_lex_state = 2}, - [1516] = {.lex_state = 125, .external_lex_state = 2}, - [1517] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 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 = 2}, - [1527] = {.lex_state = 125, .external_lex_state = 2}, - [1528] = {.lex_state = 125, .external_lex_state = 5}, - [1529] = {.lex_state = 125, .external_lex_state = 2}, - [1530] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 125, .external_lex_state = 2}, - [1535] = {.lex_state = 125, .external_lex_state = 2}, - [1536] = {.lex_state = 5, .external_lex_state = 2}, - [1537] = {.lex_state = 125, .external_lex_state = 2}, - [1538] = {.lex_state = 125, .external_lex_state = 2}, - [1539] = {.lex_state = 125, .external_lex_state = 2}, - [1540] = {.lex_state = 31, .external_lex_state = 2}, - [1541] = {.lex_state = 125, .external_lex_state = 2}, - [1542] = {.lex_state = 125, .external_lex_state = 2}, - [1543] = {.lex_state = 125, .external_lex_state = 5}, - [1544] = {.lex_state = 125, .external_lex_state = 2}, - [1545] = {.lex_state = 125, .external_lex_state = 2}, - [1546] = {.lex_state = 125, .external_lex_state = 2}, - [1547] = {.lex_state = 125, .external_lex_state = 2}, - [1548] = {.lex_state = 125, .external_lex_state = 2}, - [1549] = {.lex_state = 125, .external_lex_state = 5}, - [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}, - [1554] = {.lex_state = 125, .external_lex_state = 2}, - [1555] = {.lex_state = 125, .external_lex_state = 2}, - [1556] = {.lex_state = 125, .external_lex_state = 2}, - [1557] = {.lex_state = 125, .external_lex_state = 2}, - [1558] = {.lex_state = 125, .external_lex_state = 2}, - [1559] = {.lex_state = 125, .external_lex_state = 2}, - [1560] = {.lex_state = 125, .external_lex_state = 2}, - [1561] = {.lex_state = 125, .external_lex_state = 5}, - [1562] = {.lex_state = 125, .external_lex_state = 5}, - [1563] = {.lex_state = 125, .external_lex_state = 2}, - [1564] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 5}, - [1569] = {.lex_state = 125, .external_lex_state = 2}, - [1570] = {.lex_state = 125, .external_lex_state = 5}, - [1571] = {.lex_state = 125, .external_lex_state = 2}, - [1572] = {.lex_state = 125, .external_lex_state = 2}, - [1573] = {.lex_state = 125, .external_lex_state = 2}, - [1574] = {.lex_state = 125, .external_lex_state = 2}, - [1575] = {.lex_state = 125, .external_lex_state = 2}, - [1576] = {.lex_state = 125, .external_lex_state = 2}, - [1577] = {.lex_state = 125, .external_lex_state = 2}, - [1578] = {.lex_state = 125, .external_lex_state = 2}, - [1579] = {.lex_state = 125, .external_lex_state = 2}, - [1580] = {.lex_state = 125, .external_lex_state = 2}, - [1581] = {.lex_state = 125, .external_lex_state = 2}, - [1582] = {.lex_state = 5, .external_lex_state = 2}, - [1583] = {.lex_state = 125, .external_lex_state = 2}, - [1584] = {.lex_state = 125, .external_lex_state = 2}, - [1585] = {.lex_state = 125, .external_lex_state = 2}, - [1586] = {.lex_state = 125, .external_lex_state = 2}, - [1587] = {.lex_state = 125, .external_lex_state = 2}, - [1588] = {.lex_state = 125, .external_lex_state = 2}, - [1589] = {.lex_state = 125, .external_lex_state = 2}, - [1590] = {.lex_state = 125, .external_lex_state = 2}, - [1591] = {.lex_state = 125, .external_lex_state = 2}, - [1592] = {.lex_state = 125, .external_lex_state = 2}, - [1593] = {.lex_state = 125, .external_lex_state = 2}, - [1594] = {.lex_state = 125, .external_lex_state = 2}, - [1595] = {.lex_state = 125, .external_lex_state = 2}, - [1596] = {.lex_state = 125, .external_lex_state = 2}, - [1597] = {.lex_state = 125, .external_lex_state = 2}, - [1598] = {.lex_state = 125, .external_lex_state = 2}, - [1599] = {.lex_state = 125, .external_lex_state = 2}, - [1600] = {.lex_state = 125, .external_lex_state = 2}, - [1601] = {.lex_state = 125, .external_lex_state = 2}, - [1602] = {.lex_state = 125, .external_lex_state = 2}, - [1603] = {.lex_state = 125, .external_lex_state = 2}, - [1604] = {.lex_state = 125, .external_lex_state = 2}, - [1605] = {.lex_state = 125, .external_lex_state = 2}, - [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}, - [1610] = {.lex_state = 125, .external_lex_state = 2}, - [1611] = {.lex_state = 125, .external_lex_state = 2}, - [1612] = {.lex_state = 125, .external_lex_state = 2}, - [1613] = {.lex_state = 125, .external_lex_state = 2}, - [1614] = {.lex_state = 125, .external_lex_state = 2}, - [1615] = {.lex_state = 125, .external_lex_state = 2}, - [1616] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 2}, - [1621] = {.lex_state = 125, .external_lex_state = 2}, - [1622] = {.lex_state = 32, .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}, - [1626] = {.lex_state = 125, .external_lex_state = 2}, - [1627] = {.lex_state = 125, .external_lex_state = 2}, - [1628] = {.lex_state = 125, .external_lex_state = 2}, - [1629] = {.lex_state = 125, .external_lex_state = 2}, - [1630] = {.lex_state = 32, .external_lex_state = 2}, - [1631] = {.lex_state = 125, .external_lex_state = 2}, - [1632] = {.lex_state = 125, .external_lex_state = 2}, - [1633] = {.lex_state = 125, .external_lex_state = 2}, - [1634] = {.lex_state = 125, .external_lex_state = 2}, - [1635] = {.lex_state = 2, .external_lex_state = 9}, - [1636] = {.lex_state = 32, .external_lex_state = 2}, - [1637] = {.lex_state = 125, .external_lex_state = 2}, - [1638] = {.lex_state = 125, .external_lex_state = 2}, - [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}, - [1644] = {.lex_state = 125, .external_lex_state = 2}, - [1645] = {.lex_state = 125, .external_lex_state = 2}, - [1646] = {.lex_state = 125, .external_lex_state = 2}, - [1647] = {.lex_state = 125, .external_lex_state = 2}, - [1648] = {.lex_state = 125, .external_lex_state = 2}, - [1649] = {.lex_state = 125, .external_lex_state = 2}, - [1650] = {.lex_state = 125, .external_lex_state = 2}, - [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}, - [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}, - [1661] = {.lex_state = 125, .external_lex_state = 2}, - [1662] = {.lex_state = 125, .external_lex_state = 2}, - [1663] = {.lex_state = 125, .external_lex_state = 2}, - [1664] = {.lex_state = 125, .external_lex_state = 2}, - [1665] = {.lex_state = 125, .external_lex_state = 2}, - [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}, - [1671] = {.lex_state = 125, .external_lex_state = 2}, - [1672] = {.lex_state = 125, .external_lex_state = 2}, - [1673] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 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 = 2}, - [1686] = {.lex_state = 125, .external_lex_state = 2}, - [1687] = {.lex_state = 125, .external_lex_state = 2}, - [1688] = {.lex_state = 2, .external_lex_state = 9}, - [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 = 2, .external_lex_state = 9}, - [1693] = {.lex_state = 125, .external_lex_state = 2}, - [1694] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 2, .external_lex_state = 9}, - [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 = 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}, - [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 = 32, .external_lex_state = 2}, - [1715] = {.lex_state = 125, .external_lex_state = 2}, - [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}, - [1721] = {.lex_state = 125, .external_lex_state = 2}, + [869] = {.lex_state = 124, .external_lex_state = 3}, + [870] = {.lex_state = 124, .external_lex_state = 13}, + [871] = {.lex_state = 124, .external_lex_state = 13}, + [872] = {.lex_state = 124, .external_lex_state = 13}, + [873] = {.lex_state = 124, .external_lex_state = 13}, + [874] = {.lex_state = 124, .external_lex_state = 13}, + [875] = {.lex_state = 124, .external_lex_state = 13}, + [876] = {.lex_state = 124, .external_lex_state = 13}, + [877] = {.lex_state = 124, .external_lex_state = 13}, + [878] = {.lex_state = 124, .external_lex_state = 13}, + [879] = {.lex_state = 124, .external_lex_state = 12}, + [880] = {.lex_state = 124, .external_lex_state = 13}, + [881] = {.lex_state = 124, .external_lex_state = 13}, + [882] = {.lex_state = 124, .external_lex_state = 13}, + [883] = {.lex_state = 124, .external_lex_state = 13}, + [884] = {.lex_state = 124, .external_lex_state = 3}, + [885] = {.lex_state = 124, .external_lex_state = 13}, + [886] = {.lex_state = 124, .external_lex_state = 3}, + [887] = {.lex_state = 124, .external_lex_state = 3}, + [888] = {.lex_state = 124, .external_lex_state = 13}, + [889] = {.lex_state = 124, .external_lex_state = 13}, + [890] = {.lex_state = 124, .external_lex_state = 13}, + [891] = {.lex_state = 124, .external_lex_state = 13}, + [892] = {.lex_state = 124, .external_lex_state = 13}, + [893] = {.lex_state = 124, .external_lex_state = 13}, + [894] = {.lex_state = 124, .external_lex_state = 3}, + [895] = {.lex_state = 124, .external_lex_state = 13}, + [896] = {.lex_state = 124, .external_lex_state = 3}, + [897] = {.lex_state = 124, .external_lex_state = 13}, + [898] = {.lex_state = 124, .external_lex_state = 3}, + [899] = {.lex_state = 124, .external_lex_state = 13}, + [900] = {.lex_state = 124, .external_lex_state = 13}, + [901] = {.lex_state = 124, .external_lex_state = 3}, + [902] = {.lex_state = 124, .external_lex_state = 13}, + [903] = {.lex_state = 124, .external_lex_state = 3}, + [904] = {.lex_state = 124, .external_lex_state = 3}, + [905] = {.lex_state = 124, .external_lex_state = 3}, + [906] = {.lex_state = 124, .external_lex_state = 13}, + [907] = {.lex_state = 124, .external_lex_state = 3}, + [908] = {.lex_state = 124, .external_lex_state = 13}, + [909] = {.lex_state = 124, .external_lex_state = 3}, + [910] = {.lex_state = 124, .external_lex_state = 13}, + [911] = {.lex_state = 124, .external_lex_state = 3}, + [912] = {.lex_state = 124, .external_lex_state = 3}, + [913] = {.lex_state = 124, .external_lex_state = 13}, + [914] = {.lex_state = 124, .external_lex_state = 3}, + [915] = {.lex_state = 124, .external_lex_state = 3}, + [916] = {.lex_state = 124, .external_lex_state = 3}, + [917] = {.lex_state = 124, .external_lex_state = 3}, + [918] = {.lex_state = 124, .external_lex_state = 3}, + [919] = {.lex_state = 124, .external_lex_state = 13}, + [920] = {.lex_state = 124, .external_lex_state = 13}, + [921] = {.lex_state = 124, .external_lex_state = 3}, + [922] = {.lex_state = 124, .external_lex_state = 3}, + [923] = {.lex_state = 124, .external_lex_state = 3}, + [924] = {.lex_state = 124, .external_lex_state = 3}, + [925] = {.lex_state = 124, .external_lex_state = 13}, + [926] = {.lex_state = 124, .external_lex_state = 13}, + [927] = {.lex_state = 124, .external_lex_state = 3}, + [928] = {.lex_state = 124, .external_lex_state = 13}, + [929] = {.lex_state = 124, .external_lex_state = 3}, + [930] = {.lex_state = 124, .external_lex_state = 13}, + [931] = {.lex_state = 124, .external_lex_state = 13}, + [932] = {.lex_state = 124, .external_lex_state = 13}, + [933] = {.lex_state = 124, .external_lex_state = 13}, + [934] = {.lex_state = 124, .external_lex_state = 13}, + [935] = {.lex_state = 124, .external_lex_state = 13}, + [936] = {.lex_state = 124, .external_lex_state = 13}, + [937] = {.lex_state = 124, .external_lex_state = 13}, + [938] = {.lex_state = 124, .external_lex_state = 13}, + [939] = {.lex_state = 124, .external_lex_state = 13}, + [940] = {.lex_state = 124, .external_lex_state = 13}, + [941] = {.lex_state = 124, .external_lex_state = 12}, + [942] = {.lex_state = 124, .external_lex_state = 3}, + [943] = {.lex_state = 124, .external_lex_state = 3}, + [944] = {.lex_state = 124, .external_lex_state = 3}, + [945] = {.lex_state = 124, .external_lex_state = 12}, + [946] = {.lex_state = 124, .external_lex_state = 12}, + [947] = {.lex_state = 124, .external_lex_state = 12}, + [948] = {.lex_state = 124, .external_lex_state = 15}, + [949] = {.lex_state = 124, .external_lex_state = 12}, + [950] = {.lex_state = 4, .external_lex_state = 14}, + [951] = {.lex_state = 124, .external_lex_state = 13}, + [952] = {.lex_state = 124, .external_lex_state = 15}, + [953] = {.lex_state = 124, .external_lex_state = 13}, + [954] = {.lex_state = 124, .external_lex_state = 13}, + [955] = {.lex_state = 124, .external_lex_state = 13}, + [956] = {.lex_state = 124, .external_lex_state = 16}, + [957] = {.lex_state = 124, .external_lex_state = 16}, + [958] = {.lex_state = 124, .external_lex_state = 16}, + [959] = {.lex_state = 124, .external_lex_state = 16}, + [960] = {.lex_state = 124, .external_lex_state = 16}, + [961] = {.lex_state = 124, .external_lex_state = 16}, + [962] = {.lex_state = 124, .external_lex_state = 16}, + [963] = {.lex_state = 124, .external_lex_state = 16}, + [964] = {.lex_state = 124, .external_lex_state = 16}, + [965] = {.lex_state = 124, .external_lex_state = 16}, + [966] = {.lex_state = 124, .external_lex_state = 16}, + [967] = {.lex_state = 124, .external_lex_state = 13}, + [968] = {.lex_state = 124, .external_lex_state = 13}, + [969] = {.lex_state = 124, .external_lex_state = 16}, + [970] = {.lex_state = 124, .external_lex_state = 13}, + [971] = {.lex_state = 124, .external_lex_state = 13}, + [972] = {.lex_state = 124, .external_lex_state = 13}, + [973] = {.lex_state = 124, .external_lex_state = 13}, + [974] = {.lex_state = 124, .external_lex_state = 13}, + [975] = {.lex_state = 124, .external_lex_state = 13}, + [976] = {.lex_state = 124, .external_lex_state = 13}, + [977] = {.lex_state = 124, .external_lex_state = 13}, + [978] = {.lex_state = 124, .external_lex_state = 13}, + [979] = {.lex_state = 124, .external_lex_state = 13}, + [980] = {.lex_state = 124, .external_lex_state = 13}, + [981] = {.lex_state = 124, .external_lex_state = 13}, + [982] = {.lex_state = 124, .external_lex_state = 13}, + [983] = {.lex_state = 124, .external_lex_state = 13}, + [984] = {.lex_state = 124, .external_lex_state = 13}, + [985] = {.lex_state = 124, .external_lex_state = 13}, + [986] = {.lex_state = 124, .external_lex_state = 13}, + [987] = {.lex_state = 124, .external_lex_state = 13}, + [988] = {.lex_state = 124, .external_lex_state = 13}, + [989] = {.lex_state = 124, .external_lex_state = 13}, + [990] = {.lex_state = 124, .external_lex_state = 13}, + [991] = {.lex_state = 124, .external_lex_state = 13}, + [992] = {.lex_state = 124, .external_lex_state = 13}, + [993] = {.lex_state = 124, .external_lex_state = 16}, + [994] = {.lex_state = 124, .external_lex_state = 16}, + [995] = {.lex_state = 124, .external_lex_state = 16}, + [996] = {.lex_state = 124, .external_lex_state = 13}, + [997] = {.lex_state = 124, .external_lex_state = 13}, + [998] = {.lex_state = 124, .external_lex_state = 13}, + [999] = {.lex_state = 124, .external_lex_state = 16}, + [1000] = {.lex_state = 124, .external_lex_state = 16}, + [1001] = {.lex_state = 124, .external_lex_state = 16}, + [1002] = {.lex_state = 124, .external_lex_state = 16}, + [1003] = {.lex_state = 124, .external_lex_state = 16}, + [1004] = {.lex_state = 124, .external_lex_state = 16}, + [1005] = {.lex_state = 124, .external_lex_state = 13}, + [1006] = {.lex_state = 124, .external_lex_state = 16}, + [1007] = {.lex_state = 124, .external_lex_state = 16}, + [1008] = {.lex_state = 124, .external_lex_state = 16}, + [1009] = {.lex_state = 124, .external_lex_state = 16}, + [1010] = {.lex_state = 124, .external_lex_state = 16}, + [1011] = {.lex_state = 124, .external_lex_state = 16}, + [1012] = {.lex_state = 124, .external_lex_state = 13}, + [1013] = {.lex_state = 124, .external_lex_state = 16}, + [1014] = {.lex_state = 124, .external_lex_state = 16}, + [1015] = {.lex_state = 124, .external_lex_state = 16}, + [1016] = {.lex_state = 124, .external_lex_state = 16}, + [1017] = {.lex_state = 124, .external_lex_state = 16}, + [1018] = {.lex_state = 124, .external_lex_state = 16}, + [1019] = {.lex_state = 124, .external_lex_state = 16}, + [1020] = {.lex_state = 124, .external_lex_state = 16}, + [1021] = {.lex_state = 124, .external_lex_state = 16}, + [1022] = {.lex_state = 124, .external_lex_state = 16}, + [1023] = {.lex_state = 124, .external_lex_state = 16}, + [1024] = {.lex_state = 124, .external_lex_state = 16}, + [1025] = {.lex_state = 124, .external_lex_state = 16}, + [1026] = {.lex_state = 124, .external_lex_state = 13}, + [1027] = {.lex_state = 124, .external_lex_state = 16}, + [1028] = {.lex_state = 124, .external_lex_state = 16}, + [1029] = {.lex_state = 124, .external_lex_state = 16}, + [1030] = {.lex_state = 124, .external_lex_state = 16}, + [1031] = {.lex_state = 124, .external_lex_state = 16}, + [1032] = {.lex_state = 124, .external_lex_state = 16}, + [1033] = {.lex_state = 124, .external_lex_state = 13}, + [1034] = {.lex_state = 124, .external_lex_state = 13}, + [1035] = {.lex_state = 124, .external_lex_state = 13}, + [1036] = {.lex_state = 124, .external_lex_state = 13}, + [1037] = {.lex_state = 124, .external_lex_state = 13}, + [1038] = {.lex_state = 124, .external_lex_state = 13}, + [1039] = {.lex_state = 124, .external_lex_state = 13}, + [1040] = {.lex_state = 124, .external_lex_state = 13}, + [1041] = {.lex_state = 124, .external_lex_state = 13}, + [1042] = {.lex_state = 124, .external_lex_state = 13}, + [1043] = {.lex_state = 124, .external_lex_state = 13}, + [1044] = {.lex_state = 124, .external_lex_state = 13}, + [1045] = {.lex_state = 124, .external_lex_state = 13}, + [1046] = {.lex_state = 124, .external_lex_state = 13}, + [1047] = {.lex_state = 124, .external_lex_state = 13}, + [1048] = {.lex_state = 124, .external_lex_state = 13}, + [1049] = {.lex_state = 124, .external_lex_state = 13}, + [1050] = {.lex_state = 124, .external_lex_state = 13}, + [1051] = {.lex_state = 124, .external_lex_state = 13}, + [1052] = {.lex_state = 124, .external_lex_state = 13}, + [1053] = {.lex_state = 124, .external_lex_state = 13}, + [1054] = {.lex_state = 124, .external_lex_state = 13}, + [1055] = {.lex_state = 124, .external_lex_state = 13}, + [1056] = {.lex_state = 124, .external_lex_state = 13}, + [1057] = {.lex_state = 124, .external_lex_state = 13}, + [1058] = {.lex_state = 124, .external_lex_state = 13}, + [1059] = {.lex_state = 124, .external_lex_state = 16}, + [1060] = {.lex_state = 124, .external_lex_state = 13}, + [1061] = {.lex_state = 124, .external_lex_state = 13}, + [1062] = {.lex_state = 124, .external_lex_state = 13}, + [1063] = {.lex_state = 4, .external_lex_state = 17}, + [1064] = {.lex_state = 4, .external_lex_state = 17}, + [1065] = {.lex_state = 4, .external_lex_state = 17}, + [1066] = {.lex_state = 4, .external_lex_state = 17}, + [1067] = {.lex_state = 125, .external_lex_state = 14}, + [1068] = {.lex_state = 4, .external_lex_state = 17}, + [1069] = {.lex_state = 4, .external_lex_state = 17}, + [1070] = {.lex_state = 4, .external_lex_state = 17}, + [1071] = {.lex_state = 125, .external_lex_state = 14}, + [1072] = {.lex_state = 4, .external_lex_state = 17}, + [1073] = {.lex_state = 4, .external_lex_state = 17}, + [1074] = {.lex_state = 4, .external_lex_state = 17}, + [1075] = {.lex_state = 4, .external_lex_state = 17}, + [1076] = {.lex_state = 4, .external_lex_state = 17}, + [1077] = {.lex_state = 4, .external_lex_state = 17}, + [1078] = {.lex_state = 4, .external_lex_state = 17}, + [1079] = {.lex_state = 4, .external_lex_state = 17}, + [1080] = {.lex_state = 125, .external_lex_state = 14}, + [1081] = {.lex_state = 125, .external_lex_state = 18}, + [1082] = {.lex_state = 125, .external_lex_state = 18}, + [1083] = {.lex_state = 125, .external_lex_state = 18}, + [1084] = {.lex_state = 125, .external_lex_state = 18}, + [1085] = {.lex_state = 125, .external_lex_state = 18}, + [1086] = {.lex_state = 125, .external_lex_state = 18}, + [1087] = {.lex_state = 125, .external_lex_state = 18}, + [1088] = {.lex_state = 125, .external_lex_state = 18}, + [1089] = {.lex_state = 125, .external_lex_state = 18}, + [1090] = {.lex_state = 125, .external_lex_state = 18}, + [1091] = {.lex_state = 125, .external_lex_state = 18}, + [1092] = {.lex_state = 125, .external_lex_state = 18}, + [1093] = {.lex_state = 125, .external_lex_state = 18}, + [1094] = {.lex_state = 125, .external_lex_state = 18}, + [1095] = {.lex_state = 125, .external_lex_state = 18}, + [1096] = {.lex_state = 125, .external_lex_state = 18}, + [1097] = {.lex_state = 125, .external_lex_state = 18}, + [1098] = {.lex_state = 125, .external_lex_state = 18}, + [1099] = {.lex_state = 125, .external_lex_state = 18}, + [1100] = {.lex_state = 125, .external_lex_state = 18}, + [1101] = {.lex_state = 125, .external_lex_state = 5}, + [1102] = {.lex_state = 125, .external_lex_state = 18}, + [1103] = {.lex_state = 4, .external_lex_state = 17}, + [1104] = {.lex_state = 125, .external_lex_state = 18}, + [1105] = {.lex_state = 125, .external_lex_state = 18}, + [1106] = {.lex_state = 125, .external_lex_state = 18}, + [1107] = {.lex_state = 125, .external_lex_state = 18}, + [1108] = {.lex_state = 125, .external_lex_state = 19}, + [1109] = {.lex_state = 125, .external_lex_state = 19}, + [1110] = {.lex_state = 4, .external_lex_state = 17}, + [1111] = {.lex_state = 125, .external_lex_state = 18}, + [1112] = {.lex_state = 125, .external_lex_state = 18}, + [1113] = {.lex_state = 125, .external_lex_state = 18}, + [1114] = {.lex_state = 125, .external_lex_state = 19}, + [1115] = {.lex_state = 4, .external_lex_state = 17}, + [1116] = {.lex_state = 125, .external_lex_state = 18}, + [1117] = {.lex_state = 125, .external_lex_state = 19}, + [1118] = {.lex_state = 125, .external_lex_state = 19}, + [1119] = {.lex_state = 125, .external_lex_state = 19}, + [1120] = {.lex_state = 125, .external_lex_state = 19}, + [1121] = {.lex_state = 125, .external_lex_state = 19}, + [1122] = {.lex_state = 125, .external_lex_state = 19}, + [1123] = {.lex_state = 125, .external_lex_state = 18}, + [1124] = {.lex_state = 9, .external_lex_state = 18}, + [1125] = {.lex_state = 125, .external_lex_state = 19}, + [1126] = {.lex_state = 125, .external_lex_state = 19}, + [1127] = {.lex_state = 9, .external_lex_state = 18}, + [1128] = {.lex_state = 125, .external_lex_state = 20}, + [1129] = {.lex_state = 4, .external_lex_state = 21}, + [1130] = {.lex_state = 4, .external_lex_state = 17}, + [1131] = {.lex_state = 4, .external_lex_state = 21}, + [1132] = {.lex_state = 4, .external_lex_state = 17}, + [1133] = {.lex_state = 4, .external_lex_state = 17}, + [1134] = {.lex_state = 4, .external_lex_state = 17}, + [1135] = {.lex_state = 4, .external_lex_state = 17}, + [1136] = {.lex_state = 4, .external_lex_state = 17}, + [1137] = {.lex_state = 125, .external_lex_state = 18}, + [1138] = {.lex_state = 4, .external_lex_state = 17}, + [1139] = {.lex_state = 4, .external_lex_state = 17}, + [1140] = {.lex_state = 125, .external_lex_state = 22}, + [1141] = {.lex_state = 4, .external_lex_state = 17}, + [1142] = {.lex_state = 4, .external_lex_state = 17}, + [1143] = {.lex_state = 4, .external_lex_state = 17}, + [1144] = {.lex_state = 125, .external_lex_state = 18}, + [1145] = {.lex_state = 4, .external_lex_state = 17}, + [1146] = {.lex_state = 4, .external_lex_state = 17}, + [1147] = {.lex_state = 4, .external_lex_state = 17}, + [1148] = {.lex_state = 4, .external_lex_state = 17}, + [1149] = {.lex_state = 125, .external_lex_state = 18}, + [1150] = {.lex_state = 125, .external_lex_state = 18}, + [1151] = {.lex_state = 4, .external_lex_state = 17}, + [1152] = {.lex_state = 4, .external_lex_state = 17}, + [1153] = {.lex_state = 125, .external_lex_state = 18}, + [1154] = {.lex_state = 4, .external_lex_state = 17}, + [1155] = {.lex_state = 125, .external_lex_state = 18}, + [1156] = {.lex_state = 4, .external_lex_state = 17}, + [1157] = {.lex_state = 4, .external_lex_state = 17}, + [1158] = {.lex_state = 4, .external_lex_state = 17}, + [1159] = {.lex_state = 4, .external_lex_state = 17}, + [1160] = {.lex_state = 4, .external_lex_state = 17}, + [1161] = {.lex_state = 4, .external_lex_state = 17}, + [1162] = {.lex_state = 4, .external_lex_state = 17}, + [1163] = {.lex_state = 4, .external_lex_state = 17}, + [1164] = {.lex_state = 4, .external_lex_state = 17}, + [1165] = {.lex_state = 4, .external_lex_state = 17}, + [1166] = {.lex_state = 4, .external_lex_state = 17}, + [1167] = {.lex_state = 4, .external_lex_state = 17}, + [1168] = {.lex_state = 4, .external_lex_state = 17}, + [1169] = {.lex_state = 4, .external_lex_state = 17}, + [1170] = {.lex_state = 4, .external_lex_state = 17}, + [1171] = {.lex_state = 4, .external_lex_state = 17}, + [1172] = {.lex_state = 4, .external_lex_state = 17}, + [1173] = {.lex_state = 4, .external_lex_state = 17}, + [1174] = {.lex_state = 125, .external_lex_state = 18}, + [1175] = {.lex_state = 125, .external_lex_state = 18}, + [1176] = {.lex_state = 125, .external_lex_state = 17}, + [1177] = {.lex_state = 125, .external_lex_state = 18}, + [1178] = {.lex_state = 125, .external_lex_state = 18}, + [1179] = {.lex_state = 125, .external_lex_state = 18}, + [1180] = {.lex_state = 125, .external_lex_state = 18}, + [1181] = {.lex_state = 125, .external_lex_state = 18}, + [1182] = {.lex_state = 125, .external_lex_state = 23}, + [1183] = {.lex_state = 125, .external_lex_state = 18}, + [1184] = {.lex_state = 125, .external_lex_state = 18}, + [1185] = {.lex_state = 125, .external_lex_state = 18}, + [1186] = {.lex_state = 125, .external_lex_state = 18}, + [1187] = {.lex_state = 125, .external_lex_state = 18}, + [1188] = {.lex_state = 125, .external_lex_state = 17}, + [1189] = {.lex_state = 125, .external_lex_state = 17}, + [1190] = {.lex_state = 125, .external_lex_state = 18}, + [1191] = {.lex_state = 125, .external_lex_state = 17}, + [1192] = {.lex_state = 125, .external_lex_state = 18}, + [1193] = {.lex_state = 125, .external_lex_state = 18}, + [1194] = {.lex_state = 125, .external_lex_state = 18}, + [1195] = {.lex_state = 125, .external_lex_state = 18}, + [1196] = {.lex_state = 125, .external_lex_state = 18}, + [1197] = {.lex_state = 125, .external_lex_state = 18}, + [1198] = {.lex_state = 125, .external_lex_state = 18}, + [1199] = {.lex_state = 125, .external_lex_state = 18}, + [1200] = {.lex_state = 125, .external_lex_state = 18}, + [1201] = {.lex_state = 4, .external_lex_state = 17}, + [1202] = {.lex_state = 4, .external_lex_state = 17}, + [1203] = {.lex_state = 4, .external_lex_state = 17}, + [1204] = {.lex_state = 125, .external_lex_state = 18}, + [1205] = {.lex_state = 4, .external_lex_state = 17}, + [1206] = {.lex_state = 125, .external_lex_state = 23}, + [1207] = {.lex_state = 4, .external_lex_state = 17}, + [1208] = {.lex_state = 125, .external_lex_state = 18}, + [1209] = {.lex_state = 4, .external_lex_state = 17}, + [1210] = {.lex_state = 125, .external_lex_state = 18}, + [1211] = {.lex_state = 125, .external_lex_state = 17}, + [1212] = {.lex_state = 125, .external_lex_state = 17}, + [1213] = {.lex_state = 6, .external_lex_state = 23}, + [1214] = {.lex_state = 125, .external_lex_state = 17}, + [1215] = {.lex_state = 125, .external_lex_state = 17}, + [1216] = {.lex_state = 125, .external_lex_state = 17}, + [1217] = {.lex_state = 125, .external_lex_state = 17}, + [1218] = {.lex_state = 6, .external_lex_state = 23}, + [1219] = {.lex_state = 125, .external_lex_state = 17}, + [1220] = {.lex_state = 125, .external_lex_state = 17}, + [1221] = {.lex_state = 125, .external_lex_state = 17}, + [1222] = {.lex_state = 125, .external_lex_state = 17}, + [1223] = {.lex_state = 6, .external_lex_state = 23}, + [1224] = {.lex_state = 6, .external_lex_state = 23}, + [1225] = {.lex_state = 125, .external_lex_state = 17}, + [1226] = {.lex_state = 125, .external_lex_state = 17}, + [1227] = {.lex_state = 125, .external_lex_state = 17}, + [1228] = {.lex_state = 125, .external_lex_state = 17}, + [1229] = {.lex_state = 125, .external_lex_state = 17}, + [1230] = {.lex_state = 125, .external_lex_state = 17}, + [1231] = {.lex_state = 125, .external_lex_state = 17}, + [1232] = {.lex_state = 6, .external_lex_state = 23}, + [1233] = {.lex_state = 125, .external_lex_state = 17}, + [1234] = {.lex_state = 6, .external_lex_state = 23}, + [1235] = {.lex_state = 124, .external_lex_state = 24}, + [1236] = {.lex_state = 124, .external_lex_state = 24}, + [1237] = {.lex_state = 9, .external_lex_state = 25}, + [1238] = {.lex_state = 31, .external_lex_state = 26}, + [1239] = {.lex_state = 9, .external_lex_state = 25}, + [1240] = {.lex_state = 9, .external_lex_state = 25}, + [1241] = {.lex_state = 9, .external_lex_state = 25}, + [1242] = {.lex_state = 9, .external_lex_state = 25}, + [1243] = {.lex_state = 9, .external_lex_state = 25}, + [1244] = {.lex_state = 9, .external_lex_state = 25}, + [1245] = {.lex_state = 9, .external_lex_state = 25}, + [1246] = {.lex_state = 31, .external_lex_state = 26}, + [1247] = {.lex_state = 31, .external_lex_state = 26}, + [1248] = {.lex_state = 9, .external_lex_state = 25}, + [1249] = {.lex_state = 9, .external_lex_state = 25}, + [1250] = {.lex_state = 31, .external_lex_state = 26}, + [1251] = {.lex_state = 31, .external_lex_state = 26}, + [1252] = {.lex_state = 31, .external_lex_state = 26}, + [1253] = {.lex_state = 31, .external_lex_state = 26}, + [1254] = {.lex_state = 31, .external_lex_state = 26}, + [1255] = {.lex_state = 31, .external_lex_state = 26}, + [1256] = {.lex_state = 31, .external_lex_state = 26}, + [1257] = {.lex_state = 31, .external_lex_state = 26}, + [1258] = {.lex_state = 9, .external_lex_state = 25}, + [1259] = {.lex_state = 31, .external_lex_state = 26}, + [1260] = {.lex_state = 31, .external_lex_state = 26}, + [1261] = {.lex_state = 31, .external_lex_state = 26}, + [1262] = {.lex_state = 31, .external_lex_state = 26}, + [1263] = {.lex_state = 31, .external_lex_state = 26}, + [1264] = {.lex_state = 31, .external_lex_state = 26}, + [1265] = {.lex_state = 31, .external_lex_state = 26}, + [1266] = {.lex_state = 31, .external_lex_state = 26}, + [1267] = {.lex_state = 31, .external_lex_state = 26}, + [1268] = {.lex_state = 31, .external_lex_state = 26}, + [1269] = {.lex_state = 31, .external_lex_state = 26}, + [1270] = {.lex_state = 31, .external_lex_state = 26}, + [1271] = {.lex_state = 31, .external_lex_state = 26}, + [1272] = {.lex_state = 31, .external_lex_state = 26}, + [1273] = {.lex_state = 31, .external_lex_state = 26}, + [1274] = {.lex_state = 125, .external_lex_state = 26}, + [1275] = {.lex_state = 31, .external_lex_state = 26}, + [1276] = {.lex_state = 31, .external_lex_state = 26}, + [1277] = {.lex_state = 31, .external_lex_state = 26}, + [1278] = {.lex_state = 31, .external_lex_state = 26}, + [1279] = {.lex_state = 31, .external_lex_state = 26}, + [1280] = {.lex_state = 31, .external_lex_state = 26}, + [1281] = {.lex_state = 31, .external_lex_state = 26}, + [1282] = {.lex_state = 31, .external_lex_state = 26}, + [1283] = {.lex_state = 31, .external_lex_state = 26}, + [1284] = {.lex_state = 125, .external_lex_state = 26}, + [1285] = {.lex_state = 31, .external_lex_state = 26}, + [1286] = {.lex_state = 31, .external_lex_state = 26}, + [1287] = {.lex_state = 31, .external_lex_state = 26}, + [1288] = {.lex_state = 31, .external_lex_state = 26}, + [1289] = {.lex_state = 31, .external_lex_state = 26}, + [1290] = {.lex_state = 31, .external_lex_state = 26}, + [1291] = {.lex_state = 125, .external_lex_state = 23}, + [1292] = {.lex_state = 125, .external_lex_state = 23}, + [1293] = {.lex_state = 125, .external_lex_state = 27}, + [1294] = {.lex_state = 125, .external_lex_state = 22}, + [1295] = {.lex_state = 31, .external_lex_state = 26}, + [1296] = {.lex_state = 125, .external_lex_state = 23}, + [1297] = {.lex_state = 125, .external_lex_state = 14}, + [1298] = {.lex_state = 125, .external_lex_state = 14}, + [1299] = {.lex_state = 125, .external_lex_state = 22}, + [1300] = {.lex_state = 125, .external_lex_state = 22}, + [1301] = {.lex_state = 125, .external_lex_state = 27}, + [1302] = {.lex_state = 125, .external_lex_state = 23}, + [1303] = {.lex_state = 125, .external_lex_state = 22}, + [1304] = {.lex_state = 125, .external_lex_state = 14}, + [1305] = {.lex_state = 125, .external_lex_state = 23}, + [1306] = {.lex_state = 125, .external_lex_state = 23}, + [1307] = {.lex_state = 125, .external_lex_state = 23}, + [1308] = {.lex_state = 125, .external_lex_state = 23}, + [1309] = {.lex_state = 125, .external_lex_state = 22}, + [1310] = {.lex_state = 125, .external_lex_state = 23}, + [1311] = {.lex_state = 125, .external_lex_state = 22}, + [1312] = {.lex_state = 125, .external_lex_state = 22}, + [1313] = {.lex_state = 125, .external_lex_state = 14}, + [1314] = {.lex_state = 125, .external_lex_state = 23}, + [1315] = {.lex_state = 125, .external_lex_state = 27}, + [1316] = {.lex_state = 125, .external_lex_state = 23}, + [1317] = {.lex_state = 125, .external_lex_state = 14}, + [1318] = {.lex_state = 125, .external_lex_state = 14}, + [1319] = {.lex_state = 125, .external_lex_state = 27}, + [1320] = {.lex_state = 125, .external_lex_state = 14}, + [1321] = {.lex_state = 125, .external_lex_state = 23}, + [1322] = {.lex_state = 125, .external_lex_state = 23}, + [1323] = {.lex_state = 125, .external_lex_state = 28}, + [1324] = {.lex_state = 31, .external_lex_state = 26}, + [1325] = {.lex_state = 125, .external_lex_state = 23}, + [1326] = {.lex_state = 125, .external_lex_state = 23}, + [1327] = {.lex_state = 16, .external_lex_state = 29}, + [1328] = {.lex_state = 16, .external_lex_state = 29}, + [1329] = {.lex_state = 31, .external_lex_state = 26}, + [1330] = {.lex_state = 125, .external_lex_state = 27}, + [1331] = {.lex_state = 16, .external_lex_state = 29}, + [1332] = {.lex_state = 125, .external_lex_state = 27}, + [1333] = {.lex_state = 125, .external_lex_state = 14}, + [1334] = {.lex_state = 125, .external_lex_state = 14}, + [1335] = {.lex_state = 125, .external_lex_state = 28}, + [1336] = {.lex_state = 16, .external_lex_state = 29}, + [1337] = {.lex_state = 124, .external_lex_state = 22}, + [1338] = {.lex_state = 125, .external_lex_state = 27}, + [1339] = {.lex_state = 125, .external_lex_state = 23}, + [1340] = {.lex_state = 125, .external_lex_state = 23}, + [1341] = {.lex_state = 125, .external_lex_state = 14}, + [1342] = {.lex_state = 125, .external_lex_state = 23}, + [1343] = {.lex_state = 125, .external_lex_state = 27}, + [1344] = {.lex_state = 125, .external_lex_state = 23}, + [1345] = {.lex_state = 16, .external_lex_state = 29}, + [1346] = {.lex_state = 125, .external_lex_state = 23}, + [1347] = {.lex_state = 124, .external_lex_state = 22}, + [1348] = {.lex_state = 125, .external_lex_state = 14}, + [1349] = {.lex_state = 124, .external_lex_state = 22}, + [1350] = {.lex_state = 125, .external_lex_state = 28}, + [1351] = {.lex_state = 125, .external_lex_state = 23}, + [1352] = {.lex_state = 125, .external_lex_state = 23}, + [1353] = {.lex_state = 124, .external_lex_state = 22}, + [1354] = {.lex_state = 125, .external_lex_state = 27}, + [1355] = {.lex_state = 16, .external_lex_state = 29}, + [1356] = {.lex_state = 125, .external_lex_state = 27}, + [1357] = {.lex_state = 125, .external_lex_state = 27}, + [1358] = {.lex_state = 125, .external_lex_state = 27}, + [1359] = {.lex_state = 125, .external_lex_state = 23}, + [1360] = {.lex_state = 16, .external_lex_state = 29}, + [1361] = {.lex_state = 125, .external_lex_state = 28}, + [1362] = {.lex_state = 31, .external_lex_state = 26}, + [1363] = {.lex_state = 125, .external_lex_state = 23}, + [1364] = {.lex_state = 31, .external_lex_state = 26}, + [1365] = {.lex_state = 125, .external_lex_state = 26}, + [1366] = {.lex_state = 31, .external_lex_state = 26}, + [1367] = {.lex_state = 31, .external_lex_state = 26}, + [1368] = {.lex_state = 31, .external_lex_state = 26}, + [1369] = {.lex_state = 31, .external_lex_state = 26}, + [1370] = {.lex_state = 31, .external_lex_state = 26}, + [1371] = {.lex_state = 31, .external_lex_state = 26}, + [1372] = {.lex_state = 31, .external_lex_state = 26}, + [1373] = {.lex_state = 31, .external_lex_state = 26}, + [1374] = {.lex_state = 31, .external_lex_state = 26}, + [1375] = {.lex_state = 125, .external_lex_state = 23}, + [1376] = {.lex_state = 31, .external_lex_state = 26}, + [1377] = {.lex_state = 9, .external_lex_state = 25}, + [1378] = {.lex_state = 9, .external_lex_state = 25}, + [1379] = {.lex_state = 125, .external_lex_state = 26}, + [1380] = {.lex_state = 9, .external_lex_state = 25}, + [1381] = {.lex_state = 31, .external_lex_state = 26}, + [1382] = {.lex_state = 125, .external_lex_state = 26}, + [1383] = {.lex_state = 125, .external_lex_state = 18}, + [1384] = {.lex_state = 31, .external_lex_state = 23}, + [1385] = {.lex_state = 31, .external_lex_state = 26}, + [1386] = {.lex_state = 125, .external_lex_state = 23}, + [1387] = {.lex_state = 125, .external_lex_state = 26}, + [1388] = {.lex_state = 125, .external_lex_state = 18}, + [1389] = {.lex_state = 31, .external_lex_state = 23}, + [1390] = {.lex_state = 31, .external_lex_state = 26}, + [1391] = {.lex_state = 31, .external_lex_state = 26}, + [1392] = {.lex_state = 125, .external_lex_state = 26}, + [1393] = {.lex_state = 125, .external_lex_state = 23}, + [1394] = {.lex_state = 125, .external_lex_state = 18}, + [1395] = {.lex_state = 31, .external_lex_state = 23}, + [1396] = {.lex_state = 125, .external_lex_state = 26}, + [1397] = {.lex_state = 125, .external_lex_state = 26}, + [1398] = {.lex_state = 31, .external_lex_state = 23}, + [1399] = {.lex_state = 125, .external_lex_state = 23}, + [1400] = {.lex_state = 9, .external_lex_state = 25}, + [1401] = {.lex_state = 125, .external_lex_state = 23}, + [1402] = {.lex_state = 31, .external_lex_state = 23}, + [1403] = {.lex_state = 9, .external_lex_state = 25}, + [1404] = {.lex_state = 125, .external_lex_state = 23}, + [1405] = {.lex_state = 31, .external_lex_state = 26}, + [1406] = {.lex_state = 31, .external_lex_state = 23}, + [1407] = {.lex_state = 125, .external_lex_state = 26}, + [1408] = {.lex_state = 125, .external_lex_state = 23}, + [1409] = {.lex_state = 125, .external_lex_state = 23}, + [1410] = {.lex_state = 125, .external_lex_state = 23}, + [1411] = {.lex_state = 31, .external_lex_state = 23}, + [1412] = {.lex_state = 125, .external_lex_state = 26}, + [1413] = {.lex_state = 9, .external_lex_state = 25}, + [1414] = {.lex_state = 125, .external_lex_state = 23}, + [1415] = {.lex_state = 9, .external_lex_state = 25}, + [1416] = {.lex_state = 125, .external_lex_state = 26}, + [1417] = {.lex_state = 125, .external_lex_state = 22}, + [1418] = {.lex_state = 31, .external_lex_state = 23}, + [1419] = {.lex_state = 31, .external_lex_state = 23}, + [1420] = {.lex_state = 31, .external_lex_state = 23}, + [1421] = {.lex_state = 9, .external_lex_state = 25}, + [1422] = {.lex_state = 9, .external_lex_state = 25}, + [1423] = {.lex_state = 9, .external_lex_state = 25}, + [1424] = {.lex_state = 9, .external_lex_state = 25}, + [1425] = {.lex_state = 9, .external_lex_state = 25}, + [1426] = {.lex_state = 9, .external_lex_state = 25}, + [1427] = {.lex_state = 125, .external_lex_state = 22}, + [1428] = {.lex_state = 9, .external_lex_state = 25}, + [1429] = {.lex_state = 9, .external_lex_state = 25}, + [1430] = {.lex_state = 9, .external_lex_state = 25}, + [1431] = {.lex_state = 9, .external_lex_state = 25}, + [1432] = {.lex_state = 125, .external_lex_state = 27}, + [1433] = {.lex_state = 125, .external_lex_state = 23}, + [1434] = {.lex_state = 125, .external_lex_state = 23}, + [1435] = {.lex_state = 124, .external_lex_state = 22}, + [1436] = {.lex_state = 125, .external_lex_state = 27}, + [1437] = {.lex_state = 125, .external_lex_state = 28}, + [1438] = {.lex_state = 125, .external_lex_state = 23}, + [1439] = {.lex_state = 125, .external_lex_state = 23}, + [1440] = {.lex_state = 12, .external_lex_state = 30}, + [1441] = {.lex_state = 20, .external_lex_state = 30}, + [1442] = {.lex_state = 125, .external_lex_state = 26}, + [1443] = {.lex_state = 125, .external_lex_state = 28}, + [1444] = {.lex_state = 125, .external_lex_state = 23}, + [1445] = {.lex_state = 125, .external_lex_state = 26}, + [1446] = {.lex_state = 125, .external_lex_state = 27}, + [1447] = {.lex_state = 12, .external_lex_state = 30}, + [1448] = {.lex_state = 125, .external_lex_state = 27}, + [1449] = {.lex_state = 125, .external_lex_state = 27}, + [1450] = {.lex_state = 125, .external_lex_state = 26}, + [1451] = {.lex_state = 20, .external_lex_state = 30}, + [1452] = {.lex_state = 125, .external_lex_state = 27}, + [1453] = {.lex_state = 125, .external_lex_state = 26}, + [1454] = {.lex_state = 125, .external_lex_state = 26}, + [1455] = {.lex_state = 125, .external_lex_state = 26}, + [1456] = {.lex_state = 125, .external_lex_state = 23}, + [1457] = {.lex_state = 125, .external_lex_state = 27}, + [1458] = {.lex_state = 125, .external_lex_state = 27}, + [1459] = {.lex_state = 10, .external_lex_state = 23}, + [1460] = {.lex_state = 18, .external_lex_state = 23}, + [1461] = {.lex_state = 12, .external_lex_state = 30}, + [1462] = {.lex_state = 20, .external_lex_state = 30}, + [1463] = {.lex_state = 125, .external_lex_state = 26}, + [1464] = {.lex_state = 125, .external_lex_state = 23}, + [1465] = {.lex_state = 125, .external_lex_state = 23}, + [1466] = {.lex_state = 10, .external_lex_state = 23}, + [1467] = {.lex_state = 18, .external_lex_state = 23}, + [1468] = {.lex_state = 12, .external_lex_state = 30}, + [1469] = {.lex_state = 20, .external_lex_state = 30}, + [1470] = {.lex_state = 125, .external_lex_state = 26}, + [1471] = {.lex_state = 125, .external_lex_state = 23}, + [1472] = {.lex_state = 125, .external_lex_state = 23}, + [1473] = {.lex_state = 125, .external_lex_state = 26}, + [1474] = {.lex_state = 12, .external_lex_state = 30}, + [1475] = {.lex_state = 20, .external_lex_state = 30}, + [1476] = {.lex_state = 12, .external_lex_state = 30}, + [1477] = {.lex_state = 20, .external_lex_state = 30}, + [1478] = {.lex_state = 125, .external_lex_state = 27}, + [1479] = {.lex_state = 20, .external_lex_state = 30}, + [1480] = {.lex_state = 125, .external_lex_state = 26}, + [1481] = {.lex_state = 12, .external_lex_state = 30}, + [1482] = {.lex_state = 20, .external_lex_state = 30}, + [1483] = {.lex_state = 125, .external_lex_state = 23}, + [1484] = {.lex_state = 12, .external_lex_state = 30}, + [1485] = {.lex_state = 20, .external_lex_state = 30}, + [1486] = {.lex_state = 125, .external_lex_state = 27}, + [1487] = {.lex_state = 12, .external_lex_state = 30}, + [1488] = {.lex_state = 20, .external_lex_state = 30}, + [1489] = {.lex_state = 12, .external_lex_state = 30}, + [1490] = {.lex_state = 10, .external_lex_state = 23}, + [1491] = {.lex_state = 125, .external_lex_state = 27}, + [1492] = {.lex_state = 18, .external_lex_state = 23}, + [1493] = {.lex_state = 125, .external_lex_state = 27}, + [1494] = {.lex_state = 12, .external_lex_state = 30}, + [1495] = {.lex_state = 20, .external_lex_state = 30}, + [1496] = {.lex_state = 12, .external_lex_state = 30}, + [1497] = {.lex_state = 20, .external_lex_state = 30}, + [1498] = {.lex_state = 125, .external_lex_state = 26}, + [1499] = {.lex_state = 125, .external_lex_state = 23}, + [1500] = {.lex_state = 12, .external_lex_state = 30}, + [1501] = {.lex_state = 20, .external_lex_state = 30}, + [1502] = {.lex_state = 125, .external_lex_state = 27}, + [1503] = {.lex_state = 124, .external_lex_state = 22}, + [1504] = {.lex_state = 125, .external_lex_state = 22}, + [1505] = {.lex_state = 125, .external_lex_state = 27}, + [1506] = {.lex_state = 125, .external_lex_state = 23}, + [1507] = {.lex_state = 125, .external_lex_state = 27}, + [1508] = {.lex_state = 125, .external_lex_state = 26}, + [1509] = {.lex_state = 125, .external_lex_state = 26}, + [1510] = {.lex_state = 124, .external_lex_state = 22}, + [1511] = {.lex_state = 125, .external_lex_state = 23}, + [1512] = {.lex_state = 125, .external_lex_state = 23}, + [1513] = {.lex_state = 125, .external_lex_state = 23}, + [1514] = {.lex_state = 125, .external_lex_state = 22}, + [1515] = {.lex_state = 125, .external_lex_state = 22}, + [1516] = {.lex_state = 125, .external_lex_state = 26}, + [1517] = {.lex_state = 12, .external_lex_state = 30}, + [1518] = {.lex_state = 125, .external_lex_state = 22}, + [1519] = {.lex_state = 125, .external_lex_state = 22}, + [1520] = {.lex_state = 125, .external_lex_state = 23}, + [1521] = {.lex_state = 125, .external_lex_state = 22}, + [1522] = {.lex_state = 125, .external_lex_state = 27}, + [1523] = {.lex_state = 125, .external_lex_state = 23}, + [1524] = {.lex_state = 125, .external_lex_state = 22}, + [1525] = {.lex_state = 125, .external_lex_state = 23}, + [1526] = {.lex_state = 125, .external_lex_state = 22}, + [1527] = {.lex_state = 125, .external_lex_state = 27}, + [1528] = {.lex_state = 125, .external_lex_state = 23}, + [1529] = {.lex_state = 125, .external_lex_state = 22}, + [1530] = {.lex_state = 125, .external_lex_state = 28}, + [1531] = {.lex_state = 125, .external_lex_state = 27}, + [1532] = {.lex_state = 125, .external_lex_state = 23}, + [1533] = {.lex_state = 125, .external_lex_state = 27}, + [1534] = {.lex_state = 125, .external_lex_state = 27}, + [1535] = {.lex_state = 125, .external_lex_state = 26}, + [1536] = {.lex_state = 125, .external_lex_state = 27}, + [1537] = {.lex_state = 125, .external_lex_state = 22}, + [1538] = {.lex_state = 125, .external_lex_state = 22}, + [1539] = {.lex_state = 125, .external_lex_state = 28}, + [1540] = {.lex_state = 12, .external_lex_state = 30}, + [1541] = {.lex_state = 20, .external_lex_state = 30}, + [1542] = {.lex_state = 124, .external_lex_state = 22}, + [1543] = {.lex_state = 16, .external_lex_state = 29}, + [1544] = {.lex_state = 20, .external_lex_state = 30}, + [1545] = {.lex_state = 125, .external_lex_state = 23}, + [1546] = {.lex_state = 125, .external_lex_state = 23}, + [1547] = {.lex_state = 125, .external_lex_state = 23}, + [1548] = {.lex_state = 5, .external_lex_state = 23}, + [1549] = {.lex_state = 125, .external_lex_state = 23}, + [1550] = {.lex_state = 125, .external_lex_state = 27}, + [1551] = {.lex_state = 125, .external_lex_state = 27}, + [1552] = {.lex_state = 125, .external_lex_state = 23}, + [1553] = {.lex_state = 125, .external_lex_state = 23}, + [1554] = {.lex_state = 125, .external_lex_state = 22}, + [1555] = {.lex_state = 125, .external_lex_state = 23}, + [1556] = {.lex_state = 125, .external_lex_state = 27}, + [1557] = {.lex_state = 125, .external_lex_state = 24}, + [1558] = {.lex_state = 125, .external_lex_state = 22}, + [1559] = {.lex_state = 125, .external_lex_state = 27}, + [1560] = {.lex_state = 125, .external_lex_state = 23}, + [1561] = {.lex_state = 125, .external_lex_state = 27}, + [1562] = {.lex_state = 125, .external_lex_state = 22}, + [1563] = {.lex_state = 125, .external_lex_state = 23}, + [1564] = {.lex_state = 125, .external_lex_state = 23}, + [1565] = {.lex_state = 5, .external_lex_state = 23}, + [1566] = {.lex_state = 125, .external_lex_state = 23}, + [1567] = {.lex_state = 5, .external_lex_state = 23}, + [1568] = {.lex_state = 125, .external_lex_state = 23}, + [1569] = {.lex_state = 125, .external_lex_state = 17}, + [1570] = {.lex_state = 125, .external_lex_state = 27}, + [1571] = {.lex_state = 125, .external_lex_state = 27}, + [1572] = {.lex_state = 125, .external_lex_state = 22}, + [1573] = {.lex_state = 125, .external_lex_state = 23}, + [1574] = {.lex_state = 125, .external_lex_state = 23}, + [1575] = {.lex_state = 125, .external_lex_state = 27}, + [1576] = {.lex_state = 125, .external_lex_state = 27}, + [1577] = {.lex_state = 125, .external_lex_state = 27}, + [1578] = {.lex_state = 125, .external_lex_state = 23}, + [1579] = {.lex_state = 125, .external_lex_state = 23}, + [1580] = {.lex_state = 125, .external_lex_state = 27}, + [1581] = {.lex_state = 125, .external_lex_state = 27}, + [1582] = {.lex_state = 125, .external_lex_state = 23}, + [1583] = {.lex_state = 125, .external_lex_state = 23}, + [1584] = {.lex_state = 125, .external_lex_state = 22}, + [1585] = {.lex_state = 125, .external_lex_state = 23}, + [1586] = {.lex_state = 125, .external_lex_state = 27}, + [1587] = {.lex_state = 125, .external_lex_state = 23}, + [1588] = {.lex_state = 125, .external_lex_state = 27}, + [1589] = {.lex_state = 125, .external_lex_state = 23}, + [1590] = {.lex_state = 125, .external_lex_state = 23}, + [1591] = {.lex_state = 125, .external_lex_state = 23}, + [1592] = {.lex_state = 125, .external_lex_state = 23}, + [1593] = {.lex_state = 125, .external_lex_state = 27}, + [1594] = {.lex_state = 125, .external_lex_state = 23}, + [1595] = {.lex_state = 125, .external_lex_state = 23}, + [1596] = {.lex_state = 125, .external_lex_state = 23}, + [1597] = {.lex_state = 125, .external_lex_state = 23}, + [1598] = {.lex_state = 125, .external_lex_state = 23}, + [1599] = {.lex_state = 125, .external_lex_state = 23}, + [1600] = {.lex_state = 125, .external_lex_state = 24}, + [1601] = {.lex_state = 125, .external_lex_state = 23}, + [1602] = {.lex_state = 125, .external_lex_state = 23}, + [1603] = {.lex_state = 125, .external_lex_state = 23}, + [1604] = {.lex_state = 125, .external_lex_state = 23}, + [1605] = {.lex_state = 125, .external_lex_state = 27}, + [1606] = {.lex_state = 125, .external_lex_state = 23}, + [1607] = {.lex_state = 125, .external_lex_state = 23}, + [1608] = {.lex_state = 125, .external_lex_state = 22}, + [1609] = {.lex_state = 125, .external_lex_state = 23}, + [1610] = {.lex_state = 125, .external_lex_state = 23}, + [1611] = {.lex_state = 125, .external_lex_state = 23}, + [1612] = {.lex_state = 125, .external_lex_state = 27}, + [1613] = {.lex_state = 125, .external_lex_state = 17}, + [1614] = {.lex_state = 125, .external_lex_state = 23}, + [1615] = {.lex_state = 125, .external_lex_state = 23}, + [1616] = {.lex_state = 125, .external_lex_state = 27}, + [1617] = {.lex_state = 125, .external_lex_state = 23}, + [1618] = {.lex_state = 125, .external_lex_state = 23}, + [1619] = {.lex_state = 125, .external_lex_state = 23}, + [1620] = {.lex_state = 125, .external_lex_state = 22}, + [1621] = {.lex_state = 125, .external_lex_state = 22}, + [1622] = {.lex_state = 125, .external_lex_state = 23}, + [1623] = {.lex_state = 125, .external_lex_state = 23}, + [1624] = {.lex_state = 125, .external_lex_state = 23}, + [1625] = {.lex_state = 125, .external_lex_state = 23}, + [1626] = {.lex_state = 125, .external_lex_state = 23}, + [1627] = {.lex_state = 125, .external_lex_state = 23}, + [1628] = {.lex_state = 125, .external_lex_state = 23}, + [1629] = {.lex_state = 125, .external_lex_state = 22}, + [1630] = {.lex_state = 125, .external_lex_state = 17}, + [1631] = {.lex_state = 125, .external_lex_state = 23}, + [1632] = {.lex_state = 125, .external_lex_state = 23}, + [1633] = {.lex_state = 125, .external_lex_state = 23}, + [1634] = {.lex_state = 125, .external_lex_state = 27}, + [1635] = {.lex_state = 125, .external_lex_state = 23}, + [1636] = {.lex_state = 125, .external_lex_state = 23}, + [1637] = {.lex_state = 125, .external_lex_state = 23}, + [1638] = {.lex_state = 125, .external_lex_state = 27}, + [1639] = {.lex_state = 125, .external_lex_state = 22}, + [1640] = {.lex_state = 125, .external_lex_state = 22}, + [1641] = {.lex_state = 125, .external_lex_state = 27}, + [1642] = {.lex_state = 125, .external_lex_state = 23}, + [1643] = {.lex_state = 125, .external_lex_state = 23}, + [1644] = {.lex_state = 125, .external_lex_state = 27}, + [1645] = {.lex_state = 125, .external_lex_state = 23}, + [1646] = {.lex_state = 125, .external_lex_state = 23}, + [1647] = {.lex_state = 5, .external_lex_state = 23}, + [1648] = {.lex_state = 125, .external_lex_state = 22}, + [1649] = {.lex_state = 125, .external_lex_state = 27}, + [1650] = {.lex_state = 125, .external_lex_state = 22}, + [1651] = {.lex_state = 125, .external_lex_state = 23}, + [1652] = {.lex_state = 125, .external_lex_state = 31}, + [1653] = {.lex_state = 125, .external_lex_state = 23}, + [1654] = {.lex_state = 125, .external_lex_state = 23}, + [1655] = {.lex_state = 125, .external_lex_state = 23}, + [1656] = {.lex_state = 125, .external_lex_state = 23}, + [1657] = {.lex_state = 125, .external_lex_state = 23}, + [1658] = {.lex_state = 125, .external_lex_state = 31}, + [1659] = {.lex_state = 5, .external_lex_state = 23}, + [1660] = {.lex_state = 125, .external_lex_state = 23}, + [1661] = {.lex_state = 125, .external_lex_state = 23}, + [1662] = {.lex_state = 125, .external_lex_state = 23}, + [1663] = {.lex_state = 125, .external_lex_state = 23}, + [1664] = {.lex_state = 125, .external_lex_state = 23}, + [1665] = {.lex_state = 125, .external_lex_state = 23}, + [1666] = {.lex_state = 125, .external_lex_state = 23}, + [1667] = {.lex_state = 125, .external_lex_state = 27}, + [1668] = {.lex_state = 125, .external_lex_state = 27}, + [1669] = {.lex_state = 125, .external_lex_state = 23}, + [1670] = {.lex_state = 125, .external_lex_state = 23}, + [1671] = {.lex_state = 125, .external_lex_state = 23}, + [1672] = {.lex_state = 125, .external_lex_state = 23}, + [1673] = {.lex_state = 125, .external_lex_state = 23}, + [1674] = {.lex_state = 125, .external_lex_state = 23}, + [1675] = {.lex_state = 125, .external_lex_state = 27}, + [1676] = {.lex_state = 125, .external_lex_state = 23}, + [1677] = {.lex_state = 125, .external_lex_state = 23}, + [1678] = {.lex_state = 125, .external_lex_state = 22}, + [1679] = {.lex_state = 125, .external_lex_state = 22}, + [1680] = {.lex_state = 125, .external_lex_state = 23}, + [1681] = {.lex_state = 125, .external_lex_state = 23}, + [1682] = {.lex_state = 125, .external_lex_state = 23}, + [1683] = {.lex_state = 125, .external_lex_state = 23}, + [1684] = {.lex_state = 125, .external_lex_state = 23}, + [1685] = {.lex_state = 125, .external_lex_state = 23}, + [1686] = {.lex_state = 125, .external_lex_state = 27}, + [1687] = {.lex_state = 125, .external_lex_state = 23}, + [1688] = {.lex_state = 125, .external_lex_state = 27}, + [1689] = {.lex_state = 125, .external_lex_state = 23}, + [1690] = {.lex_state = 125, .external_lex_state = 23}, + [1691] = {.lex_state = 125, .external_lex_state = 27}, + [1692] = {.lex_state = 125, .external_lex_state = 23}, + [1693] = {.lex_state = 5, .external_lex_state = 23}, + [1694] = {.lex_state = 125, .external_lex_state = 22}, + [1695] = {.lex_state = 125, .external_lex_state = 26}, + [1696] = {.lex_state = 125, .external_lex_state = 23}, + [1697] = {.lex_state = 125, .external_lex_state = 22}, + [1698] = {.lex_state = 125, .external_lex_state = 26}, + [1699] = {.lex_state = 125, .external_lex_state = 22}, + [1700] = {.lex_state = 125, .external_lex_state = 26}, + [1701] = {.lex_state = 125, .external_lex_state = 32}, + [1702] = {.lex_state = 125, .external_lex_state = 26}, + [1703] = {.lex_state = 125, .external_lex_state = 32}, + [1704] = {.lex_state = 125, .external_lex_state = 22}, + [1705] = {.lex_state = 125, .external_lex_state = 23}, + [1706] = {.lex_state = 125, .external_lex_state = 26}, + [1707] = {.lex_state = 125, .external_lex_state = 22}, + [1708] = {.lex_state = 125, .external_lex_state = 27}, + [1709] = {.lex_state = 125, .external_lex_state = 22}, + [1710] = {.lex_state = 125, .external_lex_state = 23}, + [1711] = {.lex_state = 125, .external_lex_state = 23}, + [1712] = {.lex_state = 125, .external_lex_state = 26}, + [1713] = {.lex_state = 125, .external_lex_state = 22}, + [1714] = {.lex_state = 125, .external_lex_state = 23}, + [1715] = {.lex_state = 125, .external_lex_state = 23}, + [1716] = {.lex_state = 125, .external_lex_state = 22}, + [1717] = {.lex_state = 125, .external_lex_state = 27}, + [1718] = {.lex_state = 125, .external_lex_state = 26}, + [1719] = {.lex_state = 125, .external_lex_state = 27}, + [1720] = {.lex_state = 125, .external_lex_state = 23}, + [1721] = {.lex_state = 125, .external_lex_state = 23}, + [1722] = {.lex_state = 125, .external_lex_state = 32}, + [1723] = {.lex_state = 125, .external_lex_state = 26}, + [1724] = {.lex_state = 125, .external_lex_state = 22}, + [1725] = {.lex_state = 125, .external_lex_state = 23}, + [1726] = {.lex_state = 125, .external_lex_state = 27}, + [1727] = {.lex_state = 125, .external_lex_state = 32}, + [1728] = {.lex_state = 125, .external_lex_state = 22}, + [1729] = {.lex_state = 125, .external_lex_state = 27}, + [1730] = {.lex_state = 125, .external_lex_state = 27}, + [1731] = {.lex_state = 125, .external_lex_state = 23}, + [1732] = {.lex_state = 125, .external_lex_state = 23}, + [1733] = {.lex_state = 125, .external_lex_state = 26}, + [1734] = {.lex_state = 125, .external_lex_state = 26}, + [1735] = {.lex_state = 125, .external_lex_state = 23}, + [1736] = {.lex_state = 125, .external_lex_state = 27}, + [1737] = {.lex_state = 125, .external_lex_state = 23}, + [1738] = {.lex_state = 125, .external_lex_state = 26}, + [1739] = {.lex_state = 125, .external_lex_state = 23}, + [1740] = {.lex_state = 125, .external_lex_state = 27}, + [1741] = {.lex_state = 125, .external_lex_state = 23}, + [1742] = {.lex_state = 125, .external_lex_state = 26}, + [1743] = {.lex_state = 125, .external_lex_state = 26}, + [1744] = {.lex_state = 125, .external_lex_state = 23}, + [1745] = {.lex_state = 125, .external_lex_state = 26}, + [1746] = {.lex_state = 125, .external_lex_state = 32}, + [1747] = {.lex_state = 125, .external_lex_state = 32}, + [1748] = {.lex_state = 125, .external_lex_state = 32}, + [1749] = {.lex_state = 125, .external_lex_state = 26}, + [1750] = {.lex_state = 125, .external_lex_state = 26}, + [1751] = {.lex_state = 125, .external_lex_state = 26}, + [1752] = {.lex_state = 125, .external_lex_state = 26}, + [1753] = {.lex_state = 125, .external_lex_state = 23}, + [1754] = {.lex_state = 125, .external_lex_state = 23}, + [1755] = {.lex_state = 125, .external_lex_state = 26}, + [1756] = {.lex_state = 125, .external_lex_state = 26}, + [1757] = {.lex_state = 125, .external_lex_state = 26}, + [1758] = {.lex_state = 125, .external_lex_state = 23}, + [1759] = {.lex_state = 125, .external_lex_state = 26}, + [1760] = {.lex_state = 125, .external_lex_state = 26}, + [1761] = {.lex_state = 125, .external_lex_state = 32}, + [1762] = {.lex_state = 125, .external_lex_state = 23}, + [1763] = {.lex_state = 125, .external_lex_state = 26}, + [1764] = {.lex_state = 125, .external_lex_state = 32}, + [1765] = {.lex_state = 125, .external_lex_state = 32}, + [1766] = {.lex_state = 125, .external_lex_state = 26}, + [1767] = {.lex_state = 125, .external_lex_state = 23}, + [1768] = {.lex_state = 125, .external_lex_state = 23}, + [1769] = {.lex_state = 125, .external_lex_state = 23}, + [1770] = {.lex_state = 125, .external_lex_state = 26}, + [1771] = {.lex_state = 125, .external_lex_state = 26}, + [1772] = {.lex_state = 125, .external_lex_state = 26}, + [1773] = {.lex_state = 125, .external_lex_state = 26}, + [1774] = {.lex_state = 125, .external_lex_state = 26}, + [1775] = {.lex_state = 125, .external_lex_state = 23}, + [1776] = {.lex_state = 125, .external_lex_state = 26}, + [1777] = {.lex_state = 125, .external_lex_state = 26}, + [1778] = {.lex_state = 125, .external_lex_state = 23}, + [1779] = {.lex_state = 125, .external_lex_state = 23}, + [1780] = {.lex_state = 125, .external_lex_state = 23}, + [1781] = {.lex_state = 125, .external_lex_state = 23}, + [1782] = {.lex_state = 5, .external_lex_state = 23}, + [1783] = {.lex_state = 125, .external_lex_state = 26}, + [1784] = {.lex_state = 125, .external_lex_state = 23}, + [1785] = {.lex_state = 125, .external_lex_state = 26}, + [1786] = {.lex_state = 125, .external_lex_state = 26}, + [1787] = {.lex_state = 125, .external_lex_state = 26}, + [1788] = {.lex_state = 125, .external_lex_state = 26}, + [1789] = {.lex_state = 125, .external_lex_state = 22}, + [1790] = {.lex_state = 125, .external_lex_state = 23}, + [1791] = {.lex_state = 125, .external_lex_state = 26}, + [1792] = {.lex_state = 125, .external_lex_state = 26}, + [1793] = {.lex_state = 125, .external_lex_state = 26}, + [1794] = {.lex_state = 125, .external_lex_state = 26}, + [1795] = {.lex_state = 125, .external_lex_state = 23}, + [1796] = {.lex_state = 125, .external_lex_state = 23}, + [1797] = {.lex_state = 125, .external_lex_state = 26}, + [1798] = {.lex_state = 125, .external_lex_state = 27}, + [1799] = {.lex_state = 125, .external_lex_state = 26}, + [1800] = {.lex_state = 125, .external_lex_state = 23}, + [1801] = {.lex_state = 125, .external_lex_state = 22}, + [1802] = {.lex_state = 125, .external_lex_state = 23}, + [1803] = {.lex_state = 125, .external_lex_state = 26}, + [1804] = {.lex_state = 125, .external_lex_state = 32}, + [1805] = {.lex_state = 125, .external_lex_state = 26}, + [1806] = {.lex_state = 125, .external_lex_state = 23}, + [1807] = {.lex_state = 125, .external_lex_state = 23}, + [1808] = {.lex_state = 125, .external_lex_state = 23}, + [1809] = {.lex_state = 125, .external_lex_state = 23}, + [1810] = {.lex_state = 125, .external_lex_state = 23}, + [1811] = {.lex_state = 125, .external_lex_state = 23}, + [1812] = {.lex_state = 125, .external_lex_state = 27}, + [1813] = {.lex_state = 125, .external_lex_state = 23}, + [1814] = {.lex_state = 125, .external_lex_state = 22}, + [1815] = {.lex_state = 125, .external_lex_state = 23}, + [1816] = {.lex_state = 125, .external_lex_state = 26}, + [1817] = {.lex_state = 125, .external_lex_state = 26}, + [1818] = {.lex_state = 125, .external_lex_state = 26}, + [1819] = {.lex_state = 125, .external_lex_state = 23}, + [1820] = {.lex_state = 125, .external_lex_state = 26}, + [1821] = {.lex_state = 125, .external_lex_state = 23}, + [1822] = {.lex_state = 125, .external_lex_state = 32}, + [1823] = {.lex_state = 125, .external_lex_state = 32}, + [1824] = {.lex_state = 125, .external_lex_state = 32}, + [1825] = {.lex_state = 125, .external_lex_state = 27}, + [1826] = {.lex_state = 125, .external_lex_state = 27}, + [1827] = {.lex_state = 125, .external_lex_state = 23}, + [1828] = {.lex_state = 125, .external_lex_state = 23}, + [1829] = {.lex_state = 125, .external_lex_state = 23}, + [1830] = {.lex_state = 125, .external_lex_state = 22}, + [1831] = {.lex_state = 125, .external_lex_state = 23}, + [1832] = {.lex_state = 125, .external_lex_state = 26}, + [1833] = {.lex_state = 125, .external_lex_state = 23}, + [1834] = {.lex_state = 125, .external_lex_state = 23}, + [1835] = {.lex_state = 125, .external_lex_state = 26}, + [1836] = {.lex_state = 125, .external_lex_state = 23}, + [1837] = {.lex_state = 125, .external_lex_state = 26}, + [1838] = {.lex_state = 125, .external_lex_state = 23}, + [1839] = {.lex_state = 125, .external_lex_state = 27}, + [1840] = {.lex_state = 125, .external_lex_state = 23}, + [1841] = {.lex_state = 125, .external_lex_state = 26}, + [1842] = {.lex_state = 5, .external_lex_state = 23}, + [1843] = {.lex_state = 125, .external_lex_state = 23}, + [1844] = {.lex_state = 125, .external_lex_state = 22}, + [1845] = {.lex_state = 125, .external_lex_state = 22}, + [1846] = {.lex_state = 125, .external_lex_state = 26}, + [1847] = {.lex_state = 125, .external_lex_state = 23}, + [1848] = {.lex_state = 125, .external_lex_state = 23}, + [1849] = {.lex_state = 125, .external_lex_state = 22}, + [1850] = {.lex_state = 125, .external_lex_state = 23}, + [1851] = {.lex_state = 125, .external_lex_state = 26}, + [1852] = {.lex_state = 125, .external_lex_state = 27}, + [1853] = {.lex_state = 125, .external_lex_state = 23}, + [1854] = {.lex_state = 125, .external_lex_state = 27}, + [1855] = {.lex_state = 125, .external_lex_state = 23}, + [1856] = {.lex_state = 125, .external_lex_state = 23}, + [1857] = {.lex_state = 125, .external_lex_state = 32}, + [1858] = {.lex_state = 125, .external_lex_state = 23}, + [1859] = {.lex_state = 125, .external_lex_state = 26}, + [1860] = {.lex_state = 125, .external_lex_state = 23}, + [1861] = {.lex_state = 125, .external_lex_state = 26}, + [1862] = {.lex_state = 125, .external_lex_state = 22}, + [1863] = {.lex_state = 125, .external_lex_state = 22}, + [1864] = {.lex_state = 125, .external_lex_state = 26}, + [1865] = {.lex_state = 125, .external_lex_state = 26}, + [1866] = {.lex_state = 125, .external_lex_state = 27}, + [1867] = {.lex_state = 125, .external_lex_state = 23}, + [1868] = {.lex_state = 125, .external_lex_state = 26}, + [1869] = {.lex_state = 125, .external_lex_state = 23}, + [1870] = {.lex_state = 125, .external_lex_state = 32}, + [1871] = {.lex_state = 5, .external_lex_state = 23}, + [1872] = {.lex_state = 31, .external_lex_state = 23}, + [1873] = {.lex_state = 125, .external_lex_state = 23}, + [1874] = {.lex_state = 125, .external_lex_state = 23}, + [1875] = {.lex_state = 125, .external_lex_state = 23}, + [1876] = {.lex_state = 5, .external_lex_state = 23}, + [1877] = {.lex_state = 31, .external_lex_state = 23}, + [1878] = {.lex_state = 125, .external_lex_state = 23}, + [1879] = {.lex_state = 125, .external_lex_state = 23}, + [1880] = {.lex_state = 125, .external_lex_state = 26}, + [1881] = {.lex_state = 125, .external_lex_state = 26}, + [1882] = {.lex_state = 125, .external_lex_state = 26}, + [1883] = {.lex_state = 125, .external_lex_state = 26}, + [1884] = {.lex_state = 125, .external_lex_state = 26}, + [1885] = {.lex_state = 125, .external_lex_state = 26}, + [1886] = {.lex_state = 125, .external_lex_state = 22}, + [1887] = {.lex_state = 125, .external_lex_state = 26}, + [1888] = {.lex_state = 125, .external_lex_state = 23}, + [1889] = {.lex_state = 125, .external_lex_state = 23}, + [1890] = {.lex_state = 125, .external_lex_state = 23}, + [1891] = {.lex_state = 125, .external_lex_state = 23}, + [1892] = {.lex_state = 125, .external_lex_state = 32}, + [1893] = {.lex_state = 125, .external_lex_state = 26}, + [1894] = {.lex_state = 125, .external_lex_state = 23}, + [1895] = {.lex_state = 125, .external_lex_state = 23}, + [1896] = {.lex_state = 125, .external_lex_state = 23}, + [1897] = {.lex_state = 125, .external_lex_state = 22}, + [1898] = {.lex_state = 125, .external_lex_state = 22}, + [1899] = {.lex_state = 125, .external_lex_state = 26}, + [1900] = {.lex_state = 125, .external_lex_state = 23}, + [1901] = {.lex_state = 125, .external_lex_state = 22}, + [1902] = {.lex_state = 125, .external_lex_state = 22}, + [1903] = {.lex_state = 125, .external_lex_state = 27}, + [1904] = {.lex_state = 125, .external_lex_state = 23}, + [1905] = {.lex_state = 125, .external_lex_state = 26}, + [1906] = {.lex_state = 5, .external_lex_state = 23}, + [1907] = {.lex_state = 125, .external_lex_state = 22}, + [1908] = {.lex_state = 125, .external_lex_state = 22}, + [1909] = {.lex_state = 125, .external_lex_state = 26}, + [1910] = {.lex_state = 125, .external_lex_state = 23}, + [1911] = {.lex_state = 125, .external_lex_state = 26}, + [1912] = {.lex_state = 125, .external_lex_state = 23}, + [1913] = {.lex_state = 125, .external_lex_state = 26}, + [1914] = {.lex_state = 125, .external_lex_state = 23}, + [1915] = {.lex_state = 125, .external_lex_state = 26}, + [1916] = {.lex_state = 125, .external_lex_state = 26}, + [1917] = {.lex_state = 125, .external_lex_state = 26}, + [1918] = {.lex_state = 125, .external_lex_state = 26}, + [1919] = {.lex_state = 125, .external_lex_state = 27}, + [1920] = {.lex_state = 125, .external_lex_state = 22}, + [1921] = {.lex_state = 125, .external_lex_state = 26}, + [1922] = {.lex_state = 125, .external_lex_state = 22}, + [1923] = {.lex_state = 125, .external_lex_state = 22}, + [1924] = {.lex_state = 125, .external_lex_state = 26}, + [1925] = {.lex_state = 125, .external_lex_state = 27}, + [1926] = {.lex_state = 125, .external_lex_state = 26}, + [1927] = {.lex_state = 125, .external_lex_state = 26}, + [1928] = {.lex_state = 125, .external_lex_state = 26}, + [1929] = {.lex_state = 125, .external_lex_state = 26}, + [1930] = {.lex_state = 125, .external_lex_state = 23}, + [1931] = {.lex_state = 125, .external_lex_state = 22}, + [1932] = {.lex_state = 125, .external_lex_state = 26}, + [1933] = {.lex_state = 125, .external_lex_state = 26}, + [1934] = {.lex_state = 125, .external_lex_state = 27}, + [1935] = {.lex_state = 125, .external_lex_state = 26}, + [1936] = {.lex_state = 125, .external_lex_state = 22}, + [1937] = {.lex_state = 125, .external_lex_state = 23}, + [1938] = {.lex_state = 125, .external_lex_state = 26}, + [1939] = {.lex_state = 125, .external_lex_state = 22}, + [1940] = {.lex_state = 125, .external_lex_state = 23}, + [1941] = {.lex_state = 125, .external_lex_state = 22}, + [1942] = {.lex_state = 125, .external_lex_state = 22}, + [1943] = {.lex_state = 125, .external_lex_state = 23}, + [1944] = {.lex_state = 125, .external_lex_state = 23}, + [1945] = {.lex_state = 125, .external_lex_state = 26}, + [1946] = {.lex_state = 125, .external_lex_state = 32}, + [1947] = {.lex_state = 125, .external_lex_state = 22}, + [1948] = {.lex_state = 125, .external_lex_state = 27}, + [1949] = {.lex_state = 125, .external_lex_state = 26}, + [1950] = {.lex_state = 125, .external_lex_state = 22}, + [1951] = {.lex_state = 125, .external_lex_state = 26}, + [1952] = {.lex_state = 125, .external_lex_state = 26}, + [1953] = {.lex_state = 125, .external_lex_state = 26}, + [1954] = {.lex_state = 125, .external_lex_state = 22}, + [1955] = {.lex_state = 125, .external_lex_state = 22}, + [1956] = {.lex_state = 125, .external_lex_state = 22}, + [1957] = {.lex_state = 125, .external_lex_state = 22}, + [1958] = {.lex_state = 125, .external_lex_state = 23}, + [1959] = {.lex_state = 125, .external_lex_state = 26}, + [1960] = {.lex_state = 125, .external_lex_state = 22}, + [1961] = {.lex_state = 125, .external_lex_state = 23}, + [1962] = {.lex_state = 125, .external_lex_state = 27}, + [1963] = {.lex_state = 125, .external_lex_state = 22}, + [1964] = {.lex_state = 125, .external_lex_state = 22}, + [1965] = {.lex_state = 125, .external_lex_state = 26}, + [1966] = {.lex_state = 125, .external_lex_state = 26}, + [1967] = {.lex_state = 125, .external_lex_state = 26}, + [1968] = {.lex_state = 125, .external_lex_state = 26}, + [1969] = {.lex_state = 125, .external_lex_state = 26}, + [1970] = {.lex_state = 125, .external_lex_state = 23}, + [1971] = {.lex_state = 125, .external_lex_state = 26}, + [1972] = {.lex_state = 125, .external_lex_state = 22}, + [1973] = {.lex_state = 125, .external_lex_state = 23}, + [1974] = {.lex_state = 125, .external_lex_state = 22}, + [1975] = {.lex_state = 125, .external_lex_state = 22}, + [1976] = {.lex_state = 125, .external_lex_state = 22}, + [1977] = {.lex_state = 125, .external_lex_state = 22}, + [1978] = {.lex_state = 125, .external_lex_state = 22}, + [1979] = {.lex_state = 125, .external_lex_state = 22}, + [1980] = {.lex_state = 125, .external_lex_state = 22}, + [1981] = {.lex_state = 125, .external_lex_state = 22}, + [1982] = {.lex_state = 125, .external_lex_state = 22}, + [1983] = {.lex_state = 125, .external_lex_state = 23}, + [1984] = {.lex_state = 125, .external_lex_state = 22}, + [1985] = {.lex_state = 125, .external_lex_state = 22}, + [1986] = {.lex_state = 125, .external_lex_state = 22}, + [1987] = {.lex_state = 125, .external_lex_state = 27}, + [1988] = {.lex_state = 125, .external_lex_state = 23}, + [1989] = {.lex_state = 125, .external_lex_state = 22}, + [1990] = {.lex_state = 125, .external_lex_state = 22}, + [1991] = {.lex_state = 125, .external_lex_state = 22}, + [1992] = {.lex_state = 125, .external_lex_state = 22}, + [1993] = {.lex_state = 125, .external_lex_state = 22}, + [1994] = {.lex_state = 125, .external_lex_state = 22}, + [1995] = {.lex_state = 125, .external_lex_state = 22}, + [1996] = {.lex_state = 125, .external_lex_state = 22}, + [1997] = {.lex_state = 125, .external_lex_state = 22}, + [1998] = {.lex_state = 125, .external_lex_state = 22}, + [1999] = {.lex_state = 125, .external_lex_state = 22}, + [2000] = {.lex_state = 125, .external_lex_state = 22}, + [2001] = {.lex_state = 125, .external_lex_state = 22}, + [2002] = {.lex_state = 125, .external_lex_state = 26}, + [2003] = {.lex_state = 125, .external_lex_state = 22}, + [2004] = {.lex_state = 125, .external_lex_state = 22}, + [2005] = {.lex_state = 125, .external_lex_state = 22}, + [2006] = {.lex_state = 125, .external_lex_state = 22}, + [2007] = {.lex_state = 125, .external_lex_state = 22}, + [2008] = {.lex_state = 125, .external_lex_state = 22}, + [2009] = {.lex_state = 125, .external_lex_state = 22}, + [2010] = {.lex_state = 125, .external_lex_state = 22}, + [2011] = {.lex_state = 125, .external_lex_state = 26}, + [2012] = {.lex_state = 125, .external_lex_state = 23}, + [2013] = {.lex_state = 125, .external_lex_state = 26}, + [2014] = {.lex_state = 125, .external_lex_state = 26}, + [2015] = {.lex_state = 125, .external_lex_state = 22}, + [2016] = {.lex_state = 125, .external_lex_state = 26}, + [2017] = {.lex_state = 125, .external_lex_state = 26}, + [2018] = {.lex_state = 125, .external_lex_state = 26}, + [2019] = {.lex_state = 125, .external_lex_state = 26}, + [2020] = {.lex_state = 125, .external_lex_state = 22}, + [2021] = {.lex_state = 125, .external_lex_state = 26}, + [2022] = {.lex_state = 125, .external_lex_state = 22}, + [2023] = {.lex_state = 125, .external_lex_state = 26}, + [2024] = {.lex_state = 125, .external_lex_state = 26}, + [2025] = {.lex_state = 125, .external_lex_state = 22}, + [2026] = {.lex_state = 125, .external_lex_state = 22}, + [2027] = {.lex_state = 125, .external_lex_state = 26}, + [2028] = {.lex_state = 125, .external_lex_state = 22}, + [2029] = {.lex_state = 125, .external_lex_state = 22}, + [2030] = {.lex_state = 125, .external_lex_state = 22}, + [2031] = {.lex_state = 125, .external_lex_state = 26}, + [2032] = {.lex_state = 125, .external_lex_state = 23}, + [2033] = {.lex_state = 125, .external_lex_state = 22}, + [2034] = {.lex_state = 125, .external_lex_state = 26}, + [2035] = {.lex_state = 125, .external_lex_state = 22}, + [2036] = {.lex_state = 125, .external_lex_state = 22}, + [2037] = {.lex_state = 125, .external_lex_state = 26}, + [2038] = {.lex_state = 125, .external_lex_state = 23}, + [2039] = {.lex_state = 125, .external_lex_state = 23}, + [2040] = {.lex_state = 125, .external_lex_state = 23}, + [2041] = {.lex_state = 125, .external_lex_state = 23}, + [2042] = {.lex_state = 125, .external_lex_state = 23}, + [2043] = {.lex_state = 125, .external_lex_state = 32}, + [2044] = {.lex_state = 125, .external_lex_state = 23}, + [2045] = {.lex_state = 125, .external_lex_state = 26}, + [2046] = {.lex_state = 125, .external_lex_state = 26}, + [2047] = {.lex_state = 125, .external_lex_state = 26}, + [2048] = {.lex_state = 125, .external_lex_state = 26}, + [2049] = {.lex_state = 125, .external_lex_state = 22}, + [2050] = {.lex_state = 125, .external_lex_state = 26}, + [2051] = {.lex_state = 125, .external_lex_state = 32}, + [2052] = {.lex_state = 125, .external_lex_state = 26}, + [2053] = {.lex_state = 125, .external_lex_state = 32}, + [2054] = {.lex_state = 125, .external_lex_state = 32}, + [2055] = {.lex_state = 125, .external_lex_state = 23}, + [2056] = {.lex_state = 125, .external_lex_state = 22}, + [2057] = {.lex_state = 125, .external_lex_state = 23}, + [2058] = {.lex_state = 125, .external_lex_state = 26}, + [2059] = {.lex_state = 125, .external_lex_state = 23}, + [2060] = {.lex_state = 125, .external_lex_state = 23}, + [2061] = {.lex_state = 125, .external_lex_state = 23}, + [2062] = {.lex_state = 125, .external_lex_state = 26}, + [2063] = {.lex_state = 125, .external_lex_state = 26}, + [2064] = {.lex_state = 125, .external_lex_state = 26}, + [2065] = {.lex_state = 125, .external_lex_state = 26}, + [2066] = {.lex_state = 125, .external_lex_state = 26}, + [2067] = {.lex_state = 125, .external_lex_state = 32}, + [2068] = {.lex_state = 125, .external_lex_state = 26}, + [2069] = {.lex_state = 125, .external_lex_state = 27}, + [2070] = {.lex_state = 125, .external_lex_state = 23}, + [2071] = {.lex_state = 125, .external_lex_state = 26}, + [2072] = {.lex_state = 125, .external_lex_state = 26}, + [2073] = {.lex_state = 125, .external_lex_state = 23}, + [2074] = {.lex_state = 125, .external_lex_state = 23}, + [2075] = {.lex_state = 125, .external_lex_state = 26}, + [2076] = {.lex_state = 125, .external_lex_state = 22}, + [2077] = {.lex_state = 125, .external_lex_state = 26}, + [2078] = {.lex_state = 125, .external_lex_state = 23}, + [2079] = {.lex_state = 125, .external_lex_state = 23}, + [2080] = {.lex_state = 125, .external_lex_state = 23}, + [2081] = {.lex_state = 125, .external_lex_state = 27}, + [2082] = {.lex_state = 125, .external_lex_state = 23}, + [2083] = {.lex_state = 125, .external_lex_state = 27}, + [2084] = {.lex_state = 125, .external_lex_state = 23}, + [2085] = {.lex_state = 125, .external_lex_state = 23}, + [2086] = {.lex_state = 125, .external_lex_state = 23}, + [2087] = {.lex_state = 125, .external_lex_state = 26}, + [2088] = {.lex_state = 125, .external_lex_state = 27}, + [2089] = {.lex_state = 125, .external_lex_state = 26}, + [2090] = {.lex_state = 125, .external_lex_state = 26}, + [2091] = {.lex_state = 125, .external_lex_state = 32}, + [2092] = {.lex_state = 125, .external_lex_state = 23}, + [2093] = {.lex_state = 125, .external_lex_state = 26}, + [2094] = {.lex_state = 125, .external_lex_state = 22}, + [2095] = {.lex_state = 125, .external_lex_state = 26}, + [2096] = {.lex_state = 125, .external_lex_state = 26}, + [2097] = {.lex_state = 125, .external_lex_state = 27}, + [2098] = {.lex_state = 125, .external_lex_state = 26}, + [2099] = {.lex_state = 125, .external_lex_state = 22}, + [2100] = {.lex_state = 125, .external_lex_state = 23}, + [2101] = {.lex_state = 125, .external_lex_state = 26}, + [2102] = {.lex_state = 125, .external_lex_state = 23}, + [2103] = {.lex_state = 125, .external_lex_state = 23}, + [2104] = {.lex_state = 125, .external_lex_state = 23}, + [2105] = {.lex_state = 125, .external_lex_state = 27}, + [2106] = {.lex_state = 125, .external_lex_state = 22}, + [2107] = {.lex_state = 125, .external_lex_state = 26}, + [2108] = {.lex_state = 125, .external_lex_state = 26}, + [2109] = {.lex_state = 125, .external_lex_state = 27}, + [2110] = {.lex_state = 125, .external_lex_state = 26}, + [2111] = {.lex_state = 125, .external_lex_state = 23}, + [2112] = {.lex_state = 125, .external_lex_state = 23}, + [2113] = {.lex_state = 125, .external_lex_state = 22}, + [2114] = {.lex_state = 125, .external_lex_state = 32}, + [2115] = {.lex_state = 125, .external_lex_state = 32}, + [2116] = {.lex_state = 125, .external_lex_state = 32}, + [2117] = {.lex_state = 125, .external_lex_state = 32}, + [2118] = {.lex_state = 125, .external_lex_state = 26}, + [2119] = {.lex_state = 125, .external_lex_state = 23}, + [2120] = {.lex_state = 125, .external_lex_state = 27}, + [2121] = {.lex_state = 125, .external_lex_state = 27}, + [2122] = {.lex_state = 125, .external_lex_state = 26}, + [2123] = {.lex_state = 125, .external_lex_state = 23}, + [2124] = {.lex_state = 125, .external_lex_state = 23}, + [2125] = {.lex_state = 125, .external_lex_state = 23}, + [2126] = {.lex_state = 125, .external_lex_state = 23}, + [2127] = {.lex_state = 125, .external_lex_state = 22}, + [2128] = {.lex_state = 125, .external_lex_state = 23}, + [2129] = {.lex_state = 125, .external_lex_state = 23}, + [2130] = {.lex_state = 125, .external_lex_state = 23}, + [2131] = {.lex_state = 125, .external_lex_state = 23}, + [2132] = {.lex_state = 125, .external_lex_state = 23}, + [2133] = {.lex_state = 125, .external_lex_state = 23}, + [2134] = {.lex_state = 125, .external_lex_state = 23}, + [2135] = {.lex_state = 125, .external_lex_state = 23}, + [2136] = {.lex_state = 125, .external_lex_state = 23}, + [2137] = {.lex_state = 125, .external_lex_state = 23}, + [2138] = {.lex_state = 125, .external_lex_state = 23}, + [2139] = {.lex_state = 125, .external_lex_state = 23}, + [2140] = {.lex_state = 125, .external_lex_state = 23}, + [2141] = {.lex_state = 125, .external_lex_state = 23}, + [2142] = {.lex_state = 125, .external_lex_state = 23}, + [2143] = {.lex_state = 125, .external_lex_state = 23}, + [2144] = {.lex_state = 125, .external_lex_state = 26}, + [2145] = {.lex_state = 32, .external_lex_state = 23}, + [2146] = {.lex_state = 125, .external_lex_state = 23}, + [2147] = {.lex_state = 125, .external_lex_state = 23}, + [2148] = {.lex_state = 125, .external_lex_state = 23}, + [2149] = {.lex_state = 125, .external_lex_state = 23}, + [2150] = {.lex_state = 125, .external_lex_state = 23}, + [2151] = {.lex_state = 125, .external_lex_state = 23}, + [2152] = {.lex_state = 125, .external_lex_state = 23}, + [2153] = {.lex_state = 125, .external_lex_state = 23}, + [2154] = {.lex_state = 125, .external_lex_state = 23}, + [2155] = {.lex_state = 125, .external_lex_state = 23}, + [2156] = {.lex_state = 125, .external_lex_state = 23}, + [2157] = {.lex_state = 125, .external_lex_state = 23}, + [2158] = {.lex_state = 125, .external_lex_state = 23}, + [2159] = {.lex_state = 125, .external_lex_state = 23}, + [2160] = {.lex_state = 125, .external_lex_state = 23}, + [2161] = {.lex_state = 125, .external_lex_state = 23}, + [2162] = {.lex_state = 125, .external_lex_state = 23}, + [2163] = {.lex_state = 125, .external_lex_state = 23}, + [2164] = {.lex_state = 125, .external_lex_state = 23}, + [2165] = {.lex_state = 125, .external_lex_state = 23}, + [2166] = {.lex_state = 125, .external_lex_state = 26}, + [2167] = {.lex_state = 32, .external_lex_state = 23}, + [2168] = {.lex_state = 125, .external_lex_state = 23}, + [2169] = {.lex_state = 125, .external_lex_state = 23}, + [2170] = {.lex_state = 125, .external_lex_state = 23}, + [2171] = {.lex_state = 125, .external_lex_state = 23}, + [2172] = {.lex_state = 125, .external_lex_state = 23}, + [2173] = {.lex_state = 125, .external_lex_state = 23}, + [2174] = {.lex_state = 125, .external_lex_state = 23}, + [2175] = {.lex_state = 125, .external_lex_state = 23}, + [2176] = {.lex_state = 125, .external_lex_state = 23}, + [2177] = {.lex_state = 125, .external_lex_state = 23}, + [2178] = {.lex_state = 125, .external_lex_state = 23}, + [2179] = {.lex_state = 125, .external_lex_state = 23}, + [2180] = {.lex_state = 125, .external_lex_state = 23}, + [2181] = {.lex_state = 125, .external_lex_state = 23}, + [2182] = {.lex_state = 125, .external_lex_state = 23}, + [2183] = {.lex_state = 125, .external_lex_state = 23}, + [2184] = {.lex_state = 125, .external_lex_state = 23}, + [2185] = {.lex_state = 125, .external_lex_state = 23}, + [2186] = {.lex_state = 2, .external_lex_state = 33}, + [2187] = {.lex_state = 125, .external_lex_state = 23}, + [2188] = {.lex_state = 125, .external_lex_state = 26}, + [2189] = {.lex_state = 125, .external_lex_state = 26}, + [2190] = {.lex_state = 125, .external_lex_state = 23}, + [2191] = {.lex_state = 125, .external_lex_state = 23}, + [2192] = {.lex_state = 125, .external_lex_state = 23}, + [2193] = {.lex_state = 125, .external_lex_state = 23}, + [2194] = {.lex_state = 125, .external_lex_state = 23}, + [2195] = {.lex_state = 125, .external_lex_state = 23}, + [2196] = {.lex_state = 125, .external_lex_state = 23}, + [2197] = {.lex_state = 125, .external_lex_state = 23}, + [2198] = {.lex_state = 125, .external_lex_state = 23}, + [2199] = {.lex_state = 2, .external_lex_state = 33}, + [2200] = {.lex_state = 125, .external_lex_state = 23}, + [2201] = {.lex_state = 32, .external_lex_state = 23}, + [2202] = {.lex_state = 125, .external_lex_state = 23}, + [2203] = {.lex_state = 32, .external_lex_state = 23}, + [2204] = {.lex_state = 125, .external_lex_state = 23}, + [2205] = {.lex_state = 125, .external_lex_state = 23}, + [2206] = {.lex_state = 125, .external_lex_state = 23}, + [2207] = {.lex_state = 125, .external_lex_state = 23}, + [2208] = {.lex_state = 125, .external_lex_state = 23}, + [2209] = {.lex_state = 125, .external_lex_state = 23}, + [2210] = {.lex_state = 32, .external_lex_state = 23}, + [2211] = {.lex_state = 125, .external_lex_state = 23}, + [2212] = {.lex_state = 125, .external_lex_state = 23}, + [2213] = {.lex_state = 125, .external_lex_state = 23}, + [2214] = {.lex_state = 125, .external_lex_state = 23}, + [2215] = {.lex_state = 125, .external_lex_state = 23}, + [2216] = {.lex_state = 125, .external_lex_state = 23}, + [2217] = {.lex_state = 125, .external_lex_state = 26}, + [2218] = {.lex_state = 2, .external_lex_state = 33}, + [2219] = {.lex_state = 2, .external_lex_state = 33}, + [2220] = {.lex_state = 125, .external_lex_state = 23}, + [2221] = {.lex_state = 125, .external_lex_state = 23}, + [2222] = {.lex_state = 125, .external_lex_state = 23}, + [2223] = {.lex_state = 125, .external_lex_state = 23}, + [2224] = {.lex_state = 2, .external_lex_state = 33}, + [2225] = {.lex_state = 125, .external_lex_state = 23}, + [2226] = {.lex_state = 125, .external_lex_state = 23}, + [2227] = {.lex_state = 125, .external_lex_state = 23}, + [2228] = {.lex_state = 125, .external_lex_state = 23}, + [2229] = {.lex_state = 125, .external_lex_state = 23}, + [2230] = {.lex_state = 125, .external_lex_state = 23}, + [2231] = {.lex_state = 125, .external_lex_state = 23}, + [2232] = {.lex_state = 125, .external_lex_state = 23}, + [2233] = {.lex_state = 125, .external_lex_state = 23}, + [2234] = {.lex_state = 125, .external_lex_state = 23}, + [2235] = {.lex_state = 125, .external_lex_state = 23}, + [2236] = {.lex_state = 125, .external_lex_state = 23}, + [2237] = {.lex_state = 125, .external_lex_state = 23}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [sym_hash_bang_line] = ACTIONS(1), @@ -8417,75 +9460,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1), [sym__template_chars] = ACTIONS(1), [sym__ternary_qmark] = ACTIONS(1), + [sym__shorthand_arrow] = ACTIONS(1), [sym_html_comment] = ACTIONS(5), [sym_jsx_text] = ACTIONS(1), }, - [1] = { - [sym_program] = STATE(1626), - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(1)] = { + [sym_program] = STATE(2209), + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(1393), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -8545,81 +9589,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [2] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1333), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1333), - [sym_pair] = STATE(1333), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1334), - [aux_sym_object_pattern_repeat1] = STATE(1312), + [STATE(2)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(32), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2192), + [sym_object_assignment_pattern] = STATE(1617), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2192), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2192), + [sym_spread_element] = STATE(1589), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(742), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1205), + [sym_formal_parameters] = STATE(1727), + [sym_rest_pattern] = STATE(1617), + [sym_method_definition] = STATE(1589), + [sym_pair] = STATE(1589), + [sym_pair_pattern] = STATE(1617), + [sym__property_name] = STATE(1562), + [sym_computed_property_name] = STATE(1562), + [aux_sym_program_repeat1] = STATE(32), + [aux_sym_export_statement_repeat1] = STATE(1103), + [aux_sym_object_repeat1] = STATE(1590), + [aux_sym_object_pattern_repeat1] = STATE(1628), [sym_identifier] = ACTIONS(95), [anon_sym_export] = ACTIONS(97), [anon_sym_STAR] = ACTIONS(99), @@ -8675,98 +9719,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(117), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(121), - [anon_sym_set] = ACTIONS(121), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_static] = ACTIONS(119), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), [sym_html_comment] = ACTIONS(5), }, - [3] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1289), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1289), - [sym_pair] = STATE(1289), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1309), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(123), - [anon_sym_export] = ACTIONS(125), + [STATE(3)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2192), + [sym_object_assignment_pattern] = STATE(1617), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2192), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2192), + [sym_spread_element] = STATE(1560), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(742), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1205), + [sym_formal_parameters] = STATE(1727), + [sym_rest_pattern] = STATE(1617), + [sym_method_definition] = STATE(1560), + [sym_pair] = STATE(1560), + [sym_pair_pattern] = STATE(1617), + [sym__property_name] = STATE(1562), + [sym_computed_property_name] = STATE(1562), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(1103), + [aux_sym_object_repeat1] = STATE(1623), + [aux_sym_object_pattern_repeat1] = STATE(1628), + [sym_identifier] = ACTIONS(125), + [anon_sym_export] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(99), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(129), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -8788,7 +9832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(131), + [anon_sym_async] = ACTIONS(133), [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_DOT_DOT_DOT] = ACTIONS(111), @@ -8812,98 +9856,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(133), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(135), - [anon_sym_set] = ACTIONS(135), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_static] = ACTIONS(135), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(137), + [anon_sym_set] = ACTIONS(137), [sym_html_comment] = ACTIONS(5), }, - [4] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1289), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1289), - [sym_pair] = STATE(1289), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1309), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(123), - [anon_sym_export] = ACTIONS(125), + [STATE(4)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2192), + [sym_object_assignment_pattern] = STATE(1617), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2192), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2192), + [sym_spread_element] = STATE(1560), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(742), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1205), + [sym_formal_parameters] = STATE(1727), + [sym_rest_pattern] = STATE(1617), + [sym_method_definition] = STATE(1560), + [sym_pair] = STATE(1560), + [sym_pair_pattern] = STATE(1617), + [sym__property_name] = STATE(1562), + [sym_computed_property_name] = STATE(1562), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(1103), + [aux_sym_object_repeat1] = STATE(1623), + [aux_sym_object_pattern_repeat1] = STATE(1628), + [sym_identifier] = ACTIONS(125), + [anon_sym_export] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(99), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(139), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -8925,7 +9969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(131), + [anon_sym_async] = ACTIONS(133), [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_DOT_DOT_DOT] = ACTIONS(111), @@ -8949,98 +9993,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(133), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(135), - [anon_sym_set] = ACTIONS(135), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_static] = ACTIONS(135), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(137), + [anon_sym_set] = ACTIONS(137), [sym_html_comment] = ACTIONS(5), }, - [5] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1289), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1289), - [sym_pair] = STATE(1289), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1309), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(123), - [anon_sym_export] = ACTIONS(125), + [STATE(5)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2192), + [sym_object_assignment_pattern] = STATE(1617), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2192), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2192), + [sym_spread_element] = STATE(1654), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(742), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1205), + [sym_formal_parameters] = STATE(1727), + [sym_rest_pattern] = STATE(1617), + [sym_method_definition] = STATE(1654), + [sym_pair] = STATE(1654), + [sym_pair_pattern] = STATE(1617), + [sym__property_name] = STATE(1562), + [sym_computed_property_name] = STATE(1562), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(1103), + [aux_sym_object_repeat1] = STATE(1656), + [aux_sym_object_pattern_repeat1] = STATE(1628), + [sym_identifier] = ACTIONS(141), + [anon_sym_export] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(99), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(139), + [anon_sym_RBRACE] = ACTIONS(145), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(129), + [anon_sym_let] = ACTIONS(147), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -9062,7 +10106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(131), + [anon_sym_async] = ACTIONS(149), [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_DOT_DOT_DOT] = ACTIONS(111), @@ -9086,98 +10130,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(133), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(135), - [anon_sym_set] = ACTIONS(135), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_static] = ACTIONS(151), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(153), + [anon_sym_set] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [6] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1333), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1333), - [sym_pair] = STATE(1333), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1334), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(141), - [anon_sym_export] = ACTIONS(143), + [STATE(6)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2192), + [sym_object_assignment_pattern] = STATE(1617), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2192), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2192), + [sym_spread_element] = STATE(1654), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(742), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1205), + [sym_formal_parameters] = STATE(1727), + [sym_rest_pattern] = STATE(1617), + [sym_method_definition] = STATE(1654), + [sym_pair] = STATE(1654), + [sym_pair_pattern] = STATE(1617), + [sym__property_name] = STATE(1562), + [sym_computed_property_name] = STATE(1562), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(1103), + [aux_sym_object_repeat1] = STATE(1656), + [aux_sym_object_pattern_repeat1] = STATE(1628), + [sym_identifier] = ACTIONS(155), + [anon_sym_export] = ACTIONS(157), [anon_sym_STAR] = ACTIONS(99), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(145), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(145), + [anon_sym_let] = ACTIONS(159), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -9199,7 +10243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(147), + [anon_sym_async] = ACTIONS(161), [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_DOT_DOT_DOT] = ACTIONS(111), @@ -9223,213 +10267,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(149), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(151), - [anon_sym_set] = ACTIONS(151), - [sym_html_comment] = ACTIONS(5), - }, - [7] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(153), - [sym_identifier] = ACTIONS(155), - [anon_sym_export] = ACTIONS(158), - [anon_sym_default] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_RBRACE] = ACTIONS(153), - [anon_sym_import] = ACTIONS(166), - [anon_sym_with] = ACTIONS(169), - [anon_sym_var] = ACTIONS(172), - [anon_sym_let] = ACTIONS(175), - [anon_sym_const] = ACTIONS(178), - [anon_sym_if] = ACTIONS(181), - [anon_sym_switch] = ACTIONS(184), - [anon_sym_for] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(190), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_await] = ACTIONS(196), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(202), - [anon_sym_try] = ACTIONS(205), - [anon_sym_break] = ACTIONS(208), - [anon_sym_continue] = ACTIONS(211), - [anon_sym_debugger] = ACTIONS(214), - [anon_sym_return] = ACTIONS(217), - [anon_sym_throw] = ACTIONS(220), - [anon_sym_case] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(226), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(232), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_class] = ACTIONS(238), - [anon_sym_async] = ACTIONS(241), - [anon_sym_function] = ACTIONS(244), - [anon_sym_new] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(250), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(256), - [anon_sym_typeof] = ACTIONS(250), - [anon_sym_void] = ACTIONS(250), - [anon_sym_delete] = ACTIONS(250), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(262), - [sym_number] = ACTIONS(265), - [sym_private_property_identifier] = ACTIONS(268), - [sym_this] = ACTIONS(271), - [sym_super] = ACTIONS(271), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_null] = ACTIONS(271), - [sym_undefined] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_static] = ACTIONS(280), - [anon_sym_get] = ACTIONS(280), - [anon_sym_set] = ACTIONS(280), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_static] = ACTIONS(163), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(165), + [anon_sym_set] = ACTIONS(165), [sym_html_comment] = ACTIONS(5), }, - [8] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(11), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(283), + [STATE(7)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2192), + [sym_object_assignment_pattern] = STATE(1617), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2192), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2192), + [sym_spread_element] = STATE(1560), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(742), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1205), + [sym_formal_parameters] = STATE(1727), + [sym_rest_pattern] = STATE(1617), + [sym_method_definition] = STATE(1560), + [sym_pair] = STATE(1560), + [sym_pair_pattern] = STATE(1617), + [sym__property_name] = STATE(1562), + [sym_computed_property_name] = STATE(1562), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(1103), + [aux_sym_object_repeat1] = STATE(1623), + [aux_sym_object_pattern_repeat1] = STATE(1628), + [sym_identifier] = ACTIONS(125), + [anon_sym_export] = ACTIONS(127), + [anon_sym_STAR] = ACTIONS(99), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(101), + [anon_sym_RBRACE] = ACTIONS(167), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(131), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -9445,16 +10374,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(49), [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(283), [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), + [anon_sym_async] = ACTIONS(133), [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(111), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), [anon_sym_SLASH] = ACTIONS(75), @@ -9467,90 +10396,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), + [sym_number] = ACTIONS(113), + [sym_private_property_identifier] = ACTIONS(115), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_static] = ACTIONS(135), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(137), + [anon_sym_set] = ACTIONS(137), [sym_html_comment] = ACTIONS(5), }, - [9] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(8)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), + [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_if] = ACTIONS(197), + [anon_sym_switch] = ACTIONS(200), + [anon_sym_for] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(206), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_await] = ACTIONS(212), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(218), + [anon_sym_try] = ACTIONS(221), + [anon_sym_break] = ACTIONS(224), + [anon_sym_continue] = ACTIONS(227), + [anon_sym_debugger] = ACTIONS(230), + [anon_sym_return] = ACTIONS(233), + [anon_sym_throw] = ACTIONS(236), + [anon_sym_case] = ACTIONS(177), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(242), + [anon_sym_LT] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_class] = ACTIONS(254), + [anon_sym_async] = ACTIONS(257), + [anon_sym_function] = ACTIONS(260), + [anon_sym_new] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_SLASH] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(272), + [anon_sym_typeof] = ACTIONS(266), + [anon_sym_void] = ACTIONS(266), + [anon_sym_delete] = ACTIONS(266), + [anon_sym_PLUS_PLUS] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(278), + [sym_number] = ACTIONS(281), + [sym_private_property_identifier] = ACTIONS(284), + [sym_this] = ACTIONS(287), + [sym_super] = ACTIONS(287), + [sym_true] = ACTIONS(287), + [sym_false] = ACTIONS(287), + [sym_null] = ACTIONS(287), + [sym_undefined] = ACTIONS(290), + [anon_sym_AT] = ACTIONS(293), + [anon_sym_static] = ACTIONS(296), + [anon_sym_get] = ACTIONS(296), + [anon_sym_set] = ACTIONS(296), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(9)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(11), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(287), + [anon_sym_default] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(301), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -9570,7 +10626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(49), [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(287), + [anon_sym_case] = ACTIONS(299), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), @@ -9606,76 +10662,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [10] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(10)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(291), + [anon_sym_default] = ACTIONS(303), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -9695,7 +10751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(49), [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(291), + [anon_sym_case] = ACTIONS(303), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), @@ -9731,76 +10787,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [11] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(11)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(295), + [anon_sym_default] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(309), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -9820,7 +10876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(49), [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(295), + [anon_sym_case] = ACTIONS(307), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), @@ -9856,75 +10912,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [12] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(12)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(10), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(311), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(299), + [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -9944,6 +11001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(49), [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), + [anon_sym_case] = ACTIONS(311), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), @@ -9979,75 +11037,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [13] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(301), + [STATE(13)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10102,75 +11160,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [14] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(14)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(317), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10225,75 +11283,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [15] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(15)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), + [ts_builtin_sym_end] = ACTIONS(319), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10348,75 +11406,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [16] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(16)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10471,75 +11529,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [17] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(17)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(323), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10594,75 +11652,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [18] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(301), + [STATE(18)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(325), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10717,75 +11775,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [19] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(19)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10840,75 +11898,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [20] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(313), + [STATE(20)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(329), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10963,75 +12021,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [21] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(21)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11086,75 +12144,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [22] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), + [STATE(22)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(1166), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_RBRACE] = ACTIONS(333), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11209,75 +12267,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [23] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(23)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), + [ts_builtin_sym_end] = ACTIONS(335), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(319), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11332,75 +12390,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [24] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(24)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(337), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11455,194 +12513,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [25] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(384), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), - [sym_html_comment] = ACTIONS(5), - }, - [26] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(377), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(25)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(339), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11697,73 +12636,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [27] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(416), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(26)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(341), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11818,73 +12759,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [28] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(361), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(27)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(26), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(343), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11939,73 +12882,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [29] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(422), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(28)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12060,85 +13005,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [30] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(414), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(29)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(28), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(347), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -12151,9 +13098,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -12176,78 +13123,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [31] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(414), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(30)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(349), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12302,85 +13251,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [32] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(1323), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(31)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(30), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(351), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -12393,9 +13344,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -12418,90 +13369,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [33] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(416), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(32)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(353), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -12514,9 +13467,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -12539,90 +13492,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [34] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(361), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(33)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(355), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -12635,9 +13590,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -12660,78 +13615,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [35] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(384), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(34)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(357), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12786,85 +13743,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [36] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(420), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(35)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(32), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(32), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(359), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -12877,9 +13836,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -12902,90 +13861,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [37] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(374), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(36)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(361), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -12998,9 +13959,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -13023,90 +13984,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [38] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(422), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(37)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(34), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(34), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(363), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -13119,9 +14082,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -13144,90 +14107,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [39] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(362), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(38)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(36), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(36), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(365), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -13240,9 +14205,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -13265,75 +14230,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [40] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(374), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(39)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1393), + [ts_builtin_sym_end] = ACTIONS(335), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -13391,85 +14358,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [41] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(363), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(40)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(490), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -13482,9 +14449,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -13507,105 +14474,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [42] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(366), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [STATE(41)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1855), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(389), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -13628,105 +14595,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(370), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [STATE(42)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1856), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(389), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -13749,90 +14716,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(372), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(43)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1858), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(44)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1860), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(45)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(2205), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(46)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(462), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -13845,9 +15175,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -13870,90 +15200,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [45] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(377), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(47)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(485), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -13966,9 +15296,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -13991,75 +15321,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [46] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(362), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(48)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(488), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14117,85 +15447,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [47] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(1653), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(49)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(465), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -14208,9 +15538,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -14233,75 +15563,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(425), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(50)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(434), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14359,70 +15689,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(363), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(51)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(435), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14480,70 +15810,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [50] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(345), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(52)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(467), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14601,70 +15931,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [51] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(366), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(53)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(425), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14722,70 +16052,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [52] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(420), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(54)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(428), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14843,70 +16173,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [53] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(370), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(55)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(429), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14964,70 +16294,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [54] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(372), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(56)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(450), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15085,85 +16415,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [55] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(425), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(57)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(432), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -15176,9 +16506,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -15201,203 +16531,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), - [sym_html_comment] = ACTIONS(5), - }, - [56] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(581), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(355), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_RPAREN] = ACTIONS(355), - [anon_sym_await] = ACTIONS(361), - [anon_sym_in] = ACTIONS(363), - [anon_sym_COLON] = ACTIONS(355), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_RBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym__ternary_qmark] = ACTIONS(355), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [57] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(732), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(355), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(58)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(2102), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(389), [anon_sym_await] = ACTIONS(37), - [anon_sym_in] = ACTIONS(363), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [sym_optional_chain] = ACTIONS(355), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(77), [anon_sym_typeof] = ACTIONS(73), [anon_sym_void] = ACTIONS(73), @@ -15415,2346 +16652,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), - [sym__automatic_semicolon] = ACTIONS(355), - [sym__ternary_qmark] = ACTIONS(355), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [58] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(727), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_STAR] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(355), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(59)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1867), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_await] = ACTIONS(425), - [anon_sym_in] = ACTIONS(363), - [anon_sym_of] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(431), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), - [sym__automatic_semicolon] = ACTIONS(355), - [sym__ternary_qmark] = ACTIONS(355), - [sym_html_comment] = ACTIONS(5), - }, - [59] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(796), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_in] = ACTIONS(363), - [anon_sym_COLON] = ACTIONS(355), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym__ternary_qmark] = ACTIONS(355), - [sym_html_comment] = ACTIONS(5), - }, - [60] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(856), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_in] = ACTIONS(363), - [anon_sym_of] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(485), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), - [sym__ternary_qmark] = ACTIONS(355), - [sym_html_comment] = ACTIONS(5), - }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(499), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(501), - [anon_sym_default] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_COMMA] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_import] = ACTIONS(501), - [anon_sym_with] = ACTIONS(501), - [anon_sym_var] = ACTIONS(501), - [anon_sym_let] = ACTIONS(501), - [anon_sym_const] = ACTIONS(501), - [anon_sym_else] = ACTIONS(501), - [anon_sym_if] = ACTIONS(501), - [anon_sym_switch] = ACTIONS(501), - [anon_sym_for] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_await] = ACTIONS(501), - [anon_sym_in] = ACTIONS(501), - [anon_sym_of] = ACTIONS(501), - [anon_sym_while] = ACTIONS(501), - [anon_sym_do] = ACTIONS(501), - [anon_sym_try] = ACTIONS(501), - [anon_sym_break] = ACTIONS(501), - [anon_sym_continue] = ACTIONS(501), - [anon_sym_debugger] = ACTIONS(501), - [anon_sym_return] = ACTIONS(501), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_case] = ACTIONS(501), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(501), - [anon_sym_GT] = ACTIONS(501), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_async] = ACTIONS(501), - [anon_sym_function] = ACTIONS(501), - [sym_optional_chain] = ACTIONS(499), - [anon_sym_new] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_GT_GT] = ACTIONS(501), - [anon_sym_GT_GT_GT] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(501), - [anon_sym_CARET] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_SLASH] = ACTIONS(501), - [anon_sym_PERCENT] = ACTIONS(499), - [anon_sym_STAR_STAR] = ACTIONS(499), - [anon_sym_LT_EQ] = ACTIONS(499), - [anon_sym_EQ_EQ] = ACTIONS(501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(499), - [anon_sym_BANG_EQ] = ACTIONS(501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(499), - [anon_sym_GT_EQ] = ACTIONS(499), - [anon_sym_QMARK_QMARK] = ACTIONS(499), - [anon_sym_instanceof] = ACTIONS(501), - [anon_sym_BANG] = ACTIONS(501), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_typeof] = ACTIONS(501), - [anon_sym_void] = ACTIONS(501), - [anon_sym_delete] = ACTIONS(501), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(499), - [sym_number] = ACTIONS(499), - [sym_private_property_identifier] = ACTIONS(499), - [sym_this] = ACTIONS(501), - [sym_super] = ACTIONS(501), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_null] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(499), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [sym__automatic_semicolon] = ACTIONS(499), - [sym__ternary_qmark] = ACTIONS(499), - [sym_html_comment] = ACTIONS(5), - }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [anon_sym_export] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_default] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_import] = ACTIONS(505), - [anon_sym_with] = ACTIONS(505), - [anon_sym_var] = ACTIONS(505), - [anon_sym_let] = ACTIONS(505), - [anon_sym_const] = ACTIONS(505), - [anon_sym_else] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_for] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_await] = ACTIONS(505), - [anon_sym_in] = ACTIONS(507), - [anon_sym_while] = ACTIONS(505), - [anon_sym_do] = ACTIONS(505), - [anon_sym_try] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_debugger] = ACTIONS(505), - [anon_sym_return] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(505), - [anon_sym_case] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(503), - [anon_sym_class] = ACTIONS(505), - [anon_sym_async] = ACTIONS(505), - [anon_sym_function] = ACTIONS(505), - [sym_optional_chain] = ACTIONS(509), - [anon_sym_new] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(503), - [anon_sym_typeof] = ACTIONS(505), - [anon_sym_void] = ACTIONS(505), - [anon_sym_delete] = ACTIONS(505), - [anon_sym_PLUS_PLUS] = ACTIONS(503), - [anon_sym_DASH_DASH] = ACTIONS(503), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(503), - [sym_number] = ACTIONS(503), - [sym_private_property_identifier] = ACTIONS(503), - [sym_this] = ACTIONS(505), - [sym_super] = ACTIONS(505), - [sym_true] = ACTIONS(505), - [sym_false] = ACTIONS(505), - [sym_null] = ACTIONS(505), - [sym_undefined] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(503), - [anon_sym_static] = ACTIONS(505), - [anon_sym_get] = ACTIONS(505), - [anon_sym_set] = ACTIONS(505), - [sym__automatic_semicolon] = ACTIONS(513), - [sym__ternary_qmark] = ACTIONS(509), - [sym_html_comment] = ACTIONS(5), - }, - [63] = { - [ts_builtin_sym_end] = ACTIONS(499), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(501), - [anon_sym_default] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_COMMA] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_import] = ACTIONS(501), - [anon_sym_with] = ACTIONS(501), - [anon_sym_var] = ACTIONS(501), - [anon_sym_let] = ACTIONS(501), - [anon_sym_const] = ACTIONS(501), - [anon_sym_else] = ACTIONS(501), - [anon_sym_if] = ACTIONS(501), - [anon_sym_switch] = ACTIONS(501), - [anon_sym_for] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_await] = ACTIONS(501), - [anon_sym_in] = ACTIONS(501), - [anon_sym_of] = ACTIONS(501), - [anon_sym_while] = ACTIONS(501), - [anon_sym_do] = ACTIONS(501), - [anon_sym_try] = ACTIONS(501), - [anon_sym_break] = ACTIONS(501), - [anon_sym_continue] = ACTIONS(501), - [anon_sym_debugger] = ACTIONS(501), - [anon_sym_return] = ACTIONS(501), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_case] = ACTIONS(501), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(501), - [anon_sym_GT] = ACTIONS(501), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_async] = ACTIONS(501), - [anon_sym_function] = ACTIONS(501), - [sym_optional_chain] = ACTIONS(499), - [anon_sym_new] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_GT_GT] = ACTIONS(501), - [anon_sym_GT_GT_GT] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(501), - [anon_sym_CARET] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_SLASH] = ACTIONS(501), - [anon_sym_PERCENT] = ACTIONS(499), - [anon_sym_STAR_STAR] = ACTIONS(499), - [anon_sym_LT_EQ] = ACTIONS(499), - [anon_sym_EQ_EQ] = ACTIONS(501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(499), - [anon_sym_BANG_EQ] = ACTIONS(501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(499), - [anon_sym_GT_EQ] = ACTIONS(499), - [anon_sym_QMARK_QMARK] = ACTIONS(499), - [anon_sym_instanceof] = ACTIONS(501), - [anon_sym_BANG] = ACTIONS(501), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_typeof] = ACTIONS(501), - [anon_sym_void] = ACTIONS(501), - [anon_sym_delete] = ACTIONS(501), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(499), - [sym_number] = ACTIONS(499), - [sym_private_property_identifier] = ACTIONS(499), - [sym_this] = ACTIONS(501), - [sym_super] = ACTIONS(501), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_null] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(499), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [sym__automatic_semicolon] = ACTIONS(515), - [sym__ternary_qmark] = ACTIONS(499), - [sym_html_comment] = ACTIONS(5), - }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [anon_sym_export] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(505), - [anon_sym_default] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_import] = ACTIONS(505), - [anon_sym_with] = ACTIONS(505), - [anon_sym_var] = ACTIONS(505), - [anon_sym_let] = ACTIONS(505), - [anon_sym_const] = ACTIONS(505), - [anon_sym_else] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_for] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_await] = ACTIONS(505), - [anon_sym_in] = ACTIONS(505), - [anon_sym_of] = ACTIONS(505), - [anon_sym_while] = ACTIONS(505), - [anon_sym_do] = ACTIONS(505), - [anon_sym_try] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_debugger] = ACTIONS(505), - [anon_sym_return] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(505), - [anon_sym_case] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_DOT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(503), - [anon_sym_class] = ACTIONS(505), - [anon_sym_async] = ACTIONS(505), - [anon_sym_function] = ACTIONS(505), - [sym_optional_chain] = ACTIONS(503), - [anon_sym_new] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(503), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_GT_GT_GT] = ACTIONS(503), - [anon_sym_LT_LT] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_PERCENT] = ACTIONS(503), - [anon_sym_STAR_STAR] = ACTIONS(503), - [anon_sym_LT_EQ] = ACTIONS(503), - [anon_sym_EQ_EQ] = ACTIONS(505), - [anon_sym_EQ_EQ_EQ] = ACTIONS(503), - [anon_sym_BANG_EQ] = ACTIONS(505), - [anon_sym_BANG_EQ_EQ] = ACTIONS(503), - [anon_sym_GT_EQ] = ACTIONS(503), - [anon_sym_QMARK_QMARK] = ACTIONS(503), - [anon_sym_instanceof] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(503), - [anon_sym_typeof] = ACTIONS(505), - [anon_sym_void] = ACTIONS(505), - [anon_sym_delete] = ACTIONS(505), - [anon_sym_PLUS_PLUS] = ACTIONS(503), - [anon_sym_DASH_DASH] = ACTIONS(503), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(503), - [sym_number] = ACTIONS(503), - [sym_private_property_identifier] = ACTIONS(503), - [sym_this] = ACTIONS(505), - [sym_super] = ACTIONS(505), - [sym_true] = ACTIONS(505), - [sym_false] = ACTIONS(505), - [sym_null] = ACTIONS(505), - [sym_undefined] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(503), - [anon_sym_static] = ACTIONS(505), - [anon_sym_get] = ACTIONS(505), - [anon_sym_set] = ACTIONS(505), - [sym__automatic_semicolon] = ACTIONS(517), - [sym__ternary_qmark] = ACTIONS(503), - [sym_html_comment] = ACTIONS(5), - }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(519), - [sym_identifier] = ACTIONS(521), - [anon_sym_export] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(521), - [anon_sym_default] = ACTIONS(521), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(519), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_import] = ACTIONS(521), - [anon_sym_with] = ACTIONS(521), - [anon_sym_var] = ACTIONS(521), - [anon_sym_let] = ACTIONS(521), - [anon_sym_const] = ACTIONS(521), - [anon_sym_else] = ACTIONS(521), - [anon_sym_if] = ACTIONS(521), - [anon_sym_switch] = ACTIONS(521), - [anon_sym_for] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(519), - [anon_sym_SEMI] = ACTIONS(519), - [anon_sym_await] = ACTIONS(521), - [anon_sym_in] = ACTIONS(521), - [anon_sym_of] = ACTIONS(521), - [anon_sym_while] = ACTIONS(521), - [anon_sym_do] = ACTIONS(521), - [anon_sym_try] = ACTIONS(521), - [anon_sym_break] = ACTIONS(521), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_debugger] = ACTIONS(521), - [anon_sym_return] = ACTIONS(521), - [anon_sym_throw] = ACTIONS(521), - [anon_sym_case] = ACTIONS(521), - [anon_sym_yield] = ACTIONS(521), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(521), - [anon_sym_GT] = ACTIONS(521), - [anon_sym_DOT] = ACTIONS(521), - [anon_sym_DQUOTE] = ACTIONS(519), - [anon_sym_SQUOTE] = ACTIONS(519), - [anon_sym_class] = ACTIONS(521), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(521), - [sym_optional_chain] = ACTIONS(519), - [anon_sym_new] = ACTIONS(521), - [anon_sym_AMP_AMP] = ACTIONS(519), - [anon_sym_PIPE_PIPE] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(521), - [anon_sym_GT_GT_GT] = ACTIONS(519), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_AMP] = ACTIONS(521), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(521), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(521), - [anon_sym_PERCENT] = ACTIONS(519), - [anon_sym_STAR_STAR] = ACTIONS(519), - [anon_sym_LT_EQ] = ACTIONS(519), - [anon_sym_EQ_EQ] = ACTIONS(521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(519), - [anon_sym_BANG_EQ] = ACTIONS(521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(519), - [anon_sym_GT_EQ] = ACTIONS(519), - [anon_sym_QMARK_QMARK] = ACTIONS(519), - [anon_sym_instanceof] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(521), - [anon_sym_TILDE] = ACTIONS(519), - [anon_sym_typeof] = ACTIONS(521), - [anon_sym_void] = ACTIONS(521), - [anon_sym_delete] = ACTIONS(521), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(519), - [sym_number] = ACTIONS(519), - [sym_private_property_identifier] = ACTIONS(519), - [sym_this] = ACTIONS(521), - [sym_super] = ACTIONS(521), - [sym_true] = ACTIONS(521), - [sym_false] = ACTIONS(521), - [sym_null] = ACTIONS(521), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(519), - [anon_sym_static] = ACTIONS(521), - [anon_sym_get] = ACTIONS(521), - [anon_sym_set] = ACTIONS(521), - [sym__automatic_semicolon] = ACTIONS(519), - [sym__ternary_qmark] = ACTIONS(519), - [sym_html_comment] = ACTIONS(5), - }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(523), - [sym_identifier] = ACTIONS(525), - [anon_sym_export] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_default] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_import] = ACTIONS(525), - [anon_sym_with] = ACTIONS(525), - [anon_sym_var] = ACTIONS(525), - [anon_sym_let] = ACTIONS(525), - [anon_sym_const] = ACTIONS(525), - [anon_sym_else] = ACTIONS(525), - [anon_sym_if] = ACTIONS(525), - [anon_sym_switch] = ACTIONS(525), - [anon_sym_for] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_await] = ACTIONS(525), - [anon_sym_in] = ACTIONS(525), - [anon_sym_of] = ACTIONS(525), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(525), - [anon_sym_try] = ACTIONS(525), - [anon_sym_break] = ACTIONS(525), - [anon_sym_continue] = ACTIONS(525), - [anon_sym_debugger] = ACTIONS(525), - [anon_sym_return] = ACTIONS(525), - [anon_sym_throw] = ACTIONS(525), - [anon_sym_case] = ACTIONS(525), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(525), - [anon_sym_GT] = ACTIONS(525), - [anon_sym_DOT] = ACTIONS(525), - [anon_sym_DQUOTE] = ACTIONS(523), - [anon_sym_SQUOTE] = ACTIONS(523), - [anon_sym_class] = ACTIONS(525), - [anon_sym_async] = ACTIONS(525), - [anon_sym_function] = ACTIONS(525), - [sym_optional_chain] = ACTIONS(523), - [anon_sym_new] = ACTIONS(525), - [anon_sym_AMP_AMP] = ACTIONS(523), - [anon_sym_PIPE_PIPE] = ACTIONS(523), - [anon_sym_GT_GT] = ACTIONS(525), - [anon_sym_GT_GT_GT] = ACTIONS(523), - [anon_sym_LT_LT] = ACTIONS(523), - [anon_sym_AMP] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(525), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(523), - [anon_sym_STAR_STAR] = ACTIONS(523), - [anon_sym_LT_EQ] = ACTIONS(523), - [anon_sym_EQ_EQ] = ACTIONS(525), - [anon_sym_EQ_EQ_EQ] = ACTIONS(523), - [anon_sym_BANG_EQ] = ACTIONS(525), - [anon_sym_BANG_EQ_EQ] = ACTIONS(523), - [anon_sym_GT_EQ] = ACTIONS(523), - [anon_sym_QMARK_QMARK] = ACTIONS(523), - [anon_sym_instanceof] = ACTIONS(525), - [anon_sym_BANG] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(523), - [anon_sym_typeof] = ACTIONS(525), - [anon_sym_void] = ACTIONS(525), - [anon_sym_delete] = ACTIONS(525), - [anon_sym_PLUS_PLUS] = ACTIONS(523), - [anon_sym_DASH_DASH] = ACTIONS(523), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(523), - [sym_number] = ACTIONS(523), - [sym_private_property_identifier] = ACTIONS(523), - [sym_this] = ACTIONS(525), - [sym_super] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_null] = ACTIONS(525), - [sym_undefined] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(523), - [anon_sym_static] = ACTIONS(525), - [anon_sym_get] = ACTIONS(525), - [anon_sym_set] = ACTIONS(525), - [sym__automatic_semicolon] = ACTIONS(523), - [sym__ternary_qmark] = ACTIONS(523), - [sym_html_comment] = ACTIONS(5), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(527), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(529), - [anon_sym_default] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_import] = ACTIONS(529), - [anon_sym_with] = ACTIONS(529), - [anon_sym_var] = ACTIONS(529), - [anon_sym_let] = ACTIONS(529), - [anon_sym_const] = ACTIONS(529), - [anon_sym_else] = ACTIONS(529), - [anon_sym_if] = ACTIONS(529), - [anon_sym_switch] = ACTIONS(529), - [anon_sym_for] = ACTIONS(529), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_await] = ACTIONS(529), - [anon_sym_in] = ACTIONS(529), - [anon_sym_of] = ACTIONS(529), - [anon_sym_while] = ACTIONS(529), - [anon_sym_do] = ACTIONS(529), - [anon_sym_try] = ACTIONS(529), - [anon_sym_break] = ACTIONS(529), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_debugger] = ACTIONS(529), - [anon_sym_return] = ACTIONS(529), - [anon_sym_throw] = ACTIONS(529), - [anon_sym_case] = ACTIONS(529), - [anon_sym_yield] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(529), - [anon_sym_DOT] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(527), - [anon_sym_class] = ACTIONS(529), - [anon_sym_async] = ACTIONS(529), - [anon_sym_function] = ACTIONS(529), - [sym_optional_chain] = ACTIONS(527), - [anon_sym_new] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(527), - [anon_sym_PIPE_PIPE] = ACTIONS(527), - [anon_sym_GT_GT] = ACTIONS(529), - [anon_sym_GT_GT_GT] = ACTIONS(527), - [anon_sym_LT_LT] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(529), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(529), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_STAR_STAR] = ACTIONS(527), - [anon_sym_LT_EQ] = ACTIONS(527), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(527), - [anon_sym_BANG_EQ] = ACTIONS(529), - [anon_sym_BANG_EQ_EQ] = ACTIONS(527), - [anon_sym_GT_EQ] = ACTIONS(527), - [anon_sym_QMARK_QMARK] = ACTIONS(527), - [anon_sym_instanceof] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(529), - [anon_sym_void] = ACTIONS(529), - [anon_sym_delete] = ACTIONS(529), - [anon_sym_PLUS_PLUS] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(527), - [sym_number] = ACTIONS(527), - [sym_private_property_identifier] = ACTIONS(527), - [sym_this] = ACTIONS(529), - [sym_super] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [sym_null] = ACTIONS(529), - [sym_undefined] = ACTIONS(529), - [anon_sym_AT] = ACTIONS(527), - [anon_sym_static] = ACTIONS(529), - [anon_sym_get] = ACTIONS(529), - [anon_sym_set] = ACTIONS(529), - [sym__automatic_semicolon] = ACTIONS(527), - [sym__ternary_qmark] = ACTIONS(527), - [sym_html_comment] = ACTIONS(5), - }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(531), - [sym_identifier] = ACTIONS(533), - [anon_sym_export] = ACTIONS(533), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_default] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_COMMA] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_import] = ACTIONS(533), - [anon_sym_with] = ACTIONS(533), - [anon_sym_var] = ACTIONS(533), - [anon_sym_let] = ACTIONS(533), - [anon_sym_const] = ACTIONS(533), - [anon_sym_else] = ACTIONS(533), - [anon_sym_if] = ACTIONS(533), - [anon_sym_switch] = ACTIONS(533), - [anon_sym_for] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(531), - [anon_sym_SEMI] = ACTIONS(531), - [anon_sym_await] = ACTIONS(533), - [anon_sym_in] = ACTIONS(535), - [anon_sym_while] = ACTIONS(533), - [anon_sym_do] = ACTIONS(533), - [anon_sym_try] = ACTIONS(533), - [anon_sym_break] = ACTIONS(533), - [anon_sym_continue] = ACTIONS(533), - [anon_sym_debugger] = ACTIONS(533), - [anon_sym_return] = ACTIONS(533), - [anon_sym_throw] = ACTIONS(533), - [anon_sym_case] = ACTIONS(533), - [anon_sym_yield] = ACTIONS(533), - [anon_sym_LBRACK] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(533), - [anon_sym_GT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_SQUOTE] = ACTIONS(531), - [anon_sym_class] = ACTIONS(533), - [anon_sym_async] = ACTIONS(533), - [anon_sym_function] = ACTIONS(533), - [sym_optional_chain] = ACTIONS(537), - [anon_sym_new] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(537), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_GT_GT] = ACTIONS(535), - [anon_sym_GT_GT_GT] = ACTIONS(537), - [anon_sym_LT_LT] = ACTIONS(537), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_PIPE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(533), - [anon_sym_DASH] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(533), - [anon_sym_PERCENT] = ACTIONS(537), - [anon_sym_STAR_STAR] = ACTIONS(537), - [anon_sym_LT_EQ] = ACTIONS(537), - [anon_sym_EQ_EQ] = ACTIONS(535), - [anon_sym_EQ_EQ_EQ] = ACTIONS(537), - [anon_sym_BANG_EQ] = ACTIONS(535), - [anon_sym_BANG_EQ_EQ] = ACTIONS(537), - [anon_sym_GT_EQ] = ACTIONS(537), - [anon_sym_QMARK_QMARK] = ACTIONS(537), - [anon_sym_instanceof] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(533), - [anon_sym_void] = ACTIONS(533), - [anon_sym_delete] = ACTIONS(533), - [anon_sym_PLUS_PLUS] = ACTIONS(531), - [anon_sym_DASH_DASH] = ACTIONS(531), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(531), - [sym_number] = ACTIONS(531), - [sym_private_property_identifier] = ACTIONS(531), - [sym_this] = ACTIONS(533), - [sym_super] = ACTIONS(533), - [sym_true] = ACTIONS(533), - [sym_false] = ACTIONS(533), - [sym_null] = ACTIONS(533), - [sym_undefined] = ACTIONS(533), - [anon_sym_AT] = ACTIONS(531), - [anon_sym_static] = ACTIONS(533), - [anon_sym_get] = ACTIONS(533), - [anon_sym_set] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(539), - [sym__ternary_qmark] = ACTIONS(537), - [sym_html_comment] = ACTIONS(5), - }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), - [anon_sym_export] = ACTIONS(543), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_default] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_COMMA] = ACTIONS(547), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_import] = ACTIONS(543), - [anon_sym_with] = ACTIONS(543), - [anon_sym_var] = ACTIONS(543), - [anon_sym_let] = ACTIONS(543), - [anon_sym_const] = ACTIONS(543), - [anon_sym_else] = ACTIONS(543), - [anon_sym_if] = ACTIONS(543), - [anon_sym_switch] = ACTIONS(543), - [anon_sym_for] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_await] = ACTIONS(543), - [anon_sym_in] = ACTIONS(545), - [anon_sym_while] = ACTIONS(543), - [anon_sym_do] = ACTIONS(543), - [anon_sym_try] = ACTIONS(543), - [anon_sym_break] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_debugger] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_throw] = ACTIONS(543), - [anon_sym_case] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(543), - [anon_sym_LBRACK] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(541), - [anon_sym_class] = ACTIONS(543), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(543), - [sym_optional_chain] = ACTIONS(547), - [anon_sym_new] = ACTIONS(543), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_GT_GT_GT] = ACTIONS(547), - [anon_sym_LT_LT] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_SLASH] = ACTIONS(543), - [anon_sym_PERCENT] = ACTIONS(547), - [anon_sym_STAR_STAR] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(547), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ_EQ] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(547), - [anon_sym_QMARK_QMARK] = ACTIONS(547), - [anon_sym_instanceof] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(543), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_typeof] = ACTIONS(543), - [anon_sym_void] = ACTIONS(543), - [anon_sym_delete] = ACTIONS(543), - [anon_sym_PLUS_PLUS] = ACTIONS(541), - [anon_sym_DASH_DASH] = ACTIONS(541), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(541), - [sym_number] = ACTIONS(541), - [sym_private_property_identifier] = ACTIONS(541), - [sym_this] = ACTIONS(543), - [sym_super] = ACTIONS(543), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_null] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), - [anon_sym_AT] = ACTIONS(541), - [anon_sym_static] = ACTIONS(543), - [anon_sym_get] = ACTIONS(543), - [anon_sym_set] = ACTIONS(543), - [sym__automatic_semicolon] = ACTIONS(549), - [sym__ternary_qmark] = ACTIONS(547), - [sym_html_comment] = ACTIONS(5), - }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(551), - [sym_identifier] = ACTIONS(553), - [anon_sym_export] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_default] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(551), - [anon_sym_import] = ACTIONS(553), - [anon_sym_with] = ACTIONS(553), - [anon_sym_var] = ACTIONS(553), - [anon_sym_let] = ACTIONS(553), - [anon_sym_const] = ACTIONS(553), - [anon_sym_else] = ACTIONS(553), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(553), - [anon_sym_for] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(551), - [anon_sym_await] = ACTIONS(553), - [anon_sym_in] = ACTIONS(555), - [anon_sym_while] = ACTIONS(553), - [anon_sym_do] = ACTIONS(553), - [anon_sym_try] = ACTIONS(553), - [anon_sym_break] = ACTIONS(553), - [anon_sym_continue] = ACTIONS(553), - [anon_sym_debugger] = ACTIONS(553), - [anon_sym_return] = ACTIONS(553), - [anon_sym_throw] = ACTIONS(553), - [anon_sym_case] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_DQUOTE] = ACTIONS(551), - [anon_sym_SQUOTE] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(553), - [anon_sym_function] = ACTIONS(553), - [sym_optional_chain] = ACTIONS(557), - [anon_sym_new] = ACTIONS(553), - [anon_sym_AMP_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(557), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_STAR_STAR] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(557), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_EQ_EQ_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ_EQ] = ACTIONS(557), - [anon_sym_GT_EQ] = ACTIONS(557), - [anon_sym_QMARK_QMARK] = ACTIONS(557), - [anon_sym_instanceof] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_TILDE] = ACTIONS(551), - [anon_sym_typeof] = ACTIONS(553), - [anon_sym_void] = ACTIONS(553), - [anon_sym_delete] = ACTIONS(553), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(551), - [sym_number] = ACTIONS(551), - [sym_private_property_identifier] = ACTIONS(551), - [sym_this] = ACTIONS(553), - [sym_super] = ACTIONS(553), - [sym_true] = ACTIONS(553), - [sym_false] = ACTIONS(553), - [sym_null] = ACTIONS(553), - [sym_undefined] = ACTIONS(553), - [anon_sym_AT] = ACTIONS(551), - [anon_sym_static] = ACTIONS(553), - [anon_sym_get] = ACTIONS(553), - [anon_sym_set] = ACTIONS(553), - [sym__automatic_semicolon] = ACTIONS(559), - [sym__ternary_qmark] = ACTIONS(557), - [sym_html_comment] = ACTIONS(5), - }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(561), - [sym_identifier] = ACTIONS(563), - [anon_sym_export] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_default] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_import] = ACTIONS(563), - [anon_sym_with] = ACTIONS(563), - [anon_sym_var] = ACTIONS(563), - [anon_sym_let] = ACTIONS(563), - [anon_sym_const] = ACTIONS(563), - [anon_sym_else] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_switch] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_await] = ACTIONS(563), - [anon_sym_in] = ACTIONS(565), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(563), - [anon_sym_try] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_debugger] = ACTIONS(563), - [anon_sym_return] = ACTIONS(563), - [anon_sym_throw] = ACTIONS(563), - [anon_sym_case] = ACTIONS(563), - [anon_sym_yield] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_SQUOTE] = ACTIONS(561), - [anon_sym_class] = ACTIONS(563), - [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(563), - [sym_optional_chain] = ACTIONS(567), - [anon_sym_new] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(565), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_STAR_STAR] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(565), - [anon_sym_EQ_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(565), - [anon_sym_BANG_EQ_EQ] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_QMARK_QMARK] = ACTIONS(567), - [anon_sym_instanceof] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(563), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_typeof] = ACTIONS(563), - [anon_sym_void] = ACTIONS(563), - [anon_sym_delete] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(561), - [sym_number] = ACTIONS(561), - [sym_private_property_identifier] = ACTIONS(561), - [sym_this] = ACTIONS(563), - [sym_super] = ACTIONS(563), - [sym_true] = ACTIONS(563), - [sym_false] = ACTIONS(563), - [sym_null] = ACTIONS(563), - [sym_undefined] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(561), - [anon_sym_static] = ACTIONS(563), - [anon_sym_get] = ACTIONS(563), - [anon_sym_set] = ACTIONS(563), - [sym__automatic_semicolon] = ACTIONS(569), - [sym__ternary_qmark] = ACTIONS(567), - [sym_html_comment] = ACTIONS(5), - }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(571), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(575), - [anon_sym_default] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(571), - [anon_sym_COMMA] = ACTIONS(577), - [anon_sym_RBRACE] = ACTIONS(571), - [anon_sym_import] = ACTIONS(573), - [anon_sym_with] = ACTIONS(573), - [anon_sym_var] = ACTIONS(573), - [anon_sym_let] = ACTIONS(573), - [anon_sym_const] = ACTIONS(573), - [anon_sym_else] = ACTIONS(573), - [anon_sym_if] = ACTIONS(573), - [anon_sym_switch] = ACTIONS(573), - [anon_sym_for] = ACTIONS(573), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_SEMI] = ACTIONS(571), - [anon_sym_await] = ACTIONS(573), - [anon_sym_in] = ACTIONS(575), - [anon_sym_while] = ACTIONS(573), - [anon_sym_do] = ACTIONS(573), - [anon_sym_try] = ACTIONS(573), - [anon_sym_break] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_debugger] = ACTIONS(573), - [anon_sym_return] = ACTIONS(573), - [anon_sym_throw] = ACTIONS(573), - [anon_sym_case] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(573), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(575), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(571), - [anon_sym_SQUOTE] = ACTIONS(571), - [anon_sym_class] = ACTIONS(573), - [anon_sym_async] = ACTIONS(573), - [anon_sym_function] = ACTIONS(573), - [sym_optional_chain] = ACTIONS(577), - [anon_sym_new] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(577), - [anon_sym_PIPE_PIPE] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(575), - [anon_sym_GT_GT_GT] = ACTIONS(577), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(577), - [anon_sym_BANG_EQ] = ACTIONS(575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_QMARK_QMARK] = ACTIONS(577), - [anon_sym_instanceof] = ACTIONS(575), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(571), - [sym_number] = ACTIONS(571), - [sym_private_property_identifier] = ACTIONS(571), - [sym_this] = ACTIONS(573), - [sym_super] = ACTIONS(573), - [sym_true] = ACTIONS(573), - [sym_false] = ACTIONS(573), - [sym_null] = ACTIONS(573), - [sym_undefined] = ACTIONS(573), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_static] = ACTIONS(573), - [anon_sym_get] = ACTIONS(573), - [anon_sym_set] = ACTIONS(573), - [sym__automatic_semicolon] = ACTIONS(579), - [sym__ternary_qmark] = ACTIONS(577), - [sym_html_comment] = ACTIONS(5), - }, - [73] = { - [ts_builtin_sym_end] = ACTIONS(581), - [sym_identifier] = ACTIONS(583), - [anon_sym_export] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_default] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_import] = ACTIONS(583), - [anon_sym_with] = ACTIONS(583), - [anon_sym_var] = ACTIONS(583), - [anon_sym_let] = ACTIONS(583), - [anon_sym_const] = ACTIONS(583), - [anon_sym_else] = ACTIONS(583), - [anon_sym_if] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(583), - [anon_sym_for] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_await] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_while] = ACTIONS(583), - [anon_sym_do] = ACTIONS(583), - [anon_sym_try] = ACTIONS(583), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(583), - [anon_sym_debugger] = ACTIONS(583), - [anon_sym_return] = ACTIONS(583), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_case] = ACTIONS(583), - [anon_sym_yield] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_DQUOTE] = ACTIONS(581), - [anon_sym_SQUOTE] = ACTIONS(581), - [anon_sym_class] = ACTIONS(583), - [anon_sym_async] = ACTIONS(583), - [anon_sym_function] = ACTIONS(583), - [sym_optional_chain] = ACTIONS(587), - [anon_sym_new] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(587), - [anon_sym_LT_LT] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_PERCENT] = ACTIONS(587), - [anon_sym_STAR_STAR] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_EQ_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_QMARK_QMARK] = ACTIONS(587), - [anon_sym_instanceof] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(581), - [anon_sym_typeof] = ACTIONS(583), - [anon_sym_void] = ACTIONS(583), - [anon_sym_delete] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(581), - [sym_number] = ACTIONS(581), - [sym_private_property_identifier] = ACTIONS(581), - [sym_this] = ACTIONS(583), - [sym_super] = ACTIONS(583), - [sym_true] = ACTIONS(583), - [sym_false] = ACTIONS(583), - [sym_null] = ACTIONS(583), - [sym_undefined] = ACTIONS(583), - [anon_sym_AT] = ACTIONS(581), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [sym__automatic_semicolon] = ACTIONS(589), - [sym__ternary_qmark] = ACTIONS(587), - [sym_html_comment] = ACTIONS(5), - }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(591), - [sym_identifier] = ACTIONS(593), - [anon_sym_export] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(595), - [anon_sym_default] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_import] = ACTIONS(593), - [anon_sym_with] = ACTIONS(593), - [anon_sym_var] = ACTIONS(593), - [anon_sym_let] = ACTIONS(593), - [anon_sym_const] = ACTIONS(593), - [anon_sym_else] = ACTIONS(593), - [anon_sym_if] = ACTIONS(593), - [anon_sym_switch] = ACTIONS(593), - [anon_sym_for] = ACTIONS(593), - [anon_sym_LPAREN] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_await] = ACTIONS(593), - [anon_sym_in] = ACTIONS(595), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(593), - [anon_sym_try] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_debugger] = ACTIONS(593), - [anon_sym_return] = ACTIONS(593), - [anon_sym_throw] = ACTIONS(593), - [anon_sym_case] = ACTIONS(593), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(591), - [anon_sym_class] = ACTIONS(593), - [anon_sym_async] = ACTIONS(593), - [anon_sym_function] = ACTIONS(593), - [sym_optional_chain] = ACTIONS(597), - [anon_sym_new] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_STAR_STAR] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_QMARK_QMARK] = ACTIONS(597), - [anon_sym_instanceof] = ACTIONS(595), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_TILDE] = ACTIONS(591), - [anon_sym_typeof] = ACTIONS(593), - [anon_sym_void] = ACTIONS(593), - [anon_sym_delete] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(591), - [sym_number] = ACTIONS(591), - [sym_private_property_identifier] = ACTIONS(591), - [sym_this] = ACTIONS(593), - [sym_super] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [sym_null] = ACTIONS(593), - [sym_undefined] = ACTIONS(593), - [anon_sym_AT] = ACTIONS(591), - [anon_sym_static] = ACTIONS(593), - [anon_sym_get] = ACTIONS(593), - [anon_sym_set] = ACTIONS(593), - [sym__automatic_semicolon] = ACTIONS(599), - [sym__ternary_qmark] = ACTIONS(597), - [sym_html_comment] = ACTIONS(5), - }, - [75] = { - [ts_builtin_sym_end] = ACTIONS(601), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_default] = ACTIONS(603), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_import] = ACTIONS(603), - [anon_sym_with] = ACTIONS(603), - [anon_sym_var] = ACTIONS(603), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(603), - [anon_sym_else] = ACTIONS(603), - [anon_sym_if] = ACTIONS(603), - [anon_sym_switch] = ACTIONS(603), - [anon_sym_for] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_await] = ACTIONS(603), - [anon_sym_in] = ACTIONS(605), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(603), - [anon_sym_try] = ACTIONS(603), - [anon_sym_break] = ACTIONS(603), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_debugger] = ACTIONS(603), - [anon_sym_return] = ACTIONS(603), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_case] = ACTIONS(603), - [anon_sym_yield] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(601), - [anon_sym_SQUOTE] = ACTIONS(601), - [anon_sym_class] = ACTIONS(603), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(603), - [sym_optional_chain] = ACTIONS(607), - [anon_sym_new] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(605), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_DASH] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(603), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_STAR_STAR] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(605), - [anon_sym_EQ_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(605), - [anon_sym_BANG_EQ_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_QMARK_QMARK] = ACTIONS(607), - [anon_sym_instanceof] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(601), - [anon_sym_typeof] = ACTIONS(603), - [anon_sym_void] = ACTIONS(603), - [anon_sym_delete] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(601), - [sym_number] = ACTIONS(601), - [sym_private_property_identifier] = ACTIONS(601), - [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(603), - [sym_true] = ACTIONS(603), - [sym_false] = ACTIONS(603), - [sym_null] = ACTIONS(603), - [sym_undefined] = ACTIONS(603), - [anon_sym_AT] = ACTIONS(601), - [anon_sym_static] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [sym__automatic_semicolon] = ACTIONS(609), - [sym__ternary_qmark] = ACTIONS(607), - [sym_html_comment] = ACTIONS(5), - }, - [76] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [sym_html_comment] = ACTIONS(5), - }, - [77] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(750), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1326), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1328), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [sym_html_comment] = ACTIONS(5), - }, - [78] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [sym_html_comment] = ACTIONS(5), - }, - [79] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(812), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1326), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1328), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [sym_html_comment] = ACTIONS(5), - }, - [80] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [sym_html_comment] = ACTIONS(5), - }, - [81] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(633), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(60)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_declaration] = STATE(391), - [sym_import] = STATE(1232), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(831), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1237), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), - [anon_sym_const] = ACTIONS(25), + [STATE(61)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1831), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(389), [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(637), - [anon_sym_function] = ACTIONS(69), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -17777,71 +17015,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_declaration] = STATE(401), - [sym_import] = STATE(1232), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(825), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), - [anon_sym_const] = ACTIONS(25), + [STATE(62)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1714), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(389), [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(639), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -17864,70 +17136,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_declaration] = STATE(401), - [sym_import] = STATE(1232), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(825), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1237), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), + [STATE(63)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(484), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(637), + [anon_sym_async] = ACTIONS(67), [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), @@ -17951,71 +17257,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_declaration] = STATE(391), - [sym_import] = STATE(1232), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(831), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), - [anon_sym_const] = ACTIONS(25), + [STATE(64)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(2086), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(389), [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(639), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -18038,1921 +17378,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), - [sym_html_comment] = ACTIONS(5), - }, - [87] = { - [sym_import] = STATE(1272), - [sym_variable_declaration] = STATE(110), - [sym_lexical_declaration] = STATE(110), - [sym_empty_statement] = STATE(110), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(766), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1342), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1342), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1342), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1717), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(641), - [anon_sym_export] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_import] = ACTIONS(357), - [anon_sym_var] = ACTIONS(647), - [anon_sym_let] = ACTIONS(649), - [anon_sym_const] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(655), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(657), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [sym_html_comment] = ACTIONS(5), - }, - [88] = { - [sym_import] = STATE(1272), - [sym_variable_declaration] = STATE(111), - [sym_lexical_declaration] = STATE(111), - [sym_empty_statement] = STATE(111), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(817), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1342), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1342), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1342), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1719), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(641), - [anon_sym_export] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_import] = ACTIONS(357), - [anon_sym_var] = ACTIONS(647), - [anon_sym_let] = ACTIONS(649), - [anon_sym_const] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(655), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(657), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), - [sym_html_comment] = ACTIONS(5), - }, - [89] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), - [sym_html_comment] = ACTIONS(5), - }, - [90] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(779), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1429), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1279), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1280), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [sym_html_comment] = ACTIONS(5), - }, - [91] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(865), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(680), - [anon_sym_export] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(688), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(682), - [anon_sym_get] = ACTIONS(682), - [anon_sym_set] = ACTIONS(682), - [sym_html_comment] = ACTIONS(5), - }, - [92] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1343), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1203), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_pattern_repeat1] = STATE(1346), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), - [sym_html_comment] = ACTIONS(5), - }, - [93] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(776), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1277), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1617), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1243), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [sym_html_comment] = ACTIONS(5), - }, - [94] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(753), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1277), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1670), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1243), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [sym_html_comment] = ACTIONS(5), - }, - [95] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1429), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1280), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), - [sym_html_comment] = ACTIONS(5), - }, - [96] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(754), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1319), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1320), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(700), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [97] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1277), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1243), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), - [sym_html_comment] = ACTIONS(5), - }, - [98] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1381), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1298), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), - [sym_html_comment] = ACTIONS(5), - }, - [99] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(769), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1362), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1364), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [100] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1381), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1298), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(708), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), - [sym_html_comment] = ACTIONS(5), - }, - [101] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(755), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1303), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1304), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [102] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(779), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1279), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [103] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1454), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1282), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [sym_html_comment] = ACTIONS(5), - }, - [104] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(771), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1675), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1675), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [105] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(797), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1690), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1690), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [106] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1454), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1282), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), - [sym_html_comment] = ACTIONS(5), - }, - [107] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1381), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1298), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), - [sym_html_comment] = ACTIONS(5), - }, - [108] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(121), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(783), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1621), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(746), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1568), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(65)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1725), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(718), + [anon_sym_SEMI] = ACTIONS(389), [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -19975,2560 +17499,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), - [sym__automatic_semicolon] = ACTIONS(718), - [sym_html_comment] = ACTIONS(5), - }, - [110] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(113), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(778), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1639), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [111] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(120), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(803), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1638), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [112] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(117), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(805), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1647), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [113] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(751), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1657), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [114] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(501), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1325), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1325), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(501), - [sym_subscript_expression] = STATE(501), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1325), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(722), - [anon_sym_export] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_import] = ACTIONS(357), - [anon_sym_var] = ACTIONS(726), - [anon_sym_let] = ACTIONS(728), - [anon_sym_const] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(732), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(734), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(724), - [anon_sym_get] = ACTIONS(724), - [anon_sym_set] = ACTIONS(724), - [sym_html_comment] = ACTIONS(5), - }, - [115] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(788), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1669), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), + [STATE(66)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1802), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), [sym_expression] = STATE(811), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1652), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [117] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(789), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1673), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [118] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(807), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1658), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [119] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(791), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1678), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [120] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(784), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1651), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [121] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(777), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1645), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [122] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(630), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(714), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [123] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(532), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(782), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [124] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(787), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [125] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(548), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(810), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [126] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(558), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(814), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [127] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(560), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(786), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [128] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(561), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(764), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [129] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(561), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(603), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [130] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(763), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1664), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [131] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [132] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), - [sym_html_comment] = ACTIONS(5), - }, - [133] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(813), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1656), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [134] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), - [sym_html_comment] = ACTIONS(5), - }, - [135] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(752), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1625), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [136] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(794), - [anon_sym_export] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(796), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(798), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(796), - [anon_sym_get] = ACTIONS(796), - [anon_sym_set] = ACTIONS(796), - [sym_html_comment] = ACTIONS(5), - }, - [137] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(772), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1627), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [138] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), - [sym_html_comment] = ACTIONS(5), - }, - [139] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(780), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1642), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [140] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(760), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1660), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [141] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(747), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1570), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(67)] = { + [sym_export_statement] = STATE(443), + [sym_declaration] = STATE(443), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(443), + [sym_statement] = STATE(413), + [sym_expression_statement] = STATE(443), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_statement_block] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_switch_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_for_in_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_with_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_debugger_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_statement] = STATE(443), + [sym_empty_statement] = STATE(443), + [sym_labeled_statement] = STATE(443), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(2097), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1393), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -22551,64 +17741,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), [sym_html_comment] = ACTIONS(5), }, - [142] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(729), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(730), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(68)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1833), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(389), [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -22631,144 +17862,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), - [sym_html_comment] = ACTIONS(5), - }, - [143] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(461), - [sym_expression] = STATE(868), - [sym_primary_expression] = STATE(579), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(584), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(804), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [144] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(625), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(733), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(69)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1834), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(389), [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -22791,64 +17983,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [145] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(622), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(623), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(70)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(2134), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(389), [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -22871,144 +18104,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), - [sym_html_comment] = ACTIONS(5), - }, - [146] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(560), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(589), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [147] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(628), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(629), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(71)] = { + [sym_export_statement] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_import] = STATE(1353), + [sym_import_statement] = STATE(1958), + [sym_statement] = STATE(1836), + [sym_expression_statement] = STATE(1958), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_statement_block] = STATE(1958), + [sym_if_statement] = STATE(1958), + [sym_switch_statement] = STATE(1958), + [sym_for_statement] = STATE(1958), + [sym_for_in_statement] = STATE(1958), + [sym_while_statement] = STATE(1958), + [sym_do_statement] = STATE(1958), + [sym_try_statement] = STATE(1958), + [sym_with_statement] = STATE(1958), + [sym_break_statement] = STATE(1958), + [sym_continue_statement] = STATE(1958), + [sym_debugger_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_throw_statement] = STATE(1958), + [sym_empty_statement] = STATE(1958), + [sym_labeled_statement] = STATE(1958), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(367), + [anon_sym_export] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_import] = ACTIONS(373), + [anon_sym_with] = ACTIONS(375), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(379), + [anon_sym_const] = ACTIONS(381), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(389), [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_try] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(409), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -23031,2450 +18225,2735 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(413), + [anon_sym_get] = ACTIONS(413), + [anon_sym_set] = ACTIONS(413), [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(756), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1681), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(72)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(730), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_RPAREN] = ACTIONS(423), + [anon_sym_await] = ACTIONS(429), + [anon_sym_in] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(423), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_RBRACK] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(437), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_DOT] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [sym_optional_chain] = ACTIONS(423), + [anon_sym_new] = ACTIONS(449), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_QMARK_QMARK] = ACTIONS(423), + [anon_sym_instanceof] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym__ternary_qmark] = ACTIONS(423), [sym_html_comment] = ACTIONS(5), }, - [149] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(685), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(694), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(73)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(821), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_await] = ACTIONS(37), + [anon_sym_in] = ACTIONS(431), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_DOT] = ACTIONS(431), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [sym_optional_chain] = ACTIONS(423), + [anon_sym_new] = ACTIONS(71), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_QMARK_QMARK] = ACTIONS(423), + [anon_sym_instanceof] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), - [sym_html_comment] = ACTIONS(5), - }, - [150] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(770), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1672), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym__automatic_semicolon] = ACTIONS(423), + [sym__ternary_qmark] = ACTIONS(423), [sym_html_comment] = ACTIONS(5), }, - [151] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(729), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(709), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(74)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(854), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(423), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_await] = ACTIONS(493), + [anon_sym_in] = ACTIONS(431), + [anon_sym_of] = ACTIONS(431), + [anon_sym_yield] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_DOT] = ACTIONS(431), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [sym_optional_chain] = ACTIONS(423), + [anon_sym_new] = ACTIONS(499), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_QMARK_QMARK] = ACTIONS(423), + [anon_sym_instanceof] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(509), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym__automatic_semicolon] = ACTIONS(423), + [sym__ternary_qmark] = ACTIONS(423), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(622), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(712), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(75)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1033), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_in] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(423), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(437), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_DOT] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [sym_optional_chain] = ACTIONS(423), + [anon_sym_new] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_QMARK_QMARK] = ACTIONS(423), + [anon_sym_instanceof] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(531), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym__ternary_qmark] = ACTIONS(423), [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(628), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(713), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(76)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1058), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_in] = ACTIONS(431), + [anon_sym_of] = ACTIONS(431), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(437), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_DOT] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [sym_optional_chain] = ACTIONS(423), + [anon_sym_new] = ACTIONS(553), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_QMARK_QMARK] = ACTIONS(423), + [anon_sym_instanceof] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym__ternary_qmark] = ACTIONS(423), [sym_html_comment] = ACTIONS(5), }, - [154] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(774), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1615), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(77)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(995), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_in] = ACTIONS(431), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_DOT] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [sym_optional_chain] = ACTIONS(423), + [anon_sym_new] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_QMARK_QMARK] = ACTIONS(423), + [anon_sym_instanceof] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), + [sym__ternary_qmark] = ACTIONS(423), [sym_html_comment] = ACTIONS(5), }, - [155] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(773), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1694), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), + [STATE(78)] = { + [ts_builtin_sym_end] = ACTIONS(617), + [sym_identifier] = ACTIONS(619), + [anon_sym_export] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_default] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_import] = ACTIONS(619), + [anon_sym_with] = ACTIONS(619), + [anon_sym_var] = ACTIONS(619), + [anon_sym_let] = ACTIONS(619), + [anon_sym_const] = ACTIONS(619), + [anon_sym_else] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(619), + [anon_sym_for] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_await] = ACTIONS(619), + [anon_sym_in] = ACTIONS(621), + [anon_sym_while] = ACTIONS(619), + [anon_sym_do] = ACTIONS(619), + [anon_sym_try] = ACTIONS(619), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(619), + [anon_sym_debugger] = ACTIONS(619), + [anon_sym_return] = ACTIONS(619), + [anon_sym_throw] = ACTIONS(619), + [anon_sym_case] = ACTIONS(619), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(617), [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(617), + [anon_sym_class] = ACTIONS(619), + [anon_sym_async] = ACTIONS(619), + [anon_sym_function] = ACTIONS(619), + [sym_optional_chain] = ACTIONS(623), + [anon_sym_new] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_QMARK_QMARK] = ACTIONS(623), + [anon_sym_instanceof] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(619), + [anon_sym_void] = ACTIONS(619), + [anon_sym_delete] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(617), + [sym_number] = ACTIONS(617), + [sym_private_property_identifier] = ACTIONS(617), + [sym_this] = ACTIONS(619), + [sym_super] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_null] = ACTIONS(619), + [sym_undefined] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(617), + [anon_sym_static] = ACTIONS(619), + [anon_sym_get] = ACTIONS(619), + [anon_sym_set] = ACTIONS(619), + [sym__automatic_semicolon] = ACTIONS(627), + [sym__ternary_qmark] = ACTIONS(623), [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(630), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(631), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(79)] = { + [ts_builtin_sym_end] = ACTIONS(629), + [sym_identifier] = ACTIONS(631), + [anon_sym_export] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_default] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_import] = ACTIONS(631), + [anon_sym_with] = ACTIONS(631), + [anon_sym_var] = ACTIONS(631), + [anon_sym_let] = ACTIONS(631), + [anon_sym_const] = ACTIONS(631), + [anon_sym_else] = ACTIONS(631), + [anon_sym_if] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_for] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_await] = ACTIONS(631), + [anon_sym_in] = ACTIONS(631), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(631), + [anon_sym_try] = ACTIONS(631), + [anon_sym_break] = ACTIONS(631), + [anon_sym_continue] = ACTIONS(631), + [anon_sym_debugger] = ACTIONS(631), + [anon_sym_return] = ACTIONS(631), + [anon_sym_throw] = ACTIONS(631), + [anon_sym_case] = ACTIONS(631), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_LT] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(631), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_DQUOTE] = ACTIONS(629), + [anon_sym_SQUOTE] = ACTIONS(629), + [anon_sym_class] = ACTIONS(631), + [anon_sym_async] = ACTIONS(631), + [anon_sym_function] = ACTIONS(631), + [sym_optional_chain] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(629), + [anon_sym_PIPE_PIPE] = ACTIONS(629), + [anon_sym_GT_GT] = ACTIONS(631), + [anon_sym_GT_GT_GT] = ACTIONS(629), + [anon_sym_LT_LT] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_CARET] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(631), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_SLASH] = ACTIONS(631), + [anon_sym_PERCENT] = ACTIONS(629), + [anon_sym_STAR_STAR] = ACTIONS(629), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(629), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_QMARK_QMARK] = ACTIONS(629), + [anon_sym_instanceof] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(629), + [anon_sym_typeof] = ACTIONS(631), + [anon_sym_void] = ACTIONS(631), + [anon_sym_delete] = ACTIONS(631), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_DASH_DASH] = ACTIONS(629), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(629), + [sym_number] = ACTIONS(629), + [sym_private_property_identifier] = ACTIONS(629), + [sym_this] = ACTIONS(631), + [sym_super] = ACTIONS(631), + [sym_true] = ACTIONS(631), + [sym_false] = ACTIONS(631), + [sym_null] = ACTIONS(631), + [sym_undefined] = ACTIONS(631), + [anon_sym_AT] = ACTIONS(629), + [anon_sym_static] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [sym__automatic_semicolon] = ACTIONS(629), + [sym__ternary_qmark] = ACTIONS(629), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(768), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1695), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(80)] = { + [ts_builtin_sym_end] = ACTIONS(633), + [sym_identifier] = ACTIONS(635), + [anon_sym_export] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_default] = ACTIONS(635), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(633), + [anon_sym_import] = ACTIONS(635), + [anon_sym_with] = ACTIONS(635), + [anon_sym_var] = ACTIONS(635), + [anon_sym_let] = ACTIONS(635), + [anon_sym_const] = ACTIONS(635), + [anon_sym_else] = ACTIONS(635), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_for] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(633), + [anon_sym_await] = ACTIONS(635), + [anon_sym_in] = ACTIONS(635), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(635), + [anon_sym_try] = ACTIONS(635), + [anon_sym_break] = ACTIONS(635), + [anon_sym_continue] = ACTIONS(635), + [anon_sym_debugger] = ACTIONS(635), + [anon_sym_return] = ACTIONS(635), + [anon_sym_throw] = ACTIONS(635), + [anon_sym_case] = ACTIONS(635), + [anon_sym_yield] = ACTIONS(635), + [anon_sym_LBRACK] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_GT] = ACTIONS(635), + [anon_sym_DOT] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(633), + [anon_sym_class] = ACTIONS(635), + [anon_sym_async] = ACTIONS(635), + [anon_sym_function] = ACTIONS(635), + [sym_optional_chain] = ACTIONS(633), + [anon_sym_new] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(633), + [anon_sym_PIPE_PIPE] = ACTIONS(633), + [anon_sym_GT_GT] = ACTIONS(635), + [anon_sym_GT_GT_GT] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(635), + [anon_sym_PERCENT] = ACTIONS(633), + [anon_sym_STAR_STAR] = ACTIONS(633), + [anon_sym_LT_EQ] = ACTIONS(633), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(633), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(633), + [anon_sym_GT_EQ] = ACTIONS(633), + [anon_sym_QMARK_QMARK] = ACTIONS(633), + [anon_sym_instanceof] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(633), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(633), + [sym_number] = ACTIONS(633), + [sym_private_property_identifier] = ACTIONS(633), + [sym_this] = ACTIONS(635), + [sym_super] = ACTIONS(635), + [sym_true] = ACTIONS(635), + [sym_false] = ACTIONS(635), + [sym_null] = ACTIONS(635), + [sym_undefined] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_static] = ACTIONS(635), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(635), + [sym__automatic_semicolon] = ACTIONS(633), + [sym__ternary_qmark] = ACTIONS(633), [sym_html_comment] = ACTIONS(5), }, - [158] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(765), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1650), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(81)] = { + [ts_builtin_sym_end] = ACTIONS(637), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_default] = ACTIONS(639), + [anon_sym_LBRACE] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(637), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_import] = ACTIONS(639), + [anon_sym_with] = ACTIONS(639), + [anon_sym_var] = ACTIONS(639), + [anon_sym_let] = ACTIONS(639), + [anon_sym_const] = ACTIONS(639), + [anon_sym_else] = ACTIONS(639), + [anon_sym_if] = ACTIONS(639), + [anon_sym_switch] = ACTIONS(639), + [anon_sym_for] = ACTIONS(639), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_await] = ACTIONS(639), + [anon_sym_in] = ACTIONS(639), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(639), + [anon_sym_try] = ACTIONS(639), + [anon_sym_break] = ACTIONS(639), + [anon_sym_continue] = ACTIONS(639), + [anon_sym_debugger] = ACTIONS(639), + [anon_sym_return] = ACTIONS(639), + [anon_sym_throw] = ACTIONS(639), + [anon_sym_case] = ACTIONS(639), + [anon_sym_yield] = ACTIONS(639), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_GT] = ACTIONS(639), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_class] = ACTIONS(639), + [anon_sym_async] = ACTIONS(639), + [anon_sym_function] = ACTIONS(639), + [sym_optional_chain] = ACTIONS(637), + [anon_sym_new] = ACTIONS(639), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(639), + [anon_sym_GT_GT_GT] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(637), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_QMARK_QMARK] = ACTIONS(637), + [anon_sym_instanceof] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(639), + [anon_sym_void] = ACTIONS(639), + [anon_sym_delete] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(637), + [anon_sym_DASH_DASH] = ACTIONS(637), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(637), + [sym_number] = ACTIONS(637), + [sym_private_property_identifier] = ACTIONS(637), + [sym_this] = ACTIONS(639), + [sym_super] = ACTIONS(639), + [sym_true] = ACTIONS(639), + [sym_false] = ACTIONS(639), + [sym_null] = ACTIONS(639), + [sym_undefined] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(637), + [anon_sym_static] = ACTIONS(639), + [anon_sym_get] = ACTIONS(639), + [anon_sym_set] = ACTIONS(639), + [sym__automatic_semicolon] = ACTIONS(637), + [sym__ternary_qmark] = ACTIONS(637), [sym_html_comment] = ACTIONS(5), }, - [159] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(532), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(582), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(82)] = { + [ts_builtin_sym_end] = ACTIONS(641), + [sym_identifier] = ACTIONS(643), + [anon_sym_export] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_default] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(641), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_import] = ACTIONS(643), + [anon_sym_with] = ACTIONS(643), + [anon_sym_var] = ACTIONS(643), + [anon_sym_let] = ACTIONS(643), + [anon_sym_const] = ACTIONS(643), + [anon_sym_else] = ACTIONS(643), + [anon_sym_if] = ACTIONS(643), + [anon_sym_switch] = ACTIONS(643), + [anon_sym_for] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(641), + [anon_sym_await] = ACTIONS(643), + [anon_sym_in] = ACTIONS(645), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(643), + [anon_sym_try] = ACTIONS(643), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(643), + [anon_sym_debugger] = ACTIONS(643), + [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(643), + [anon_sym_case] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(643), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_class] = ACTIONS(643), + [anon_sym_async] = ACTIONS(643), + [anon_sym_function] = ACTIONS(643), + [sym_optional_chain] = ACTIONS(647), + [anon_sym_new] = ACTIONS(643), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(645), + [anon_sym_GT_GT_GT] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_CARET] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(647), + [anon_sym_STAR_STAR] = ACTIONS(647), + [anon_sym_LT_EQ] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(647), + [anon_sym_BANG_EQ] = ACTIONS(645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(647), + [anon_sym_GT_EQ] = ACTIONS(647), + [anon_sym_QMARK_QMARK] = ACTIONS(647), + [anon_sym_instanceof] = ACTIONS(645), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_typeof] = ACTIONS(643), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(643), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(641), + [sym_number] = ACTIONS(641), + [sym_private_property_identifier] = ACTIONS(641), + [sym_this] = ACTIONS(643), + [sym_super] = ACTIONS(643), + [sym_true] = ACTIONS(643), + [sym_false] = ACTIONS(643), + [sym_null] = ACTIONS(643), + [sym_undefined] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(641), + [anon_sym_static] = ACTIONS(643), + [anon_sym_get] = ACTIONS(643), + [anon_sym_set] = ACTIONS(643), + [sym__automatic_semicolon] = ACTIONS(649), + [sym__ternary_qmark] = ACTIONS(647), [sym_html_comment] = ACTIONS(5), }, - [160] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(585), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(83)] = { + [ts_builtin_sym_end] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_default] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_COMMA] = ACTIONS(651), + [anon_sym_RBRACE] = ACTIONS(651), + [anon_sym_import] = ACTIONS(653), + [anon_sym_with] = ACTIONS(653), + [anon_sym_var] = ACTIONS(653), + [anon_sym_let] = ACTIONS(653), + [anon_sym_const] = ACTIONS(653), + [anon_sym_else] = ACTIONS(653), + [anon_sym_if] = ACTIONS(653), + [anon_sym_switch] = ACTIONS(653), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_await] = ACTIONS(653), + [anon_sym_in] = ACTIONS(653), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(653), + [anon_sym_try] = ACTIONS(653), + [anon_sym_break] = ACTIONS(653), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_debugger] = ACTIONS(653), + [anon_sym_return] = ACTIONS(653), + [anon_sym_throw] = ACTIONS(653), + [anon_sym_case] = ACTIONS(653), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_DQUOTE] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(651), + [anon_sym_class] = ACTIONS(653), + [anon_sym_async] = ACTIONS(653), + [anon_sym_function] = ACTIONS(653), + [sym_optional_chain] = ACTIONS(651), + [anon_sym_new] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(651), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_GT_GT_GT] = ACTIONS(651), + [anon_sym_LT_LT] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_STAR_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_EQ_EQ_EQ] = ACTIONS(651), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_BANG_EQ_EQ] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(651), + [anon_sym_QMARK_QMARK] = ACTIONS(651), + [anon_sym_instanceof] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_typeof] = ACTIONS(653), + [anon_sym_void] = ACTIONS(653), + [anon_sym_delete] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(651), + [anon_sym_DASH_DASH] = ACTIONS(651), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(651), + [sym_number] = ACTIONS(651), + [sym_private_property_identifier] = ACTIONS(651), + [sym_this] = ACTIONS(653), + [sym_super] = ACTIONS(653), + [sym_true] = ACTIONS(653), + [sym_false] = ACTIONS(653), + [sym_null] = ACTIONS(653), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(651), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [sym__automatic_semicolon] = ACTIONS(651), + [sym__ternary_qmark] = ACTIONS(651), [sym_html_comment] = ACTIONS(5), }, - [161] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(548), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(578), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(84)] = { + [ts_builtin_sym_end] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_default] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_COMMA] = ACTIONS(651), + [anon_sym_RBRACE] = ACTIONS(651), + [anon_sym_import] = ACTIONS(653), + [anon_sym_with] = ACTIONS(653), + [anon_sym_var] = ACTIONS(653), + [anon_sym_let] = ACTIONS(653), + [anon_sym_const] = ACTIONS(653), + [anon_sym_else] = ACTIONS(653), + [anon_sym_if] = ACTIONS(653), + [anon_sym_switch] = ACTIONS(653), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_await] = ACTIONS(653), + [anon_sym_in] = ACTIONS(653), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(653), + [anon_sym_try] = ACTIONS(653), + [anon_sym_break] = ACTIONS(653), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_debugger] = ACTIONS(653), + [anon_sym_return] = ACTIONS(653), + [anon_sym_throw] = ACTIONS(653), + [anon_sym_case] = ACTIONS(653), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_DQUOTE] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(651), + [anon_sym_class] = ACTIONS(653), + [anon_sym_async] = ACTIONS(653), + [anon_sym_function] = ACTIONS(653), + [sym_optional_chain] = ACTIONS(651), + [anon_sym_new] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(651), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_GT_GT_GT] = ACTIONS(651), + [anon_sym_LT_LT] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_STAR_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_EQ_EQ_EQ] = ACTIONS(651), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_BANG_EQ_EQ] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(651), + [anon_sym_QMARK_QMARK] = ACTIONS(651), + [anon_sym_instanceof] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_typeof] = ACTIONS(653), + [anon_sym_void] = ACTIONS(653), + [anon_sym_delete] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(651), + [anon_sym_DASH_DASH] = ACTIONS(651), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(651), + [sym_number] = ACTIONS(651), + [sym_private_property_identifier] = ACTIONS(651), + [sym_this] = ACTIONS(653), + [sym_super] = ACTIONS(653), + [sym_true] = ACTIONS(653), + [sym_false] = ACTIONS(653), + [sym_null] = ACTIONS(653), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(651), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [sym__automatic_semicolon] = ACTIONS(655), + [sym__ternary_qmark] = ACTIONS(651), [sym_html_comment] = ACTIONS(5), }, - [162] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(461), - [sym_expression] = STATE(868), - [sym_primary_expression] = STATE(579), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(584), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(812), - [anon_sym_export] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(57), + [STATE(85)] = { + [ts_builtin_sym_end] = ACTIONS(617), + [sym_identifier] = ACTIONS(619), + [anon_sym_export] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_default] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_import] = ACTIONS(619), + [anon_sym_with] = ACTIONS(619), + [anon_sym_var] = ACTIONS(619), + [anon_sym_let] = ACTIONS(619), + [anon_sym_const] = ACTIONS(619), + [anon_sym_else] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(619), + [anon_sym_for] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_await] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_while] = ACTIONS(619), + [anon_sym_do] = ACTIONS(619), + [anon_sym_try] = ACTIONS(619), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(619), + [anon_sym_debugger] = ACTIONS(619), + [anon_sym_return] = ACTIONS(619), + [anon_sym_throw] = ACTIONS(619), + [anon_sym_case] = ACTIONS(619), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(617), + [anon_sym_class] = ACTIONS(619), + [anon_sym_async] = ACTIONS(619), + [anon_sym_function] = ACTIONS(619), + [sym_optional_chain] = ACTIONS(617), + [anon_sym_new] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_STAR_STAR] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_QMARK_QMARK] = ACTIONS(617), + [anon_sym_instanceof] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(619), + [anon_sym_void] = ACTIONS(619), + [anon_sym_delete] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(617), + [sym_number] = ACTIONS(617), + [sym_private_property_identifier] = ACTIONS(617), + [sym_this] = ACTIONS(619), + [sym_super] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_null] = ACTIONS(619), + [sym_undefined] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(617), + [anon_sym_static] = ACTIONS(619), + [anon_sym_get] = ACTIONS(619), + [anon_sym_set] = ACTIONS(619), + [sym__automatic_semicolon] = ACTIONS(657), + [sym__ternary_qmark] = ACTIONS(617), [sym_html_comment] = ACTIONS(5), }, - [163] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(809), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1687), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(86)] = { + [ts_builtin_sym_end] = ACTIONS(659), + [sym_identifier] = ACTIONS(661), + [anon_sym_export] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_default] = ACTIONS(661), + [anon_sym_LBRACE] = ACTIONS(659), + [anon_sym_COMMA] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(659), + [anon_sym_import] = ACTIONS(661), + [anon_sym_with] = ACTIONS(661), + [anon_sym_var] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_else] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_switch] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_await] = ACTIONS(661), + [anon_sym_in] = ACTIONS(663), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(661), + [anon_sym_try] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_debugger] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_throw] = ACTIONS(661), + [anon_sym_case] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(659), + [anon_sym_class] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_function] = ACTIONS(661), + [sym_optional_chain] = ACTIONS(665), + [anon_sym_new] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(665), + [anon_sym_PIPE_PIPE] = ACTIONS(665), + [anon_sym_GT_GT] = ACTIONS(663), + [anon_sym_GT_GT_GT] = ACTIONS(665), + [anon_sym_LT_LT] = ACTIONS(665), + [anon_sym_AMP] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(661), + [anon_sym_PERCENT] = ACTIONS(665), + [anon_sym_STAR_STAR] = ACTIONS(665), + [anon_sym_LT_EQ] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_EQ_EQ_EQ] = ACTIONS(665), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ_EQ] = ACTIONS(665), + [anon_sym_GT_EQ] = ACTIONS(665), + [anon_sym_QMARK_QMARK] = ACTIONS(665), + [anon_sym_instanceof] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_typeof] = ACTIONS(661), + [anon_sym_void] = ACTIONS(661), + [anon_sym_delete] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(659), + [sym_number] = ACTIONS(659), + [sym_private_property_identifier] = ACTIONS(659), + [sym_this] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_true] = ACTIONS(661), + [sym_false] = ACTIONS(661), + [sym_null] = ACTIONS(661), + [sym_undefined] = ACTIONS(661), + [anon_sym_AT] = ACTIONS(659), + [anon_sym_static] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [sym__automatic_semicolon] = ACTIONS(667), + [sym__ternary_qmark] = ACTIONS(665), [sym_html_comment] = ACTIONS(5), }, - [164] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(685), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(686), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(87)] = { + [ts_builtin_sym_end] = ACTIONS(669), + [sym_identifier] = ACTIONS(671), + [anon_sym_export] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_default] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(675), + [anon_sym_RBRACE] = ACTIONS(669), + [anon_sym_import] = ACTIONS(671), + [anon_sym_with] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [anon_sym_let] = ACTIONS(671), + [anon_sym_const] = ACTIONS(671), + [anon_sym_else] = ACTIONS(671), + [anon_sym_if] = ACTIONS(671), + [anon_sym_switch] = ACTIONS(671), + [anon_sym_for] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_await] = ACTIONS(671), + [anon_sym_in] = ACTIONS(673), + [anon_sym_while] = ACTIONS(671), + [anon_sym_do] = ACTIONS(671), + [anon_sym_try] = ACTIONS(671), + [anon_sym_break] = ACTIONS(671), + [anon_sym_continue] = ACTIONS(671), + [anon_sym_debugger] = ACTIONS(671), + [anon_sym_return] = ACTIONS(671), + [anon_sym_throw] = ACTIONS(671), + [anon_sym_case] = ACTIONS(671), + [anon_sym_yield] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DQUOTE] = ACTIONS(669), + [anon_sym_SQUOTE] = ACTIONS(669), + [anon_sym_class] = ACTIONS(671), + [anon_sym_async] = ACTIONS(671), + [anon_sym_function] = ACTIONS(671), + [sym_optional_chain] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), + [anon_sym_AMP_AMP] = ACTIONS(675), + [anon_sym_PIPE_PIPE] = ACTIONS(675), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_GT_GT_GT] = ACTIONS(675), + [anon_sym_LT_LT] = ACTIONS(675), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(675), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(671), + [anon_sym_PERCENT] = ACTIONS(675), + [anon_sym_STAR_STAR] = ACTIONS(675), + [anon_sym_LT_EQ] = ACTIONS(675), + [anon_sym_EQ_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(675), + [anon_sym_BANG_EQ] = ACTIONS(673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(675), + [anon_sym_GT_EQ] = ACTIONS(675), + [anon_sym_QMARK_QMARK] = ACTIONS(675), + [anon_sym_instanceof] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(669), + [anon_sym_typeof] = ACTIONS(671), + [anon_sym_void] = ACTIONS(671), + [anon_sym_delete] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(669), + [anon_sym_DASH_DASH] = ACTIONS(669), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(669), + [sym_number] = ACTIONS(669), + [sym_private_property_identifier] = ACTIONS(669), + [sym_this] = ACTIONS(671), + [sym_super] = ACTIONS(671), + [sym_true] = ACTIONS(671), + [sym_false] = ACTIONS(671), + [sym_null] = ACTIONS(671), + [sym_undefined] = ACTIONS(671), + [anon_sym_AT] = ACTIONS(669), + [anon_sym_static] = ACTIONS(671), + [anon_sym_get] = ACTIONS(671), + [anon_sym_set] = ACTIONS(671), + [sym__automatic_semicolon] = ACTIONS(677), + [sym__ternary_qmark] = ACTIONS(675), [sym_html_comment] = ACTIONS(5), }, - [165] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(775), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1668), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(88)] = { + [ts_builtin_sym_end] = ACTIONS(679), + [sym_identifier] = ACTIONS(681), + [anon_sym_export] = ACTIONS(681), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_default] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(679), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_RBRACE] = ACTIONS(679), + [anon_sym_import] = ACTIONS(681), + [anon_sym_with] = ACTIONS(681), + [anon_sym_var] = ACTIONS(681), + [anon_sym_let] = ACTIONS(681), + [anon_sym_const] = ACTIONS(681), + [anon_sym_else] = ACTIONS(681), + [anon_sym_if] = ACTIONS(681), + [anon_sym_switch] = ACTIONS(681), + [anon_sym_for] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_in] = ACTIONS(683), + [anon_sym_while] = ACTIONS(681), + [anon_sym_do] = ACTIONS(681), + [anon_sym_try] = ACTIONS(681), + [anon_sym_break] = ACTIONS(681), + [anon_sym_continue] = ACTIONS(681), + [anon_sym_debugger] = ACTIONS(681), + [anon_sym_return] = ACTIONS(681), + [anon_sym_throw] = ACTIONS(681), + [anon_sym_case] = ACTIONS(681), + [anon_sym_yield] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_DOT] = ACTIONS(683), + [anon_sym_DQUOTE] = ACTIONS(679), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_class] = ACTIONS(681), + [anon_sym_async] = ACTIONS(681), + [anon_sym_function] = ACTIONS(681), + [sym_optional_chain] = ACTIONS(685), + [anon_sym_new] = ACTIONS(681), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(683), + [anon_sym_GT_GT_GT] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_AMP] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(681), + [anon_sym_PERCENT] = ACTIONS(685), + [anon_sym_STAR_STAR] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(683), + [anon_sym_EQ_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(683), + [anon_sym_BANG_EQ_EQ] = ACTIONS(685), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_QMARK_QMARK] = ACTIONS(685), + [anon_sym_instanceof] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(679), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(679), + [sym_number] = ACTIONS(679), + [sym_private_property_identifier] = ACTIONS(679), + [sym_this] = ACTIONS(681), + [sym_super] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [sym_null] = ACTIONS(681), + [sym_undefined] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(679), + [anon_sym_static] = ACTIONS(681), + [anon_sym_get] = ACTIONS(681), + [anon_sym_set] = ACTIONS(681), + [sym__automatic_semicolon] = ACTIONS(687), + [sym__ternary_qmark] = ACTIONS(685), [sym_html_comment] = ACTIONS(5), }, - [166] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(532), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(835), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(89)] = { + [ts_builtin_sym_end] = ACTIONS(689), + [sym_identifier] = ACTIONS(691), + [anon_sym_export] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(693), + [anon_sym_default] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_import] = ACTIONS(691), + [anon_sym_with] = ACTIONS(691), + [anon_sym_var] = ACTIONS(691), + [anon_sym_let] = ACTIONS(691), + [anon_sym_const] = ACTIONS(691), + [anon_sym_else] = ACTIONS(691), + [anon_sym_if] = ACTIONS(691), + [anon_sym_switch] = ACTIONS(691), + [anon_sym_for] = ACTIONS(691), + [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_await] = ACTIONS(691), + [anon_sym_in] = ACTIONS(693), + [anon_sym_while] = ACTIONS(691), + [anon_sym_do] = ACTIONS(691), + [anon_sym_try] = ACTIONS(691), + [anon_sym_break] = ACTIONS(691), + [anon_sym_continue] = ACTIONS(691), + [anon_sym_debugger] = ACTIONS(691), + [anon_sym_return] = ACTIONS(691), + [anon_sym_throw] = ACTIONS(691), + [anon_sym_case] = ACTIONS(691), + [anon_sym_yield] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_class] = ACTIONS(691), + [anon_sym_async] = ACTIONS(691), + [anon_sym_function] = ACTIONS(691), + [sym_optional_chain] = ACTIONS(695), + [anon_sym_new] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(693), + [anon_sym_GT_GT_GT] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(693), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_STAR_STAR] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(693), + [anon_sym_EQ_EQ_EQ] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(693), + [anon_sym_BANG_EQ_EQ] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(695), + [anon_sym_QMARK_QMARK] = ACTIONS(695), + [anon_sym_instanceof] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_TILDE] = ACTIONS(689), + [anon_sym_typeof] = ACTIONS(691), + [anon_sym_void] = ACTIONS(691), + [anon_sym_delete] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(689), + [sym_number] = ACTIONS(689), + [sym_private_property_identifier] = ACTIONS(689), + [sym_this] = ACTIONS(691), + [sym_super] = ACTIONS(691), + [sym_true] = ACTIONS(691), + [sym_false] = ACTIONS(691), + [sym_null] = ACTIONS(691), + [sym_undefined] = ACTIONS(691), + [anon_sym_AT] = ACTIONS(689), + [anon_sym_static] = ACTIONS(691), + [anon_sym_get] = ACTIONS(691), + [anon_sym_set] = ACTIONS(691), + [sym__automatic_semicolon] = ACTIONS(697), + [sym__ternary_qmark] = ACTIONS(695), [sym_html_comment] = ACTIONS(5), }, - [167] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(838), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(90)] = { + [ts_builtin_sym_end] = ACTIONS(699), + [sym_identifier] = ACTIONS(701), + [anon_sym_export] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_default] = ACTIONS(701), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(699), + [anon_sym_import] = ACTIONS(701), + [anon_sym_with] = ACTIONS(701), + [anon_sym_var] = ACTIONS(701), + [anon_sym_let] = ACTIONS(701), + [anon_sym_const] = ACTIONS(701), + [anon_sym_else] = ACTIONS(701), + [anon_sym_if] = ACTIONS(701), + [anon_sym_switch] = ACTIONS(701), + [anon_sym_for] = ACTIONS(701), + [anon_sym_LPAREN] = ACTIONS(699), + [anon_sym_SEMI] = ACTIONS(699), + [anon_sym_await] = ACTIONS(701), + [anon_sym_in] = ACTIONS(703), + [anon_sym_while] = ACTIONS(701), + [anon_sym_do] = ACTIONS(701), + [anon_sym_try] = ACTIONS(701), + [anon_sym_break] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(701), + [anon_sym_debugger] = ACTIONS(701), + [anon_sym_return] = ACTIONS(701), + [anon_sym_throw] = ACTIONS(701), + [anon_sym_case] = ACTIONS(701), + [anon_sym_yield] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(699), + [anon_sym_class] = ACTIONS(701), + [anon_sym_async] = ACTIONS(701), + [anon_sym_function] = ACTIONS(701), + [sym_optional_chain] = ACTIONS(705), + [anon_sym_new] = ACTIONS(701), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_GT_GT] = ACTIONS(703), + [anon_sym_GT_GT_GT] = ACTIONS(705), + [anon_sym_LT_LT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_SLASH] = ACTIONS(701), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_STAR_STAR] = ACTIONS(705), + [anon_sym_LT_EQ] = ACTIONS(705), + [anon_sym_EQ_EQ] = ACTIONS(703), + [anon_sym_EQ_EQ_EQ] = ACTIONS(705), + [anon_sym_BANG_EQ] = ACTIONS(703), + [anon_sym_BANG_EQ_EQ] = ACTIONS(705), + [anon_sym_GT_EQ] = ACTIONS(705), + [anon_sym_QMARK_QMARK] = ACTIONS(705), + [anon_sym_instanceof] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(701), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_typeof] = ACTIONS(701), + [anon_sym_void] = ACTIONS(701), + [anon_sym_delete] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(699), + [anon_sym_DASH_DASH] = ACTIONS(699), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(699), + [sym_number] = ACTIONS(699), + [sym_private_property_identifier] = ACTIONS(699), + [sym_this] = ACTIONS(701), + [sym_super] = ACTIONS(701), + [sym_true] = ACTIONS(701), + [sym_false] = ACTIONS(701), + [sym_null] = ACTIONS(701), + [sym_undefined] = ACTIONS(701), + [anon_sym_AT] = ACTIONS(699), + [anon_sym_static] = ACTIONS(701), + [anon_sym_get] = ACTIONS(701), + [anon_sym_set] = ACTIONS(701), + [sym__automatic_semicolon] = ACTIONS(707), + [sym__ternary_qmark] = ACTIONS(705), [sym_html_comment] = ACTIONS(5), }, - [168] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(548), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(851), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(91)] = { + [ts_builtin_sym_end] = ACTIONS(709), + [sym_identifier] = ACTIONS(711), + [anon_sym_export] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_default] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(709), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_import] = ACTIONS(711), + [anon_sym_with] = ACTIONS(711), + [anon_sym_var] = ACTIONS(711), + [anon_sym_let] = ACTIONS(711), + [anon_sym_const] = ACTIONS(711), + [anon_sym_else] = ACTIONS(711), + [anon_sym_if] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_for] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(709), + [anon_sym_await] = ACTIONS(711), + [anon_sym_in] = ACTIONS(713), + [anon_sym_while] = ACTIONS(711), + [anon_sym_do] = ACTIONS(711), + [anon_sym_try] = ACTIONS(711), + [anon_sym_break] = ACTIONS(711), + [anon_sym_continue] = ACTIONS(711), + [anon_sym_debugger] = ACTIONS(711), + [anon_sym_return] = ACTIONS(711), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_case] = ACTIONS(711), + [anon_sym_yield] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_DOT] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(709), + [anon_sym_class] = ACTIONS(711), + [anon_sym_async] = ACTIONS(711), + [anon_sym_function] = ACTIONS(711), + [sym_optional_chain] = ACTIONS(715), + [anon_sym_new] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [anon_sym_GT_GT] = ACTIONS(713), + [anon_sym_GT_GT_GT] = ACTIONS(715), + [anon_sym_LT_LT] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_SLASH] = ACTIONS(711), + [anon_sym_PERCENT] = ACTIONS(715), + [anon_sym_STAR_STAR] = ACTIONS(715), + [anon_sym_LT_EQ] = ACTIONS(715), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(715), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(715), + [anon_sym_GT_EQ] = ACTIONS(715), + [anon_sym_QMARK_QMARK] = ACTIONS(715), + [anon_sym_instanceof] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_typeof] = ACTIONS(711), + [anon_sym_void] = ACTIONS(711), + [anon_sym_delete] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(709), + [sym_number] = ACTIONS(709), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(711), + [sym_super] = ACTIONS(711), + [sym_true] = ACTIONS(711), + [sym_false] = ACTIONS(711), + [sym_null] = ACTIONS(711), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_static] = ACTIONS(711), + [anon_sym_get] = ACTIONS(711), + [anon_sym_set] = ACTIONS(711), + [sym__automatic_semicolon] = ACTIONS(717), + [sym__ternary_qmark] = ACTIONS(715), [sym_html_comment] = ACTIONS(5), }, - [169] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(558), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(852), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(92)] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym_identifier] = ACTIONS(721), + [anon_sym_export] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(723), + [anon_sym_default] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(719), + [anon_sym_import] = ACTIONS(721), + [anon_sym_with] = ACTIONS(721), + [anon_sym_var] = ACTIONS(721), + [anon_sym_let] = ACTIONS(721), + [anon_sym_const] = ACTIONS(721), + [anon_sym_else] = ACTIONS(721), + [anon_sym_if] = ACTIONS(721), + [anon_sym_switch] = ACTIONS(721), + [anon_sym_for] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_SEMI] = ACTIONS(719), + [anon_sym_await] = ACTIONS(721), + [anon_sym_in] = ACTIONS(723), + [anon_sym_while] = ACTIONS(721), + [anon_sym_do] = ACTIONS(721), + [anon_sym_try] = ACTIONS(721), + [anon_sym_break] = ACTIONS(721), + [anon_sym_continue] = ACTIONS(721), + [anon_sym_debugger] = ACTIONS(721), + [anon_sym_return] = ACTIONS(721), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_case] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_LT] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(719), + [anon_sym_class] = ACTIONS(721), + [anon_sym_async] = ACTIONS(721), + [anon_sym_function] = ACTIONS(721), + [sym_optional_chain] = ACTIONS(725), + [anon_sym_new] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(723), + [anon_sym_GT_GT_GT] = ACTIONS(725), + [anon_sym_LT_LT] = ACTIONS(725), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(721), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_EQ_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(723), + [anon_sym_BANG_EQ_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_QMARK_QMARK] = ACTIONS(725), + [anon_sym_instanceof] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(719), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(719), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(719), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_static] = ACTIONS(721), + [anon_sym_get] = ACTIONS(721), + [anon_sym_set] = ACTIONS(721), + [sym__automatic_semicolon] = ACTIONS(727), + [sym__ternary_qmark] = ACTIONS(725), [sym_html_comment] = ACTIONS(5), }, - [170] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(560), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(853), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(93)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(913), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1609), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_spread_element] = STATE(1633), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1528), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1663), + [aux_sym_array_pattern_repeat1] = STATE(1665), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), [sym_html_comment] = ACTIONS(5), }, - [171] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(561), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(854), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(94)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(928), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1609), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_spread_element] = STATE(1687), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1528), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1579), + [aux_sym_array_pattern_repeat1] = STATE(1665), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(743), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), [sym_html_comment] = ACTIONS(5), }, - [172] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(818), - [anon_sym_export] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(95)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(883), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1609), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_spread_element] = STATE(1633), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1528), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1663), + [aux_sym_array_pattern_repeat1] = STATE(1665), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), [sym_html_comment] = ACTIONS(5), }, - [173] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(558), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(96)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(928), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1609), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_spread_element] = STATE(1687), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1528), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1579), + [aux_sym_array_pattern_repeat1] = STATE(1665), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), [sym_html_comment] = ACTIONS(5), }, - [174] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(625), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(690), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(97)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(874), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1609), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_spread_element] = STATE(1601), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1528), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1603), + [aux_sym_array_pattern_repeat1] = STATE(1665), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(747), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), [sym_html_comment] = ACTIONS(5), }, - [175] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(673), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(98)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(928), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1609), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_spread_element] = STATE(1687), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1528), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1579), + [aux_sym_array_pattern_repeat1] = STATE(1665), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), [sym_html_comment] = ACTIONS(5), }, - [176] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(862), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(99)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(928), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1609), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_spread_element] = STATE(1687), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1528), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1579), + [aux_sym_array_pattern_repeat1] = STATE(1665), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), [sym_html_comment] = ACTIONS(5), }, - [177] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(100)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(928), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1609), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_spread_element] = STATE(1687), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1528), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1579), + [aux_sym_array_pattern_repeat1] = STATE(1665), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), [sym_html_comment] = ACTIONS(5), }, - [178] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(666), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(101)] = { + [sym_declaration] = STATE(464), + [sym_import] = STATE(1353), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(947), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1499), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(755), + [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -25482,9 +20961,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(757), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -25507,53 +20986,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [179] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(102)] = { + [sym_declaration] = STATE(457), + [sym_import] = STATE(1353), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(949), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(460), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(460), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(460), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1499), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(755), + [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -25561,9 +21048,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(757), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -25586,132 +21073,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), - [sym_html_comment] = ACTIONS(5), - }, - [180] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [181] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(611), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(103)] = { + [sym_declaration] = STATE(2100), + [sym_import] = STATE(1353), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(946), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1511), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(759), + [anon_sym_const] = ACTIONS(381), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -25719,9 +21135,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -25744,53 +21160,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [182] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(684), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(104)] = { + [sym_declaration] = STATE(1711), + [sym_import] = STATE(1353), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(945), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_class_declaration] = STATE(1961), + [sym_function_expression] = STATE(651), + [sym_function_declaration] = STATE(1961), + [sym_generator_function] = STATE(651), + [sym_generator_function_declaration] = STATE(1961), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1511), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_var] = ACTIONS(377), + [anon_sym_let] = ACTIONS(759), + [anon_sym_const] = ACTIONS(381), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -25798,9 +21222,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(407), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(411), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -25823,1090 +21247,2430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [183] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(687), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(105)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1410), + [sym_assignment_pattern] = STATE(1599), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1410), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1410), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [sym_pattern] = STATE(1439), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_pattern_repeat1] = STATE(1582), + [sym_identifier] = ACTIONS(763), + [anon_sym_export] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(775), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(779), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(765), + [anon_sym_get] = ACTIONS(765), + [anon_sym_set] = ACTIONS(765), [sym_html_comment] = ACTIONS(5), }, - [184] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(859), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(106)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(1012), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1609), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(563), + [sym_subscript_expression] = STATE(563), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1528), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_pattern_repeat1] = STATE(1665), + [sym_identifier] = ACTIONS(781), + [anon_sym_export] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(785), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(791), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(793), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(783), + [anon_sym_get] = ACTIONS(783), + [anon_sym_set] = ACTIONS(783), [sym_html_comment] = ACTIONS(5), }, - [185] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(691), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(107)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1410), + [sym_assignment_pattern] = STATE(1609), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1410), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1410), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [sym_pattern] = STATE(1528), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_pattern_repeat1] = STATE(1665), + [sym_identifier] = ACTIONS(763), + [anon_sym_export] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(775), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(779), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(765), + [anon_sym_get] = ACTIONS(765), + [anon_sym_set] = ACTIONS(765), [sym_html_comment] = ACTIONS(5), }, - [186] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(758), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(108)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(919), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1737), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_spread_element] = STATE(1574), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1592), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), [sym_html_comment] = ACTIONS(5), }, - [187] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(697), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(109)] = { + [sym_import] = STATE(1349), + [sym_variable_declaration] = STATE(136), + [sym_lexical_declaration] = STATE(136), + [sym_empty_statement] = STATE(136), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(910), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1626), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1626), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1626), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2183), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(798), + [anon_sym_export] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_import] = ACTIONS(425), + [anon_sym_var] = ACTIONS(804), + [anon_sym_let] = ACTIONS(806), + [anon_sym_const] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(812), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(800), + [anon_sym_get] = ACTIONS(800), + [anon_sym_set] = ACTIONS(800), [sym_html_comment] = ACTIONS(5), }, - [188] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(710), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(110)] = { + [sym_import] = STATE(1349), + [sym_variable_declaration] = STATE(138), + [sym_lexical_declaration] = STATE(138), + [sym_empty_statement] = STATE(138), + [sym_parenthesized_expression] = STATE(558), + [sym_expression] = STATE(940), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1626), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1626), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1626), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2148), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(798), + [anon_sym_export] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_import] = ACTIONS(425), + [anon_sym_var] = ACTIONS(804), + [anon_sym_let] = ACTIONS(806), + [anon_sym_const] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(812), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(800), + [anon_sym_get] = ACTIONS(800), + [anon_sym_set] = ACTIONS(800), [sym_html_comment] = ACTIONS(5), }, - [189] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(711), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(111)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(968), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1609), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(563), + [sym_subscript_expression] = STATE(563), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1528), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_pattern_repeat1] = STATE(1665), + [sym_identifier] = ACTIONS(781), + [anon_sym_export] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(785), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(791), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(793), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(783), + [anon_sym_get] = ACTIONS(783), + [anon_sym_set] = ACTIONS(783), [sym_html_comment] = ACTIONS(5), }, - [190] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(715), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(112)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(895), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1681), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2179), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1464), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), [sym_html_comment] = ACTIONS(5), }, - [191] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(716), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(113)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1410), + [sym_assignment_pattern] = STATE(1737), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1410), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1410), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [sym_pattern] = STATE(1592), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(763), + [anon_sym_export] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(775), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(779), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(765), + [anon_sym_get] = ACTIONS(765), + [anon_sym_set] = ACTIONS(765), [sym_html_comment] = ACTIONS(5), }, - [192] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(717), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(114)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(890), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1681), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2160), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1464), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), [sym_html_comment] = ACTIONS(5), }, - [193] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(719), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(115)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1681), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2126), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1464), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), [sym_html_comment] = ACTIONS(5), }, - [194] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(720), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(116)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_spread_element] = STATE(1642), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1643), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(820), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [195] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(721), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(117)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1410), + [sym_assignment_pattern] = STATE(1681), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1410), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1410), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [sym_pattern] = STATE(1464), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(763), + [anon_sym_export] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(775), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(765), + [anon_sym_get] = ACTIONS(765), + [anon_sym_set] = ACTIONS(765), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(118)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1410), + [sym_assignment_pattern] = STATE(1573), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1410), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1410), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [sym_pattern] = STATE(1438), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(763), + [anon_sym_export] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(775), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(765), + [anon_sym_get] = ACTIONS(765), + [anon_sym_set] = ACTIONS(765), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(119)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(930), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_spread_element] = STATE(1545), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1637), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(820), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(120)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1410), + [sym_assignment_pattern] = STATE(2078), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1410), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1410), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [sym_pattern] = STATE(1664), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(763), + [anon_sym_export] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(775), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(765), + [anon_sym_get] = ACTIONS(765), + [anon_sym_set] = ACTIONS(765), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(121)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1410), + [sym_assignment_pattern] = STATE(2078), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1410), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1410), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [sym_pattern] = STATE(1664), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(763), + [anon_sym_export] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(775), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(765), + [anon_sym_get] = ACTIONS(765), + [anon_sym_set] = ACTIONS(765), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(122)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1410), + [sym_assignment_pattern] = STATE(2078), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1410), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1410), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [sym_pattern] = STATE(1664), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(763), + [anon_sym_export] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(775), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(765), + [anon_sym_get] = ACTIONS(765), + [anon_sym_set] = ACTIONS(765), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(123)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1410), + [sym_assignment_pattern] = STATE(2078), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1410), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1410), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [sym_pattern] = STATE(1664), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(763), + [anon_sym_export] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(775), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(765), + [anon_sym_get] = ACTIONS(765), + [anon_sym_set] = ACTIONS(765), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(124)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(891), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_spread_element] = STATE(1625), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1546), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(820), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(838), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(125)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(919), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_spread_element] = STATE(1574), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_RBRACK] = ACTIONS(840), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(126)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(897), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_spread_element] = STATE(1563), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1564), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(820), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(127)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_spread_element] = STATE(1585), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [aux_sym_array_repeat1] = STATE(1587), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(820), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(128)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1410), + [sym_assignment_pattern] = STATE(1988), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1410), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1410), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [sym_pattern] = STATE(1632), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(763), + [anon_sym_export] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(775), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(765), + [anon_sym_get] = ACTIONS(765), + [anon_sym_set] = ACTIONS(765), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(129)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(953), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1363), + [sym_assignment_pattern] = STATE(1988), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1363), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1363), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [sym_pattern] = STATE(1632), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(741), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(731), + [anon_sym_get] = ACTIONS(731), + [anon_sym_set] = ACTIONS(731), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(130)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_spread_element] = STATE(2211), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2211), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(131)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1410), + [sym_assignment_pattern] = STATE(2078), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1410), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1410), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [sym_pattern] = STATE(1664), + [sym_rest_pattern] = STATE(1375), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(763), + [anon_sym_export] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(775), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(765), + [anon_sym_get] = ACTIONS(765), + [anon_sym_set] = ACTIONS(765), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(132)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(893), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_spread_element] = STATE(2181), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2181), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [196] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(133)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(818), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1726), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(850), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26929,142 +23693,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym__automatic_semicolon] = ACTIONS(850), [sym_html_comment] = ACTIONS(5), }, - [197] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(737), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1219), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1219), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(493), - [sym_subscript_expression] = STATE(493), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1219), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(824), - [anon_sym_export] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(828), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(134)] = { + [sym_import] = STATE(1349), + [sym_empty_statement] = STATE(150), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(936), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2174), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(826), - [anon_sym_get] = ACTIONS(826), - [anon_sym_set] = ACTIONS(826), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [198] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(728), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(135)] = { + [sym_import] = STATE(1349), + [sym_empty_statement] = STATE(139), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(906), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2233), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(136)] = { + [sym_import] = STATE(1349), + [sym_empty_statement] = STATE(143), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(859), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2235), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(137)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(819), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1903), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(852), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -27087,1554 +24021,1830 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym__automatic_semicolon] = ACTIONS(852), [sym_html_comment] = ACTIONS(5), }, - [199] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(510), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(138)] = { + [sym_import] = STATE(1349), + [sym_empty_statement] = STATE(145), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2137), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [200] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(139)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(926), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2138), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [201] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(580), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(140)] = { + [sym_namespace_export] = STATE(1715), + [sym_export_clause] = STATE(1505), + [sym_declaration] = STATE(469), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_class_declaration] = STATE(460), + [sym_function_declaration] = STATE(460), + [sym_generator_function_declaration] = STATE(460), + [sym_decorator] = STATE(1583), + [aux_sym_export_statement_repeat1] = STATE(1512), + [aux_sym_object_repeat1] = STATE(1689), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [anon_sym_STAR] = ACTIONS(856), + [anon_sym_default] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_var] = ACTIONS(866), + [anon_sym_let] = ACTIONS(868), + [anon_sym_const] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_class] = ACTIONS(880), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(884), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(862), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [202] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(575), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(141)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(939), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2177), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(892), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [203] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(583), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(142)] = { + [sym_namespace_export] = STATE(1715), + [sym_export_clause] = STATE(1505), + [sym_declaration] = STATE(469), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_class_declaration] = STATE(460), + [sym_function_declaration] = STATE(460), + [sym_generator_function_declaration] = STATE(460), + [sym_decorator] = STATE(1583), + [aux_sym_export_statement_repeat1] = STATE(1512), + [aux_sym_object_repeat1] = STATE(1662), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [anon_sym_STAR] = ACTIONS(856), + [anon_sym_default] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_var] = ACTIONS(866), + [anon_sym_let] = ACTIONS(868), + [anon_sym_const] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_class] = ACTIONS(880), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(884), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(862), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [204] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(586), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(143)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(892), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2223), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(896), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [205] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(588), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(144)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(920), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2197), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(898), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [206] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(607), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(145)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(935), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2136), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(900), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [207] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(590), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(146)] = { + [sym_namespace_export] = STATE(1715), + [sym_export_clause] = STATE(1505), + [sym_declaration] = STATE(469), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_class_declaration] = STATE(460), + [sym_function_declaration] = STATE(460), + [sym_generator_function_declaration] = STATE(460), + [sym_decorator] = STATE(1583), + [aux_sym_export_statement_repeat1] = STATE(1512), + [aux_sym_object_repeat1] = STATE(1662), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [anon_sym_STAR] = ACTIONS(856), + [anon_sym_default] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_var] = ACTIONS(866), + [anon_sym_let] = ACTIONS(868), + [anon_sym_const] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_class] = ACTIONS(880), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(884), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(862), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [208] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(591), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(147)] = { + [sym_namespace_export] = STATE(1715), + [sym_export_clause] = STATE(1505), + [sym_declaration] = STATE(469), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_class_declaration] = STATE(460), + [sym_function_declaration] = STATE(460), + [sym_generator_function_declaration] = STATE(460), + [sym_decorator] = STATE(1583), + [aux_sym_export_statement_repeat1] = STATE(1512), + [aux_sym_object_repeat1] = STATE(1619), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [anon_sym_STAR] = ACTIONS(856), + [anon_sym_default] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_var] = ACTIONS(866), + [anon_sym_let] = ACTIONS(868), + [anon_sym_const] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_class] = ACTIONS(880), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(884), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(862), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [209] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(592), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(148)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(937), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2142), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(906), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [210] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(574), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(149)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(567), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1618), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1618), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(567), + [sym_subscript_expression] = STATE(567), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1618), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(908), + [anon_sym_export] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_import] = ACTIONS(425), + [anon_sym_var] = ACTIONS(912), + [anon_sym_let] = ACTIONS(914), + [anon_sym_const] = ACTIONS(916), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(920), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(910), + [anon_sym_get] = ACTIONS(910), + [anon_sym_set] = ACTIONS(910), [sym_html_comment] = ACTIONS(5), }, - [211] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(593), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(150)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(938), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2152), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(922), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [212] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(594), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(151)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(889), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2226), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(924), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [213] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(595), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(152)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(1031), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [214] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(598), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(153)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(576), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DOT] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), [sym_html_comment] = ACTIONS(5), }, - [215] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(154)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(862), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2207), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [216] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(602), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(155)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(565), + [sym_expression] = STATE(1062), + [sym_primary_expression] = STATE(766), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(565), + [sym_subscript_expression] = STATE(565), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(932), + [anon_sym_export] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DOT] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(938), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(940), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(934), + [anon_sym_get] = ACTIONS(934), + [anon_sym_set] = ACTIONS(934), [sym_html_comment] = ACTIONS(5), }, - [217] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(576), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(156)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(660), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(718), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [218] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(748), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(157)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2196), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(158)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(664), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(970), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(159)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(704), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(973), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(160)] = { + [sym_import] = STATE(1353), + [sym_statement_block] = STATE(772), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(789), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -28642,9 +25852,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -28667,369 +25877,854 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [219] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(863), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(161)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(645), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(988), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), [sym_html_comment] = ACTIONS(5), }, - [220] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(865), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(162)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(525), + [sym_expression] = STATE(1060), + [sym_primary_expression] = STATE(583), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(525), + [sym_subscript_expression] = STATE(525), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(948), + [anon_sym_export] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DOT] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(954), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(950), + [anon_sym_get] = ACTIONS(950), + [anon_sym_set] = ACTIONS(950), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(163)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(900), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2158), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [221] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(596), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(164)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(660), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(989), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), [sym_html_comment] = ACTIONS(5), }, - [222] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(513), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(165)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(925), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2228), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [223] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(734), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(166)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(662), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(990), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(167)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(663), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(991), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(168)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(872), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2200), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(169)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(664), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(729), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(170)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(662), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(721), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(171)] = { + [sym_import] = STATE(1353), + [sym_statement_block] = STATE(778), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(855), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -29037,9 +26732,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -29062,53 +26757,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [224] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(738), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(172)] = { + [sym_import] = STATE(1353), + [sym_statement_block] = STATE(750), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(805), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -29116,9 +26812,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -29141,53 +26837,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [225] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(815), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(173)] = { + [sym_import] = STATE(1353), + [sym_statement_block] = STATE(751), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(820), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -29195,9 +26892,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -29220,132 +26917,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [226] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(736), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(174)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(576), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DOT] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(175)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(1002), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1003), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(176)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(878), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2230), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(177)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(881), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2132), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(178)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(882), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2169), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [227] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(617), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(179)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(857), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1919), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -29353,9 +27372,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -29378,3766 +27397,3247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [228] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(739), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(180)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(704), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(732), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [229] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(510), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(181)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(1024), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1025), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [230] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [231] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(781), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [232] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(818), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [233] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(790), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [234] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(792), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [235] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(793), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [236] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(794), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [237] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(795), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [238] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(798), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [239] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(799), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [240] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(800), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [241] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(801), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [242] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(802), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [243] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(804), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [244] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(806), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [245] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(808), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [246] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(757), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [247] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(513), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym_html_comment] = ACTIONS(5), - }, - [248] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1159), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1159), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1159), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(832), - [anon_sym_export] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(836), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(838), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(834), - [anon_sym_get] = ACTIONS(834), - [anon_sym_set] = ACTIONS(834), - [sym_html_comment] = ACTIONS(5), - }, - [249] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(737), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [250] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(611), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(182)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(822), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_sequence_expression] = STATE(1729), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [251] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(689), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(183)] = { + [sym_import] = STATE(1353), + [sym_statement_block] = STATE(771), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(827), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(509), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [sym_html_comment] = ACTIONS(5), }, - [252] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(692), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(184)] = { + [sym_import] = STATE(1353), + [sym_statement_block] = STATE(771), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(790), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [253] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(693), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(185)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(873), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2140), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [254] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(695), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(186)] = { + [sym_import] = STATE(1353), + [sym_statement_block] = STATE(772), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(509), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [sym_html_comment] = ACTIONS(5), }, - [255] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(860), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(187)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2206), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(696), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(188)] = { + [sym_import] = STATE(1353), + [sym_statement_block] = STATE(776), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(848), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(509), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(698), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(189)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(645), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(720), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [258] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(699), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(190)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(885), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2215), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [259] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(700), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(191)] = { + [sym_import] = STATE(1353), + [sym_statement_block] = STATE(778), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(849), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(509), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [sym_html_comment] = ACTIONS(5), }, - [260] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(701), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(192)] = { + [sym_import] = STATE(1353), + [sym_statement_block] = STATE(750), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(850), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(509), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(702), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(193)] = { + [sym_import] = STATE(1353), + [sym_statement_block] = STATE(751), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(851), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(509), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(703), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(194)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(934), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2237), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(704), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(195)] = { + [sym_import] = STATE(1353), + [sym_statement_block] = STATE(776), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(817), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(705), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(196)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(1027), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1028), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(197)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(899), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2154), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(198)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(876), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2213), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(199)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(877), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2164), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(200)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(902), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2184), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(201)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(663), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(726), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(202)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(1029), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1030), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [265] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(706), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(203)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(525), + [sym_expression] = STATE(1060), + [sym_primary_expression] = STATE(583), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(525), + [sym_subscript_expression] = STATE(525), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(948), + [anon_sym_export] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(950), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DOT] = ACTIONS(952), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(954), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(537), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(950), + [anon_sym_get] = ACTIONS(950), + [anon_sym_set] = ACTIONS(950), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(204)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(880), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2198), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(205)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(908), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_sequence_expression] = STATE(2175), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(206)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(664), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1035), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(207)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(704), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1038), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(208)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(645), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1053), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(209)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(660), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(955), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(210)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(662), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1054), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(211)] = { + [sym_import] = STATE(1349), + [sym_statement_block] = STATE(663), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1055), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(212)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(576), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DOT] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(213)] = { + [sym_import] = STATE(1337), + [sym_statement_block] = STATE(1007), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1008), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(214)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1026), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), [sym_html_comment] = ACTIONS(5), }, - [266] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(707), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(215)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(798), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [267] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(708), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(216)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(799), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), - [sym_html_comment] = ACTIONS(5), - }, - [268] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(861), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [269] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym_html_comment] = ACTIONS(5), - }, - [270] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(833), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [271] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(718), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(217)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(800), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), - [sym_html_comment] = ACTIONS(5), - }, - [272] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(857), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [273] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(617), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(218)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(801), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [274] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), + [STATE(219)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(802), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [275] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(624), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), + [STATE(220)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(803), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -33145,9 +30645,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(59), [anon_sym_DQUOTE] = ACTIONS(61), [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -33170,15495 +30670,37257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [276] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(510), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), + [STATE(221)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(804), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [277] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), + [STATE(222)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(780), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [278] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(834), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), + [STATE(223)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(806), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [279] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(836), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), + [STATE(224)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(808), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [280] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(837), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), + [STATE(225)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(815), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [281] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(839), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(226)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(649), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [282] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(840), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(227)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(650), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(841), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(228)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(783), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1532), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1532), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(562), + [sym_subscript_expression] = STATE(562), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1532), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(964), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(842), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(229)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(731), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [285] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(843), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(230)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(737), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [286] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(844), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), + [STATE(231)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(232)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(736), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(845), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(233)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(739), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [288] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(846), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(234)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(748), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [289] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(847), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(235)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(717), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [290] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(848), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(236)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(743), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [291] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(849), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(237)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(744), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [292] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(850), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(238)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(719), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [293] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(819), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), + [STATE(239)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(724), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(240)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(727), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(241)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(728), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(242)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(734), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(243)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(738), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(244)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(740), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(245)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(741), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(246)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(746), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(247)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(1012), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(248)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(747), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(249)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(826), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [294] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(855), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), + [STATE(250)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(829), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [295] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(513), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), + [STATE(251)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(941), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [296] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(864), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(252)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1004), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [297] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(785), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(253)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1006), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [298] = { - [sym_string] = STATE(1412), - [sym_formal_parameters] = STATE(1633), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(840), - [anon_sym_export] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_let] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(858), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(254)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1009), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(842), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [299] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(255)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1010), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [300] = { - [sym_string] = STATE(1412), - [sym_formal_parameters] = STATE(1633), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(840), - [anon_sym_export] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_let] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(858), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(256)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1011), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(842), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [301] = { - [sym_string] = STATE(1412), - [sym_formal_parameters] = STATE(1633), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(840), - [anon_sym_export] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_let] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(858), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(257)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1013), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(842), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(870), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(258)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1014), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(259)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1015), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(872), - [anon_sym_set] = ACTIONS(872), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [304] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(260)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1016), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(872), - [anon_sym_set] = ACTIONS(872), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [305] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(874), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(261)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1017), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [306] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(874), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(262)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1018), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [307] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(874), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(263)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1019), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [308] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(264)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1020), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(872), - [anon_sym_set] = ACTIONS(872), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [309] = { - [sym_formal_parameters] = STATE(1707), - [sym_identifier] = ACTIONS(878), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_let] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(889), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(265)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1021), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_formal_parameters] = STATE(1707), - [sym_identifier] = ACTIONS(878), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_let] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(889), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(266)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1022), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(499), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(501), - [anon_sym_default] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_COMMA] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_import] = ACTIONS(501), - [anon_sym_with] = ACTIONS(501), - [anon_sym_var] = ACTIONS(501), - [anon_sym_let] = ACTIONS(501), - [anon_sym_const] = ACTIONS(501), - [anon_sym_else] = ACTIONS(501), - [anon_sym_if] = ACTIONS(501), - [anon_sym_switch] = ACTIONS(501), - [anon_sym_for] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_await] = ACTIONS(501), - [anon_sym_while] = ACTIONS(501), - [anon_sym_do] = ACTIONS(501), - [anon_sym_try] = ACTIONS(501), - [anon_sym_break] = ACTIONS(501), - [anon_sym_continue] = ACTIONS(501), - [anon_sym_debugger] = ACTIONS(501), - [anon_sym_return] = ACTIONS(501), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_case] = ACTIONS(501), - [anon_sym_catch] = ACTIONS(501), - [anon_sym_finally] = ACTIONS(501), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_async] = ACTIONS(501), - [anon_sym_function] = ACTIONS(501), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_SLASH] = ACTIONS(501), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_typeof] = ACTIONS(501), - [anon_sym_void] = ACTIONS(501), - [anon_sym_delete] = ACTIONS(501), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [STATE(267)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1023), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(499), - [sym_number] = ACTIONS(499), - [sym_private_property_identifier] = ACTIONS(499), - [sym_this] = ACTIONS(501), - [sym_super] = ACTIONS(501), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_null] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(499), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [sym__automatic_semicolon] = ACTIONS(893), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [anon_sym_export] = ACTIONS(505), - [anon_sym_default] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_import] = ACTIONS(505), - [anon_sym_with] = ACTIONS(505), - [anon_sym_var] = ACTIONS(505), - [anon_sym_let] = ACTIONS(505), - [anon_sym_const] = ACTIONS(505), - [anon_sym_else] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_for] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_await] = ACTIONS(505), - [anon_sym_while] = ACTIONS(505), - [anon_sym_do] = ACTIONS(505), - [anon_sym_try] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_debugger] = ACTIONS(505), - [anon_sym_return] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(505), - [anon_sym_case] = ACTIONS(505), - [anon_sym_catch] = ACTIONS(505), - [anon_sym_finally] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(503), - [anon_sym_class] = ACTIONS(505), - [anon_sym_async] = ACTIONS(505), - [anon_sym_function] = ACTIONS(505), - [anon_sym_new] = ACTIONS(505), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_TILDE] = ACTIONS(503), - [anon_sym_typeof] = ACTIONS(505), - [anon_sym_void] = ACTIONS(505), - [anon_sym_delete] = ACTIONS(505), - [anon_sym_PLUS_PLUS] = ACTIONS(503), - [anon_sym_DASH_DASH] = ACTIONS(503), + [STATE(268)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(959), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(503), - [sym_number] = ACTIONS(503), - [sym_private_property_identifier] = ACTIONS(503), - [sym_this] = ACTIONS(505), - [sym_super] = ACTIONS(505), - [sym_true] = ACTIONS(505), - [sym_false] = ACTIONS(505), - [sym_null] = ACTIONS(505), - [sym_undefined] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(503), - [anon_sym_static] = ACTIONS(505), - [anon_sym_get] = ACTIONS(505), - [anon_sym_set] = ACTIONS(505), - [sym__automatic_semicolon] = ACTIONS(513), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), [sym_html_comment] = ACTIONS(5), }, - [313] = { - [sym_variable_declarator] = STATE(1260), - [sym_object_pattern] = STATE(1191), - [sym_array_pattern] = STATE(1191), - [sym__destructuring_pattern] = STATE(1191), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(269)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(702), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [314] = { - [sym_variable_declarator] = STATE(1260), - [sym_object_pattern] = STATE(1191), - [sym_array_pattern] = STATE(1191), - [sym__destructuring_pattern] = STATE(1191), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(270)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(853), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [315] = { - [sym_variable_declarator] = STATE(1260), - [sym_object_pattern] = STATE(1191), - [sym_array_pattern] = STATE(1191), - [sym__destructuring_pattern] = STATE(1191), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(271)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(836), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [sym_html_comment] = ACTIONS(5), }, - [316] = { - [sym_formal_parameters] = STATE(1707), - [sym_identifier] = ACTIONS(878), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_let] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(901), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(889), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(272)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), [sym_html_comment] = ACTIONS(5), }, - [317] = { - [sym_formal_parameters] = STATE(1633), - [sym_identifier] = ACTIONS(907), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_let] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(870), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(911), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(273)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1061), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(1414), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(1414), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(549), + [sym_subscript_expression] = STATE(549), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(1414), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(970), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(968), + [anon_sym_get] = ACTIONS(968), + [anon_sym_set] = ACTIONS(968), [sym_html_comment] = ACTIONS(5), }, - [318] = { - [sym_formal_parameters] = STATE(1671), - [sym_identifier] = ACTIONS(913), - [anon_sym_export] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_of] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(915), - [anon_sym_function] = ACTIONS(919), - [anon_sym_EQ_GT] = ACTIONS(921), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(274)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(783), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(915), - [anon_sym_get] = ACTIONS(915), - [anon_sym_set] = ACTIONS(915), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), [sym_html_comment] = ACTIONS(5), }, - [319] = { - [sym_formal_parameters] = STATE(1619), - [sym_identifier] = ACTIONS(923), - [anon_sym_export] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_let] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(925), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(932), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(275)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(649), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(925), - [anon_sym_get] = ACTIONS(925), - [anon_sym_set] = ACTIONS(925), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), [sym_html_comment] = ACTIONS(5), }, - [320] = { - [sym_formal_parameters] = STATE(1633), - [sym_identifier] = ACTIONS(907), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_let] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(919), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(276)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(650), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), [sym_html_comment] = ACTIONS(5), }, - [321] = { - [sym_formal_parameters] = STATE(1671), - [sym_identifier] = ACTIONS(913), - [anon_sym_export] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_of] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(915), - [anon_sym_function] = ACTIONS(919), - [anon_sym_EQ_GT] = ACTIONS(921), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(277)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(971), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(915), - [anon_sym_get] = ACTIONS(915), - [anon_sym_set] = ACTIONS(915), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), [sym_html_comment] = ACTIONS(5), }, - [322] = { - [sym_formal_parameters] = STATE(1633), - [sym_identifier] = ACTIONS(907), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_let] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(858), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(278)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(972), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), [sym_html_comment] = ACTIONS(5), }, - [323] = { - [sym_formal_parameters] = STATE(1633), - [sym_identifier] = ACTIONS(907), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_let] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(919), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(279)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(974), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), [sym_html_comment] = ACTIONS(5), }, - [324] = { - [sym_catch_clause] = STATE(333), - [sym_finally_clause] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(936), - [anon_sym_export] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_import] = ACTIONS(936), - [anon_sym_with] = ACTIONS(936), - [anon_sym_var] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_await] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_debugger] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_throw] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(938), - [anon_sym_finally] = ACTIONS(940), - [anon_sym_yield] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_LT] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_typeof] = ACTIONS(936), - [anon_sym_void] = ACTIONS(936), - [anon_sym_delete] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(934), + [STATE(280)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(975), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(934), - [sym_number] = ACTIONS(934), - [sym_private_property_identifier] = ACTIONS(934), - [sym_this] = ACTIONS(936), - [sym_super] = ACTIONS(936), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), - [sym_undefined] = ACTIONS(936), - [anon_sym_AT] = ACTIONS(934), - [anon_sym_static] = ACTIONS(936), - [anon_sym_get] = ACTIONS(936), - [anon_sym_set] = ACTIONS(936), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), [sym_html_comment] = ACTIONS(5), }, - [325] = { - [sym_formal_parameters] = STATE(1619), - [sym_identifier] = ACTIONS(923), - [anon_sym_export] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_let] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(942), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(925), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(932), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(281)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(976), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(925), - [anon_sym_get] = ACTIONS(925), - [anon_sym_set] = ACTIONS(925), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), [sym_html_comment] = ACTIONS(5), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(499), 18, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_COMMA, + [STATE(282)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(977), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(283)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(978), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(284)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(285)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(980), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(286)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(981), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(287)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(982), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(288)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(983), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(289)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(984), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(290)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(985), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(291)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(986), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(292)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1034), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(293)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(992), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(294)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(702), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(295)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(951), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(296)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(999), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(297)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(298)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(954), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(299)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(994), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(300)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(782), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(301)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(787), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(302)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(779), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(303)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(828), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(304)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(831), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(305)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(953), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(306)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(833), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(307)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(834), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(308)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(967), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(309)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(310)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(837), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(311)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(838), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(312)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(839), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(313)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(840), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(314)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(841), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(315)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(842), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(316)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(843), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(317)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(844), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(318)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(845), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(319)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(846), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(320)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(847), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(321)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2129), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2129), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2129), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1857), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(415), + [anon_sym_export] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_typeof] = ACTIONS(451), + [anon_sym_void] = ACTIONS(451), + [anon_sym_delete] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(463), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(417), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(322)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(825), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(323)] = { + [sym_import] = STATE(1337), + [sym_parenthesized_expression] = STATE(572), + [sym_expression] = STATE(969), + [sym_primary_expression] = STATE(757), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(869), + [sym_object_pattern] = STATE(2232), + [sym_array] = STATE(869), + [sym_array_pattern] = STATE(2232), + [sym_jsx_element] = STATE(993), + [sym_jsx_opening_element] = STATE(1243), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(869), + [sym_function_expression] = STATE(869), + [sym_generator_function] = STATE(869), + [sym_arrow_function] = STATE(993), + [sym_call_expression] = STATE(869), + [sym_new_expression] = STATE(869), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(993), + [sym__augmented_assignment_lhs] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(993), + [sym__destructuring_pattern] = STATE(2232), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_string] = STATE(869), + [sym_template_string] = STATE(869), + [sym_regex] = STATE(869), + [sym_meta_property] = STATE(869), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1804), + [aux_sym_export_statement_repeat1] = STATE(1520), + [sym_identifier] = ACTIONS(567), + [anon_sym_export] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_let] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_await] = ACTIONS(579), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_class] = ACTIONS(591), + [anon_sym_async] = ACTIONS(593), + [anon_sym_function] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(609), + [sym_private_property_identifier] = ACTIONS(611), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(324)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(768), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(325)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(779), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(326)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(852), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(327)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(791), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(328)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(997), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(329)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(794), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(330)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1005), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(331)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(332)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(546), + [sym_expression] = STATE(768), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2125), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2125), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(546), + [sym_subscript_expression] = STATE(546), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2125), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2043), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(493), + [anon_sym_yield] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(497), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(501), + [anon_sym_void] = ACTIONS(501), + [anon_sym_delete] = ACTIONS(501), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(509), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(333)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(649), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(334)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(650), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(335)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(879), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(336)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1036), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(337)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(338)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1039), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(339)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(340)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1041), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(341)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1042), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(342)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1043), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(343)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1044), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(344)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1045), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(345)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1046), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(346)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1047), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(347)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1048), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(348)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1049), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(349)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1050), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(350)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1051), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(351)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1052), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(352)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(996), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(353)] = { + [sym_import] = STATE(1353), + [sym_parenthesized_expression] = STATE(548), + [sym_expression] = STATE(797), + [sym_primary_expression] = STATE(628), + [sym_yield_expression] = STATE(758), + [sym_object] = STATE(651), + [sym_object_pattern] = STATE(2187), + [sym_array] = STATE(651), + [sym_array_pattern] = STATE(2187), + [sym_jsx_element] = STATE(758), + [sym_jsx_opening_element] = STATE(1245), + [sym_jsx_self_closing_element] = STATE(758), + [sym_class] = STATE(651), + [sym_function_expression] = STATE(651), + [sym_generator_function] = STATE(651), + [sym_arrow_function] = STATE(758), + [sym_call_expression] = STATE(651), + [sym_new_expression] = STATE(651), + [sym_await_expression] = STATE(758), + [sym_member_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym_assignment_expression] = STATE(758), + [sym__augmented_assignment_lhs] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(758), + [sym__destructuring_pattern] = STATE(2187), + [sym_ternary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_unary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_string] = STATE(651), + [sym_template_string] = STATE(651), + [sym_regex] = STATE(651), + [sym_meta_property] = STATE(651), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1727), + [aux_sym_export_statement_repeat1] = STATE(1506), + [sym_identifier] = ACTIONS(469), + [anon_sym_export] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(477), + [anon_sym_let] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(481), + [anon_sym_async] = ACTIONS(483), + [anon_sym_function] = ACTIONS(485), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(471), + [anon_sym_get] = ACTIONS(471), + [anon_sym_set] = ACTIONS(471), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(354)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(1056), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(355)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(571), + [sym_expression] = STATE(702), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2236), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2236), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2236), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(2114), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(555), + [anon_sym_void] = ACTIONS(555), + [anon_sym_delete] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(563), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(356)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(1057), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(357)] = { + [sym_import] = STATE(1349), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(987), + [sym_primary_expression] = STATE(577), + [sym_yield_expression] = STATE(692), + [sym_object] = STATE(591), + [sym_object_pattern] = STATE(2163), + [sym_array] = STATE(591), + [sym_array_pattern] = STATE(2163), + [sym_jsx_element] = STATE(692), + [sym_jsx_opening_element] = STATE(1240), + [sym_jsx_self_closing_element] = STATE(692), + [sym_class] = STATE(591), + [sym_function_expression] = STATE(591), + [sym_generator_function] = STATE(591), + [sym_arrow_function] = STATE(692), + [sym_call_expression] = STATE(591), + [sym_new_expression] = STATE(591), + [sym_await_expression] = STATE(692), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(692), + [sym__augmented_assignment_lhs] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(692), + [sym__destructuring_pattern] = STATE(2163), + [sym_ternary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_unary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_string] = STATE(591), + [sym_template_string] = STATE(591), + [sym_regex] = STATE(591), + [sym_meta_property] = STATE(591), + [sym_decorator] = STATE(1583), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1483), + [sym_identifier] = ACTIONS(513), + [anon_sym_export] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_class] = ACTIONS(443), + [anon_sym_async] = ACTIONS(527), + [anon_sym_function] = ACTIONS(447), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(459), + [sym_number] = ACTIONS(461), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(515), + [anon_sym_get] = ACTIONS(515), + [anon_sym_set] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(358)] = { + [sym_string] = STATE(1982), + [sym_formal_parameters] = STATE(1703), + [sym__property_name] = STATE(1982), + [sym_computed_property_name] = STATE(1982), + [aux_sym_object_repeat1] = STATE(1662), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(974), + [anon_sym_export] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_let] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(992), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_static] = ACTIONS(976), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(359)] = { + [sym_string] = STATE(1982), + [sym_formal_parameters] = STATE(1703), + [sym__property_name] = STATE(1982), + [sym_computed_property_name] = STATE(1982), + [aux_sym_object_repeat1] = STATE(1689), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(974), + [anon_sym_export] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_let] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(992), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_static] = ACTIONS(976), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(360)] = { + [sym_namespace_export] = STATE(1910), + [sym_export_clause] = STATE(1522), + [sym_declaration] = STATE(1970), + [sym_variable_declaration] = STATE(1961), + [sym_lexical_declaration] = STATE(1961), + [sym_class_declaration] = STATE(1961), + [sym_function_declaration] = STATE(1961), + [sym_generator_function_declaration] = STATE(1961), + [sym_decorator] = STATE(1583), + [aux_sym_export_statement_repeat1] = STATE(1525), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_var] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(862), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_class] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_function] = ACTIONS(1014), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_AT] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(361)] = { + [sym_string] = STATE(1982), + [sym_formal_parameters] = STATE(1703), + [sym__property_name] = STATE(1982), + [sym_computed_property_name] = STATE(1982), + [aux_sym_object_repeat1] = STATE(1662), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(974), + [anon_sym_export] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_let] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(992), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_static] = ACTIONS(976), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(362)] = { + [sym_string] = STATE(1982), + [sym_formal_parameters] = STATE(1703), + [sym__property_name] = STATE(1982), + [sym_computed_property_name] = STATE(1982), + [aux_sym_object_repeat1] = STATE(1619), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(974), + [anon_sym_export] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_let] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(992), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_static] = ACTIONS(976), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(363)] = { + [sym_namespace_export] = STATE(1715), + [sym_export_clause] = STATE(1505), + [sym_declaration] = STATE(469), + [sym_variable_declaration] = STATE(460), + [sym_lexical_declaration] = STATE(460), + [sym_class_declaration] = STATE(460), + [sym_function_declaration] = STATE(460), + [sym_generator_function_declaration] = STATE(460), + [sym_decorator] = STATE(1583), + [aux_sym_export_statement_repeat1] = STATE(1512), + [anon_sym_STAR] = ACTIONS(856), + [anon_sym_default] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_var] = ACTIONS(866), + [anon_sym_let] = ACTIONS(868), + [anon_sym_const] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(862), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_class] = ACTIONS(880), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(884), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_AT] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(364)] = { + [sym_string] = STATE(1982), + [sym__property_name] = STATE(1982), + [sym_computed_property_name] = STATE(1982), + [aux_sym_object_repeat1] = STATE(1662), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(1018), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_get] = ACTIONS(1022), + [anon_sym_set] = ACTIONS(1022), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(365)] = { + [sym_string] = STATE(1982), + [sym__property_name] = STATE(1982), + [sym_computed_property_name] = STATE(1982), + [aux_sym_object_repeat1] = STATE(1662), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(1018), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_async] = ACTIONS(1018), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_get] = ACTIONS(1018), + [anon_sym_set] = ACTIONS(1018), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(366)] = { + [sym_string] = STATE(1982), + [sym__property_name] = STATE(1982), + [sym_computed_property_name] = STATE(1982), + [aux_sym_object_repeat1] = STATE(1689), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(1018), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_async] = ACTIONS(1018), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_get] = ACTIONS(1018), + [anon_sym_set] = ACTIONS(1018), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(367)] = { + [sym_string] = STATE(1982), + [sym__property_name] = STATE(1982), + [sym_computed_property_name] = STATE(1982), + [aux_sym_object_repeat1] = STATE(1662), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(1018), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_get] = ACTIONS(1022), + [anon_sym_set] = ACTIONS(1022), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(368)] = { + [sym_string] = STATE(1982), + [sym__property_name] = STATE(1982), + [sym_computed_property_name] = STATE(1982), + [aux_sym_object_repeat1] = STATE(1689), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(1018), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_get] = ACTIONS(1022), + [anon_sym_set] = ACTIONS(1022), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(369)] = { + [sym_string] = STATE(1982), + [sym__property_name] = STATE(1982), + [sym_computed_property_name] = STATE(1982), + [aux_sym_object_repeat1] = STATE(1662), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(1018), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_async] = ACTIONS(1018), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_get] = ACTIONS(1018), + [anon_sym_set] = ACTIONS(1018), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(370)] = { + [sym_string] = STATE(1982), + [sym__property_name] = STATE(1982), + [sym_computed_property_name] = STATE(1982), + [aux_sym_object_repeat1] = STATE(1619), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(1018), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_get] = ACTIONS(1022), + [anon_sym_set] = ACTIONS(1022), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(371)] = { + [sym_string] = STATE(1982), + [sym__property_name] = STATE(1982), + [sym_computed_property_name] = STATE(1982), + [aux_sym_object_repeat1] = STATE(1619), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(1018), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_async] = ACTIONS(1018), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_get] = ACTIONS(1018), + [anon_sym_set] = ACTIONS(1018), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(372)] = { + [sym_formal_parameters] = STATE(1748), + [sym_identifier] = ACTIONS(1024), + [anon_sym_export] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_RPAREN] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_of] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_RBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_async] = ACTIONS(1026), + [anon_sym_function] = ACTIONS(1033), + [anon_sym_EQ_GT] = ACTIONS(1035), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1026), + [anon_sym_get] = ACTIONS(1026), + [anon_sym_set] = ACTIONS(1026), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(1037), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(373)] = { + [sym_formal_parameters] = STATE(1765), + [sym_identifier] = ACTIONS(1039), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_RPAREN] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_RBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_function] = ACTIONS(1033), + [anon_sym_EQ_GT] = ACTIONS(1035), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(1045), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(374)] = { + [sym_formal_parameters] = STATE(1748), + [sym_identifier] = ACTIONS(1024), + [anon_sym_export] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_of] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_async] = ACTIONS(1026), + [anon_sym_function] = ACTIONS(1047), + [anon_sym_EQ_GT] = ACTIONS(1035), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1026), + [anon_sym_get] = ACTIONS(1026), + [anon_sym_set] = ACTIONS(1026), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(1037), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(375)] = { + [sym_formal_parameters] = STATE(1765), + [sym_identifier] = ACTIONS(1039), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1049), + [anon_sym_in] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_RBRACK] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_function] = ACTIONS(1033), + [anon_sym_EQ_GT] = ACTIONS(1035), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(1045), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(376)] = { + [sym_formal_parameters] = STATE(2054), + [sym_identifier] = ACTIONS(1055), + [anon_sym_export] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_let] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_of] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_async] = ACTIONS(1057), + [anon_sym_function] = ACTIONS(1047), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1057), + [anon_sym_get] = ACTIONS(1057), + [anon_sym_set] = ACTIONS(1057), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(377)] = { + [sym_formal_parameters] = STATE(1748), + [sym_identifier] = ACTIONS(1024), + [anon_sym_export] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(1063), + [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1063), + [anon_sym_in] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_RBRACK] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_async] = ACTIONS(1026), + [anon_sym_function] = ACTIONS(1033), + [anon_sym_EQ_GT] = ACTIONS(1035), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1026), + [anon_sym_get] = ACTIONS(1026), + [anon_sym_set] = ACTIONS(1026), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(1037), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(378)] = { + [sym_variable_declarator] = STATE(1493), + [sym_object_pattern] = STATE(1436), + [sym_array_pattern] = STATE(1436), + [sym__destructuring_pattern] = STATE(1436), + [aux_sym_object_repeat1] = STATE(1689), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(379)] = { + [sym_variable_declarator] = STATE(1493), + [sym_object_pattern] = STATE(1436), + [sym_array_pattern] = STATE(1436), + [sym__destructuring_pattern] = STATE(1436), + [aux_sym_object_repeat1] = STATE(1662), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(380)] = { + [sym_variable_declarator] = STATE(1493), + [sym_object_pattern] = STATE(1436), + [sym_array_pattern] = STATE(1436), + [sym__destructuring_pattern] = STATE(1436), + [aux_sym_object_repeat1] = STATE(1662), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(381)] = { + [sym_formal_parameters] = STATE(1748), + [sym_identifier] = ACTIONS(1024), + [anon_sym_export] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_in] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_RBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_async] = ACTIONS(1026), + [anon_sym_function] = ACTIONS(1033), + [anon_sym_EQ_GT] = ACTIONS(1035), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1026), + [anon_sym_get] = ACTIONS(1026), + [anon_sym_set] = ACTIONS(1026), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(1037), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(382)] = { + [sym_variable_declarator] = STATE(1493), + [sym_object_pattern] = STATE(1436), + [sym_array_pattern] = STATE(1436), + [sym__destructuring_pattern] = STATE(1436), + [aux_sym_object_repeat1] = STATE(1619), + [aux_sym_object_pattern_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(383)] = { + [sym_formal_parameters] = STATE(1703), + [sym_identifier] = ACTIONS(1076), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_get] = ACTIONS(1078), + [anon_sym_set] = ACTIONS(1078), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(384)] = { + [sym_formal_parameters] = STATE(1703), + [sym_identifier] = ACTIONS(1076), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1047), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_get] = ACTIONS(1078), + [anon_sym_set] = ACTIONS(1078), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(385)] = { + [sym_formal_parameters] = STATE(1703), + [sym_identifier] = ACTIONS(1076), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(992), + [anon_sym_EQ_GT] = ACTIONS(886), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_get] = ACTIONS(1078), + [anon_sym_set] = ACTIONS(1078), + [sym__automatic_semicolon] = ACTIONS(862), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(386)] = { + [sym_catch_clause] = STATE(402), + [sym_finally_clause] = STATE(473), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_import] = ACTIONS(1084), + [anon_sym_with] = ACTIONS(1084), + [anon_sym_var] = ACTIONS(1084), + [anon_sym_let] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_else] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_debugger] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_throw] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_catch] = ACTIONS(1086), + [anon_sym_finally] = ACTIONS(1088), + [anon_sym_yield] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_class] = ACTIONS(1084), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(1084), + [anon_sym_new] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_typeof] = ACTIONS(1084), + [anon_sym_void] = ACTIONS(1084), + [anon_sym_delete] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [sym_private_property_identifier] = ACTIONS(1082), + [sym_this] = ACTIONS(1084), + [sym_super] = ACTIONS(1084), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), + [sym_undefined] = ACTIONS(1084), + [anon_sym_AT] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_get] = ACTIONS(1084), + [anon_sym_set] = ACTIONS(1084), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(387)] = { + [sym_formal_parameters] = STATE(1765), + [sym_identifier] = ACTIONS(1039), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_of] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_function] = ACTIONS(1033), + [anon_sym_EQ_GT] = ACTIONS(1035), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(1045), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(388)] = { + [sym_formal_parameters] = STATE(1765), + [sym_identifier] = ACTIONS(1039), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_in] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_RBRACK] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_function] = ACTIONS(1033), + [anon_sym_EQ_GT] = ACTIONS(1035), + [sym_optional_chain] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(888), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(862), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [sym__ternary_qmark] = ACTIONS(862), + [sym__shorthand_arrow] = ACTIONS(1045), + [sym_html_comment] = ACTIONS(5), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 12, + ACTIONS(886), 1, + anon_sym_EQ_GT, + ACTIONS(890), 1, + sym__shorthand_arrow, + ACTIONS(1008), 1, + anon_sym_EQ, + ACTIONS(1028), 1, + anon_sym_LPAREN, + ACTIONS(1076), 1, + sym_identifier, + ACTIONS(1080), 1, + anon_sym_function, + STATE(1703), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1078), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(862), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(888), 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(873), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [89] = 4, + ACTIONS(1098), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(651), 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(653), 44, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + 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, + [162] = 14, + ACTIONS(1028), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, + anon_sym_function, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1039), 1, + sym_identifier, + ACTIONS(1045), 1, + sym__shorthand_arrow, + ACTIONS(1049), 1, + anon_sym_RBRACK, + ACTIONS(1052), 1, + anon_sym_EQ, + ACTIONS(1063), 1, + anon_sym_COMMA, + STATE(1765), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1041), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(862), 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(888), 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(873), 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, + [255] = 12, + ACTIONS(886), 1, + anon_sym_EQ_GT, + ACTIONS(890), 1, + sym__shorthand_arrow, + ACTIONS(992), 1, + anon_sym_function, + ACTIONS(1008), 1, + anon_sym_EQ, + ACTIONS(1028), 1, + anon_sym_LPAREN, + ACTIONS(1076), 1, + sym_identifier, + STATE(1703), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1078), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(862), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(888), 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(873), 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, + [344] = 4, + ACTIONS(627), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(617), 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(619), 44, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + 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, + [417] = 13, + ACTIONS(886), 1, + anon_sym_EQ_GT, + ACTIONS(890), 1, + sym__shorthand_arrow, + ACTIONS(1006), 1, + anon_sym_COLON, + ACTIONS(1008), 1, + anon_sym_EQ, + ACTIONS(1068), 1, + sym_identifier, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, + anon_sym_LBRACK, + STATE(1536), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(862), 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(888), 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(873), 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, + [507] = 12, + ACTIONS(1024), 1, + sym_identifier, + ACTIONS(1028), 1, + anon_sym_LPAREN, + ACTIONS(1031), 1, + anon_sym_EQ, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1037), 1, + sym__shorthand_arrow, + ACTIONS(1100), 1, + anon_sym_function, + STATE(1748), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1026), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(862), 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(888), 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(873), 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, + [595] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(637), 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(639), 44, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + 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, + [665] = 13, + ACTIONS(886), 1, + anon_sym_EQ_GT, + ACTIONS(890), 1, + sym__shorthand_arrow, + ACTIONS(1008), 1, + anon_sym_EQ, + ACTIONS(1016), 1, + anon_sym_COLON, + ACTIONS(1068), 1, + sym_identifier, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, + anon_sym_LBRACK, + STATE(1493), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(862), 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(888), 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(873), 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, + [755] = 14, + ACTIONS(1024), 1, + sym_identifier, + ACTIONS(1028), 1, + anon_sym_LPAREN, + ACTIONS(1031), 1, + anon_sym_EQ, + ACTIONS(1033), 1, + anon_sym_function, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1037), 1, + sym__shorthand_arrow, + ACTIONS(1090), 1, + anon_sym_in, + ACTIONS(1093), 1, + anon_sym_of, + STATE(1748), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1026), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(862), 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(888), 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(873), 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, + [847] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(651), 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(653), 44, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + 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, + [917] = 12, + ACTIONS(1028), 1, + anon_sym_LPAREN, + ACTIONS(1100), 1, + anon_sym_function, + ACTIONS(1102), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_EQ, + ACTIONS(1108), 1, + anon_sym_EQ_GT, + ACTIONS(1110), 1, + sym__shorthand_arrow, + STATE(1824), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1104), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(862), 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(888), 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(873), 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, + [1005] = 12, + ACTIONS(1028), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, + anon_sym_function, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1112), 1, + sym_identifier, + ACTIONS(1116), 1, + anon_sym_EQ, + ACTIONS(1118), 1, + sym__shorthand_arrow, + STATE(2117), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1114), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(862), 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(888), 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(873), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_of, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1093] = 5, + ACTIONS(1088), 1, + anon_sym_finally, + STATE(453), 1, + sym_finally_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1120), 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(1122), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [1167] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(633), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_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(635), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [1236] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(637), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_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(639), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [1305] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1124), 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, + 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(1126), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [1374] = 4, + ACTIONS(707), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(699), 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(701), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [1445] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1128), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_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(1130), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [1514] = 4, + ACTIONS(667), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(659), 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(661), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [1585] = 4, + ACTIONS(649), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(641), 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(643), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [1656] = 14, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1043), 1, + anon_sym_EQ, + ACTIONS(1045), 1, + sym__shorthand_arrow, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, + anon_sym_LBRACK, + ACTIONS(1090), 1, + anon_sym_in, + ACTIONS(1093), 1, + anon_sym_of, + ACTIONS(1132), 1, + sym_identifier, + STATE(1493), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1293), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(862), 13, + 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(888), 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(873), 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, + [1747] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1134), 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(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_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_finally, + 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, + [1816] = 4, + ACTIONS(1138), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(651), 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(653), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [1887] = 5, + ACTIONS(1144), 1, + anon_sym_else, + STATE(447), 1, + sym_else_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1140), 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(1142), 41, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_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, + [1960] = 4, + ACTIONS(1146), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(617), 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(619), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2031] = 4, + ACTIONS(697), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(689), 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(691), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2102] = 4, + ACTIONS(677), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(669), 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(671), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2173] = 4, + ACTIONS(727), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(719), 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(721), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2244] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(629), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_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(631), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2313] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1152), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1148), 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(1150), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2384] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1154), 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(1156), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_finally, + 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, + [2453] = 4, + ACTIONS(687), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(679), 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(681), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2524] = 4, + ACTIONS(717), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(709), 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(711), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2595] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(651), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_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(653), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2664] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1158), 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(1160), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2732] = 3, + 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), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2800] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1166), 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(1168), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2868] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1170), 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(1172), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [2936] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1174), 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(1176), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3004] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1178), 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(1180), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3072] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1170), 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(1172), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3140] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1182), 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(1184), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3208] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1186), 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(1188), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3276] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1170), 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(1172), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3344] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1190), 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(1192), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3412] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1194), 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(1196), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3480] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1170), 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(1172), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3548] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1170), 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(1172), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3616] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1170), 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(1172), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3684] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1198), 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(1200), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3752] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1202), 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(1204), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3820] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1206), 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(1208), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3888] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1206), 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(1208), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [3956] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1210), 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(1212), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4024] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1214), 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(1216), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4092] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1218), 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(1220), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4160] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1222), 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(1224), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4228] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1226), 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(1228), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4296] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 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(1232), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4364] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1234), 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(1236), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4432] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1238), 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(1240), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4500] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1242), 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(1244), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4568] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1246), 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(1248), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4636] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1250), 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(1252), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4704] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1254), 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(1256), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4772] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1258), 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(1260), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4840] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1262), 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(1264), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4908] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1266), 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(1268), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [4976] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1270), 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(1272), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5044] = 12, + ACTIONS(886), 1, + anon_sym_EQ_GT, + ACTIONS(890), 1, + sym__shorthand_arrow, + ACTIONS(1008), 1, + anon_sym_EQ, + ACTIONS(1068), 1, + sym_identifier, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, + anon_sym_LBRACK, + STATE(1493), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(862), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + 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(888), 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(873), 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, + [5130] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1274), 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(1276), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5198] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1278), 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(1280), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5266] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1282), 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(1284), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5334] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1286), 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(1288), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5402] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1290), 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(1292), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5470] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1294), 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(1296), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5538] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1286), 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(1288), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5606] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1298), 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(1300), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5674] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1302), 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(1304), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5742] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1306), 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(1308), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5810] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1310), 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(1312), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5878] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1314), 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(1316), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [5946] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 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(1320), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6014] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1322), 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(1324), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6082] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1326), 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(1328), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6150] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1330), 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(1332), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6218] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1334), 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(1336), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6286] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1338), 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(1340), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6354] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1342), 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(1344), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6422] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1338), 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(1340), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6490] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1346), 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(1348), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6558] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1350), 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(1352), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6626] = 12, + ACTIONS(886), 1, + anon_sym_EQ_GT, + ACTIONS(890), 1, + sym__shorthand_arrow, + ACTIONS(1008), 1, + anon_sym_EQ, + ACTIONS(1068), 1, + sym_identifier, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, + anon_sym_LBRACK, + STATE(1536), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(862), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + 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(888), 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(873), 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, + [6712] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 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(1356), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6780] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1358), 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(1360), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6848] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1362), 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(1364), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6916] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1366), 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(1368), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [6984] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1370), 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(1372), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [7052] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1374), 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(1376), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [7120] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1378), 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(1380), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [7188] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1382), 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(1384), 42, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_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, + [7256] = 12, + ACTIONS(875), 1, + anon_sym_COLON, + ACTIONS(894), 1, + anon_sym_RBRACE, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1393), 1, + anon_sym_EQ, + ACTIONS(1395), 1, + anon_sym_EQ_GT, + ACTIONS(1399), 1, + sym__shorthand_arrow, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 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(1397), 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(1386), 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, + [7341] = 7, + ACTIONS(1031), 1, + anon_sym_EQ, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1037), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(888), 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(862), 20, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(873), 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, + [7416] = 12, + ACTIONS(864), 1, + anon_sym_RBRACE, + ACTIONS(875), 1, + anon_sym_COLON, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1393), 1, + anon_sym_EQ, + ACTIONS(1395), 1, + anon_sym_EQ_GT, + ACTIONS(1399), 1, + sym__shorthand_arrow, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1689), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 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(1397), 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(1386), 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, + [7501] = 12, + ACTIONS(875), 1, + anon_sym_COLON, + ACTIONS(902), 1, + anon_sym_RBRACE, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1393), 1, + anon_sym_EQ, + ACTIONS(1395), 1, + anon_sym_EQ_GT, + ACTIONS(1399), 1, + sym__shorthand_arrow, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 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(1397), 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(1386), 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, + [7586] = 12, + ACTIONS(875), 1, + anon_sym_COLON, + ACTIONS(904), 1, + anon_sym_RBRACE, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1393), 1, + anon_sym_EQ, + ACTIONS(1395), 1, + anon_sym_EQ_GT, + ACTIONS(1399), 1, + sym__shorthand_arrow, + STATE(1619), 1, + aux_sym_object_repeat1, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 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(1397), 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(1386), 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, + [7671] = 7, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_EQ_GT, + ACTIONS(1405), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1386), 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, + ACTIONS(1388), 20, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7746] = 13, + ACTIONS(1031), 1, + anon_sym_EQ, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1037), 1, + sym__shorthand_arrow, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1090), 1, + anon_sym_in, + ACTIONS(1093), 1, + anon_sym_of, + ACTIONS(1407), 1, + sym_identifier, + ACTIONS(1409), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1688), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(862), 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(888), 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(873), 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, + [7832] = 7, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1043), 1, + anon_sym_EQ, + ACTIONS(1045), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(888), 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(862), 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(873), 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, + [7906] = 7, + ACTIONS(1403), 1, + anon_sym_EQ_GT, + ACTIONS(1412), 1, + anon_sym_EQ, + ACTIONS(1414), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1388), 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(1386), 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, + [7980] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1416), 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(1418), 35, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8045] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1130), 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(1128), 35, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8110] = 7, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_EQ_GT, + ACTIONS(1405), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1388), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_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(1386), 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, + [8183] = 7, + ACTIONS(1031), 1, + anon_sym_EQ, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1037), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(888), 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(862), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_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(873), 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, + [8256] = 5, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1386), 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, + ACTIONS(1388), 20, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8325] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1420), 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(1422), 35, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8390] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1424), 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(1426), 35, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8455] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1428), 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(1430), 35, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8520] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1432), 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(1434), 35, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8585] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1436), 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(1438), 35, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8650] = 8, + ACTIONS(1016), 1, + anon_sym_COLON, + ACTIONS(1395), 1, + anon_sym_EQ_GT, + ACTIONS(1399), 1, + sym__shorthand_arrow, + ACTIONS(1440), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1388), 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(1386), 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, + [8724] = 5, + ACTIONS(1412), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1388), 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(1386), 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, + [8792] = 8, + ACTIONS(1006), 1, + anon_sym_COLON, + ACTIONS(1395), 1, + anon_sym_EQ_GT, + ACTIONS(1399), 1, + sym__shorthand_arrow, + ACTIONS(1440), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1388), 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(1386), 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, + [8866] = 8, + ACTIONS(886), 1, + anon_sym_EQ_GT, + ACTIONS(890), 1, + sym__shorthand_arrow, + ACTIONS(1006), 1, + anon_sym_COLON, + ACTIONS(1008), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(888), 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(862), 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(873), 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, + [8940] = 8, + ACTIONS(1031), 1, + anon_sym_EQ, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1037), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1074), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(862), 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(888), 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(873), 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, + [9014] = 8, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1037), 1, + sym__shorthand_arrow, + ACTIONS(1065), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1063), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(862), 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(888), 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(873), 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, + [9088] = 8, + ACTIONS(1403), 1, + anon_sym_EQ_GT, + ACTIONS(1414), 1, + sym__shorthand_arrow, + ACTIONS(1445), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1442), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1388), 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(1397), 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(1386), 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, + [9162] = 8, + ACTIONS(1403), 1, + anon_sym_EQ_GT, + ACTIONS(1405), 1, + sym__shorthand_arrow, + ACTIONS(1450), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1448), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1388), 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(1397), 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(1386), 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, + [9236] = 7, + ACTIONS(886), 1, + anon_sym_EQ_GT, + ACTIONS(890), 1, + sym__shorthand_arrow, + ACTIONS(1008), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(888), 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(862), 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(873), 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, + [9308] = 8, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_EQ_GT, + ACTIONS(1405), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1453), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1388), 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(1397), 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(1386), 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] = 7, + ACTIONS(886), 1, + anon_sym_EQ_GT, + ACTIONS(1059), 1, + anon_sym_EQ, + ACTIONS(1061), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(888), 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(862), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(873), 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, + [9454] = 7, + ACTIONS(1395), 1, + anon_sym_EQ_GT, + ACTIONS(1455), 1, + anon_sym_EQ, + ACTIONS(1457), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1388), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1386), 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, + [9526] = 7, + ACTIONS(1395), 1, + anon_sym_EQ_GT, + ACTIONS(1399), 1, + sym__shorthand_arrow, + ACTIONS(1440), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1388), 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(1386), 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, + [9598] = 8, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1045), 1, + sym__shorthand_arrow, + ACTIONS(1052), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1049), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(862), 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(888), 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(873), 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, + [9672] = 8, + ACTIONS(886), 1, + anon_sym_EQ_GT, + ACTIONS(890), 1, + sym__shorthand_arrow, + ACTIONS(1008), 1, + anon_sym_EQ, + ACTIONS(1016), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(888), 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(862), 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(873), 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, + [9746] = 5, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1388), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_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(1386), 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, + [9813] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1461), 15, + anon_sym_LBRACE, + 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(1459), 39, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_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, + [9876] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1416), 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(1418), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [9939] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1465), 15, + anon_sym_LBRACE, + 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(1463), 39, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_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, + [10002] = 9, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1043), 1, + anon_sym_EQ, + ACTIONS(1045), 1, + sym__shorthand_arrow, + ACTIONS(1090), 1, + anon_sym_in, + ACTIONS(1467), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(862), 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(888), 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(873), 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, + [10077] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1471), 15, + anon_sym_LBRACE, + 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(1469), 39, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_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, + [10140] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1432), 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(1434), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [10203] = 9, + ACTIONS(1403), 1, + anon_sym_EQ_GT, + ACTIONS(1412), 1, + anon_sym_EQ, + ACTIONS(1414), 1, + sym__shorthand_arrow, + ACTIONS(1473), 1, + anon_sym_in, + ACTIONS(1476), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 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(1397), 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(1386), 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, + [10278] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1480), 15, + anon_sym_LBRACE, + 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(1478), 39, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_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, + [10341] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1128), 15, + anon_sym_LBRACE, + 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(1130), 39, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_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, + [10404] = 8, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1043), 1, + anon_sym_EQ, + ACTIONS(1045), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1095), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(862), 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(888), 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(873), 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, + [10477] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1420), 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(1422), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [10540] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1424), 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(1426), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [10603] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1130), 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(1128), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [10666] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1428), 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(1430), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [10729] = 8, + ACTIONS(1403), 1, + anon_sym_EQ_GT, + ACTIONS(1412), 1, + anon_sym_EQ, + ACTIONS(1414), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1482), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1388), 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(1397), 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(1386), 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, + [10802] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1461), 15, + anon_sym_LBRACE, + 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(1459), 39, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_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, + [10865] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1436), 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(1438), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [10928] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1461), 15, + anon_sym_LBRACE, + 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(1459), 39, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_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, + [10991] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1487), 15, + anon_sym_LBRACE, + 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(1485), 39, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_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, + [11054] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1461), 15, + anon_sym_LBRACE, + 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(1459), 39, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_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, + [11117] = 5, + ACTIONS(1455), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1388), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1386), 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, + [11183] = 6, + ACTIONS(1450), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1448), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1388), 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(1397), 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(1386), 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, + [11251] = 5, + ACTIONS(1440), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1388), 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(1386), 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, + [11317] = 6, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1453), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1388), 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(1397), 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(1386), 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, + [11385] = 6, + ACTIONS(1445), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1442), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1388), 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(1397), 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(1386), 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, + [11453] = 9, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1045), 1, + sym__shorthand_arrow, + ACTIONS(1049), 1, + anon_sym_RBRACK, + ACTIONS(1052), 1, + anon_sym_EQ, + ACTIONS(1063), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(862), 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(888), 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(873), 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, + [11527] = 9, + ACTIONS(1403), 1, + anon_sym_EQ_GT, + ACTIONS(1414), 1, + sym__shorthand_arrow, + ACTIONS(1442), 1, + anon_sym_RBRACK, + ACTIONS(1445), 1, + anon_sym_EQ, + ACTIONS(1448), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 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(1397), 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(1386), 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, + [11601] = 7, + ACTIONS(1106), 1, + anon_sym_EQ, + ACTIONS(1108), 1, + anon_sym_EQ_GT, + ACTIONS(1110), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(862), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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(888), 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(873), 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, + [11670] = 7, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_EQ_GT, + ACTIONS(1405), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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(1397), 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(1386), 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, + [11739] = 9, + ACTIONS(1031), 1, + anon_sym_EQ, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1037), 1, + sym__shorthand_arrow, + ACTIONS(1090), 1, + anon_sym_in, + ACTIONS(1467), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(862), 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(888), 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(873), 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, + [11812] = 7, + ACTIONS(1489), 1, + anon_sym_EQ, + ACTIONS(1491), 1, + anon_sym_EQ_GT, + ACTIONS(1493), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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(1397), 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(1386), 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, + [11881] = 7, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1116), 1, + anon_sym_EQ, + ACTIONS(1118), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(862), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(888), 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(873), 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, + [11950] = 7, + ACTIONS(1412), 1, + anon_sym_EQ, + ACTIONS(1473), 1, + anon_sym_in, + ACTIONS(1476), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 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(1397), 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(1386), 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, + [12019] = 7, + ACTIONS(1031), 1, + anon_sym_EQ, + ACTIONS(1035), 1, + anon_sym_EQ_GT, + ACTIONS(1037), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(862), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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(888), 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(873), 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, + [12088] = 9, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(1403), 1, + anon_sym_EQ_GT, + ACTIONS(1405), 1, + sym__shorthand_arrow, + ACTIONS(1473), 1, + anon_sym_in, + ACTIONS(1476), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 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(1397), 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(1386), 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, + [12161] = 7, + ACTIONS(1403), 1, + anon_sym_EQ_GT, + ACTIONS(1495), 1, + anon_sym_EQ, + ACTIONS(1497), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1397), 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(1386), 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, + [12230] = 6, + ACTIONS(1412), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1482), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1388), 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(1397), 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(1386), 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, + [12297] = 7, + ACTIONS(1442), 1, + anon_sym_RBRACK, + ACTIONS(1445), 1, + anon_sym_EQ, + ACTIONS(1448), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 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(1397), 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(1386), 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, + [12365] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1420), 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(1422), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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, + [12424] = 5, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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(1397), 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(1386), 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, + [12487] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1436), 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(1438), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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, + [12546] = 7, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(1473), 1, + anon_sym_in, + ACTIONS(1476), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 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(1397), 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(1386), 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, + [12613] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1424), 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(1426), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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, + [12672] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1432), 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(1434), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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, + [12731] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1130), 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(1128), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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, + [12790] = 5, + ACTIONS(1495), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1397), 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(1386), 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, + [12853] = 5, + ACTIONS(1489), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1388), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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(1397), 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(1386), 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, + [12916] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1416), 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(1418), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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, + [12975] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1428), 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(1430), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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, + [13034] = 6, + ACTIONS(625), 1, + anon_sym_EQ, + ACTIONS(1499), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(623), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(619), 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(617), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + 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, + [13091] = 10, + ACTIONS(459), 1, + anon_sym_BQUOTE, + ACTIONS(1505), 1, + anon_sym_LPAREN, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1511), 1, + sym_optional_chain, + STATE(596), 1, + sym_template_string, + STATE(604), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1501), 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(1503), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + 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, + [13156] = 9, + ACTIONS(459), 1, + anon_sym_BQUOTE, + ACTIONS(1505), 1, + anon_sym_LPAREN, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1511), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(596), 2, + sym_template_string, + sym_arguments, + ACTIONS(1513), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + 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, + [13219] = 4, + ACTIONS(1517), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(619), 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(617), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13271] = 4, + ACTIONS(1519), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(653), 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(651), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13323] = 4, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1386), 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(1388), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13375] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1521), 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(1523), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13424] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(631), 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(629), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_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, + [13473] = 10, + ACTIONS(81), 1, + anon_sym_BQUOTE, + ACTIONS(1525), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1531), 1, + sym_optional_chain, + STATE(695), 1, + sym_template_string, + STATE(707), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1501), 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(1503), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [13536] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(693), 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(695), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13585] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(703), 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(705), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13634] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(713), 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(715), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13683] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(683), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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(685), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(501), 44, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_catch, - anon_sym_finally, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [13732] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(673), 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_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, - [71] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(675), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13781] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(519), 18, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(723), 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(725), 28, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13830] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(663), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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(665), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(521), 44, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_catch, - anon_sym_finally, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [13879] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1386), 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_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, - [142] = 13, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(882), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1388), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13928] = 4, + ACTIONS(1412), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1386), 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(1388), 27, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(885), 1, + 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, + [13979] = 5, + ACTIONS(1540), 1, anon_sym_EQ, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1535), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1533), 12, + anon_sym_STAR, anon_sym_in, - ACTIONS(947), 1, + 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(1538), 23, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_of, - STATE(1707), 1, - sym_formal_parameters, + 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, + [14032] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1542), 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(1544), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14081] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1546), 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(1548), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14130] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(880), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 13, + ACTIONS(1550), 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(1552), 28, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 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(775), 20, + [14179] = 5, + ACTIONS(1561), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1556), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1554), 12, 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, + ACTIONS(1559), 23, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [233] = 12, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(889), 1, - anon_sym_EQ_GT, - STATE(1707), 1, - sym_formal_parameters, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14232] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(949), 3, + ACTIONS(1563), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1565), 28, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(880), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 11, - sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 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(775), 21, + [14281] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1567), 12, 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, - [322] = 13, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, - anon_sym_EQ, - ACTIONS(927), 1, - anon_sym_COMMA, - STATE(1707), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(880), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 11, + ACTIONS(1569), 28, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 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(775), 21, + [14330] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1571), 12, 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, - [412] = 11, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(923), 1, - sym_identifier, - ACTIONS(932), 1, - anon_sym_EQ_GT, - STATE(1619), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(925), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 13, + ACTIONS(1573), 28, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 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(775), 21, + [14379] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(635), 12, 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, - [498] = 11, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(858), 1, - anon_sym_function, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(907), 1, - sym_identifier, - STATE(1633), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(909), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 13, - sym__automatic_semicolon, + ACTIONS(633), 28, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 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(775), 21, + [14428] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1575), 12, 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, + ACTIONS(1577), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [584] = 5, - ACTIONS(940), 1, - anon_sym_finally, - STATE(375), 1, - sym_finally_clause, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14477] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(952), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1579), 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(1581), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(954), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [658] = 11, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(907), 1, - sym_identifier, - ACTIONS(911), 1, - anon_sym_function, - STATE(1633), 1, - sym_formal_parameters, + [14526] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(909), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 13, - sym__automatic_semicolon, + ACTIONS(1583), 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(1585), 28, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 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(775), 21, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14575] = 4, + ACTIONS(1591), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1587), 13, 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, - [744] = 4, - ACTIONS(956), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(503), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1589), 26, + 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_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(505), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [815] = 4, - ACTIONS(958), 1, - sym__automatic_semicolon, + [14626] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(499), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1593), 12, + anon_sym_STAR, + anon_sym_in, 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(501), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [886] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(499), 18, - sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1595), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(501), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [955] = 4, - ACTIONS(539), 1, - sym__automatic_semicolon, + [14675] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(531), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1597), 12, + anon_sym_STAR, + anon_sym_in, 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(533), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1026] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(960), 18, - ts_builtin_sym_end, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1599), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(962), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [1095] = 3, + [14724] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(519), 18, - sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(645), 12, + anon_sym_STAR, + anon_sym_in, 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(521), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1164] = 4, - ACTIONS(549), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(541), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(647), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_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(543), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [1235] = 3, + 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, + [14773] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(964), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1601), 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(1603), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(966), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_finally, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [14822] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1605), 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_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, - [1304] = 12, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(870), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1607), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - ACTIONS(895), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, anon_sym_LBRACK, - STATE(1260), 1, - sym_variable_declarator, + 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, + [14871] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 14, - sym__automatic_semicolon, + ACTIONS(1609), 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(1611), 28, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 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(775), 21, + [14920] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1613), 12, 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, - [1391] = 13, - ACTIONS(882), 1, + ACTIONS(1615), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(923), 1, - sym_identifier, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - STATE(1619), 1, - sym_formal_parameters, + 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, + [14969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(925), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 11, + ACTIONS(631), 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(629), 28, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 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(775), 20, + [15018] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1617), 12, 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, + ACTIONS(1619), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1480] = 5, - ACTIONS(972), 1, - anon_sym_else, - STATE(404), 1, - sym_else_clause, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15067] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(968), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1621), 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(1623), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(970), 41, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_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, - [1553] = 3, + [15116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(974), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1625), 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(1627), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(976), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_finally, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [15165] = 3, + 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_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, - [1622] = 4, - ACTIONS(579), 1, - sym__automatic_semicolon, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1631), 28, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15214] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(571), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1633), 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(1635), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(573), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [1693] = 3, + [15263] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(523), 18, - sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1637), 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(1639), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(525), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [1762] = 4, - ACTIONS(589), 1, - sym__automatic_semicolon, + [15312] = 4, + ACTIONS(1540), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(581), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1533), 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(1538), 27, + 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_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(583), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [1833] = 4, - ACTIONS(599), 1, - sym__automatic_semicolon, + [15363] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(591), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1641), 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(1643), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(593), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [1904] = 4, - ACTIONS(609), 1, - sym__automatic_semicolon, + [15412] = 4, + ACTIONS(1561), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(601), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1554), 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(1559), 27, + 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_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(603), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [15463] = 4, + ACTIONS(625), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(621), 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_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, - [1975] = 12, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(864), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(623), 27, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(895), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, anon_sym_LBRACK, - STATE(1260), 1, - sym_variable_declarator, + 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, + [15514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 14, - sym__automatic_semicolon, + ACTIONS(1645), 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(1647), 28, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 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(775), 21, + [15563] = 5, + ACTIONS(625), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1649), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(621), 12, 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, - [2062] = 4, - ACTIONS(559), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(551), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(623), 23, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(553), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [2133] = 4, - ACTIONS(569), 1, - sym__automatic_semicolon, + [15616] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(561), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(653), 12, + anon_sym_STAR, + anon_sym_in, 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(563), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2204] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(527), 18, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(651), 28, sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, 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(529), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, + anon_sym_of, 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, - [2273] = 11, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(978), 1, - sym_identifier, - ACTIONS(982), 1, - anon_sym_EQ, - ACTIONS(984), 1, - anon_sym_EQ_GT, - STATE(1704), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(980), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 11, - sym__ternary_qmark, 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, - ACTIONS(790), 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(775), 22, + [15665] = 4, + ACTIONS(1652), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(653), 12, anon_sym_STAR, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2358] = 11, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(978), 1, - sym_identifier, - ACTIONS(984), 1, - anon_sym_EQ_GT, - STATE(1704), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(980), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 11, + ACTIONS(651), 27, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, anon_sym_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, - ACTIONS(790), 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(775), 22, + [15716] = 9, + ACTIONS(81), 1, + anon_sym_BQUOTE, + ACTIONS(1525), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1531), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(695), 2, + sym_template_string, + sym_arguments, + ACTIONS(1513), 12, anon_sym_STAR, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1515), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2443] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [15777] = 4, + ACTIONS(1654), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(990), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(986), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(619), 12, + anon_sym_STAR, + anon_sym_in, 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(988), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2514] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(992), 18, - sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(617), 27, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, 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(994), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, + anon_sym_of, 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, - [2583] = 3, + 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, + [15828] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(996), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(639), 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(637), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_while, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(998), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [2651] = 3, + [15877] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1000), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(653), 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(651), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1002), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [2719] = 3, + [15926] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1004), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(639), 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(637), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1006), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [2787] = 3, + [15975] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1008), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(635), 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(633), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_while, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1010), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [2855] = 3, + [16024] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1012), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1656), 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(1658), 28, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1014), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [2923] = 3, + [16073] = 6, + ACTIONS(625), 1, + anon_sym_EQ, + ACTIONS(1660), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1016), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(623), 2, 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(1018), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(619), 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_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, - [2991] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(617), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [16127] = 4, + ACTIONS(625), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1020), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(621), 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(623), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1022), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [3059] = 3, + [16177] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1024), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1641), 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(1643), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1026), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [16225] = 6, + ACTIONS(625), 1, + anon_sym_EQ, + ACTIONS(1662), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(617), 2, anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(621), 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_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, - [3127] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(623), 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, + anon_sym_BQUOTE, + [16279] = 4, + ACTIONS(1401), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1028), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1386), 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(1388), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1030), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [3195] = 3, + [16329] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1032), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1645), 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(1647), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1034), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [3263] = 3, + [16377] = 4, + ACTIONS(1561), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1036), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1554), 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(1559), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1038), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [16427] = 4, + ACTIONS(1499), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(619), 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_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, - [3331] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(617), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + 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, + [16477] = 4, + ACTIONS(1664), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1040), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(653), 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(651), 26, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1042), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [3399] = 3, + [16527] = 4, + ACTIONS(1540), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1044), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1533), 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(1538), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1046), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [16577] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1666), 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_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, - [3467] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1668), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + 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, + [16624] = 4, + ACTIONS(1455), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1048), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1386), 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(1388), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1050), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [3535] = 3, + [16673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1052), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1670), 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(1672), 26, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1054), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [16720] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1674), 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_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, - [3603] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1676), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + 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, + [16767] = 7, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1056), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1678), 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(1680), 21, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + 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, + [16822] = 6, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1686), 12, + anon_sym_STAR, + anon_sym_in, 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(1058), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [3671] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1688), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + 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, + [16875] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1060), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1386), 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(1388), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1062), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [3739] = 3, + [16922] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1064), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1617), 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(1619), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1066), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [3807] = 3, + [16969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1068), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(645), 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(647), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1070), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [3875] = 3, + [17016] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1072), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1690), 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(1692), 26, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1074), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [17063] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1690), 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_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, - [3943] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1692), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + 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, + [17110] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1690), 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(1692), 26, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1078), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [17157] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1690), 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_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, - [4011] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1692), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + 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, + [17204] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1080), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1694), 12, + anon_sym_STAR, + anon_sym_in, 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(1082), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [4079] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 26, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1078), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [17251] = 5, + ACTIONS(1698), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(689), 2, anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(693), 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_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, - [4147] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1084), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(695), 23, + sym__ternary_qmark, + anon_sym_COMMA, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1086), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [4215] = 3, + [17302] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1088), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + 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), 26, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1090), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [4283] = 3, + [17349] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1092), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1704), 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(1706), 26, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1094), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [4351] = 3, + [17396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1096), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1708), 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(1710), 26, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1098), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [17443] = 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, - 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, - [4419] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1714), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + 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, + [17490] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1716), 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(1718), 26, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1078), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [17537] = 5, + ACTIONS(1720), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(699), 2, anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(703), 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_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, - [4487] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1100), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(705), 23, + sym__ternary_qmark, + anon_sym_COMMA, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1102), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [4555] = 3, + [17588] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + 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), 26, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1078), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [17635] = 5, + ACTIONS(1726), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(709), 2, anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(713), 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_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, - [4623] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1104), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(715), 23, + sym__ternary_qmark, + anon_sym_COMMA, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1106), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [4691] = 3, + [17686] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1108), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1633), 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(1635), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1110), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [4759] = 3, + [17733] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(693), 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(695), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1078), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [4827] = 3, + anon_sym_BQUOTE, + [17780] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1112), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(703), 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(705), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1114), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [4895] = 3, + [17827] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(713), 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(715), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1078), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [4963] = 3, + [17874] = 4, + ACTIONS(1440), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1116), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1386), 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(1388), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1118), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [17923] = 5, + ACTIONS(1728), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(679), 2, anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(683), 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_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, - [5031] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1116), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(685), 23, + sym__ternary_qmark, + anon_sym_COMMA, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1118), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [17974] = 5, + ACTIONS(1730), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(669), 2, anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(673), 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_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, - [5099] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1120), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(675), 23, + sym__ternary_qmark, + anon_sym_COMMA, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1122), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [18025] = 5, + ACTIONS(1732), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(719), 2, anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(723), 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_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, - [5167] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1124), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(725), 23, + sym__ternary_qmark, + anon_sym_COMMA, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1126), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [5235] = 3, + [18076] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1128), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(683), 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(685), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1130), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [5303] = 3, + [18123] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1132), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1613), 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(1615), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1134), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [5371] = 3, + [18170] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1136), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(723), 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(725), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1138), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [18217] = 5, + ACTIONS(1734), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(659), 2, anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(663), 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_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, - [5439] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1140), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(665), 23, + sym__ternary_qmark, + anon_sym_COMMA, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1142), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [5507] = 3, + [18268] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1144), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1567), 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(1569), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1146), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [5575] = 3, + [18315] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1148), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(663), 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(665), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1150), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [18362] = 5, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1453), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1386), 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_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, - [5643] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1388), 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, + [18413] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1152), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1563), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1565), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1154), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [5711] = 3, + [18460] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1156), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1546), 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(1548), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1158), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [5779] = 3, + [18507] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1156), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1621), 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(1623), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1158), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [5847] = 3, + [18554] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1160), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1625), 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(1627), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1162), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [18601] = 3, + 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_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, - [5915] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1631), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [18648] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1164), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1542), 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(1544), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1166), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [18695] = 5, + ACTIONS(1540), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1736), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1533), 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_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, - [5983] = 13, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1538), 21, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, - anon_sym_of, - ACTIONS(1168), 1, - sym_identifier, - STATE(1260), 1, - sym_variable_declarator, + 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, + [18746] = 5, + ACTIONS(1561), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1099), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 13, + ACTIONS(1738), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1554), 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(1559), 21, 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, anon_sym_BQUOTE, - ACTIONS(790), 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(775), 20, + [18797] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1740), 12, 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, + ACTIONS(1742), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + 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, - [6071] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [18844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1170), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1513), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 26, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1172), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [6139] = 3, + [18891] = 5, + ACTIONS(625), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1174), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1744), 4, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(621), 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(623), 21, + sym__ternary_qmark, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1176), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [18942] = 5, + ACTIONS(1746), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(641), 2, anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(645), 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_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, - [6207] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1178), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(647), 23, + sym__ternary_qmark, + anon_sym_COMMA, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1180), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [6275] = 3, + [18993] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1182), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1550), 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(1552), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1184), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [6343] = 3, + [19040] = 5, + ACTIONS(1445), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1186), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1442), 4, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1386), 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(1388), 21, + sym__ternary_qmark, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1188), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [6411] = 3, + [19091] = 4, + ACTIONS(1748), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1190), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1587), 14, + anon_sym_STAR, + anon_sym_in, + anon_sym_of, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + ACTIONS(1589), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, 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_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1192), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [6479] = 3, + [19140] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1012), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1637), 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(1639), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1014), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [6547] = 3, + [19187] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1194), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(653), 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(651), 26, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1196), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [19234] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(639), 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_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, - [6615] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(637), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + 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, + [19281] = 5, + ACTIONS(1450), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1198), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1448), 4, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1386), 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(1388), 21, + sym__ternary_qmark, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1200), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [19332] = 7, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1750), 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_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, - [6683] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1752), 21, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + 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, + [19387] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1202), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1571), 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(1573), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1204), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [19434] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1754), 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_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, - [6751] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1756), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + 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, + [19481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1206), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1575), 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(1577), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1208), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [6819] = 3, + [19528] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1210), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1579), 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(1581), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1212), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [6887] = 3, + [19575] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1583), 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(1585), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1216), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_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, - [6955] = 3, + [19622] = 4, + ACTIONS(1748), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1218), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1587), 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(1589), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, 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_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1220), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [19671] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1656), 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_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, - [7023] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1658), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [19718] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1222), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1593), 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(1595), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1224), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [19765] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1597), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_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, - [7091] = 11, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(895), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1599), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - STATE(1260), 1, - sym_variable_declarator, + 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, + [19812] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 13, + ACTIONS(1601), 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(1603), 26, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 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(775), 21, + [19859] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1521), 12, 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, + ACTIONS(1523), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7174] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [19906] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1226), 21, + ACTIONS(1605), 12, 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(1228), 36, + ACTIONS(1607), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_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, - [7240] = 3, + [19953] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1230), 21, + ACTIONS(1609), 12, 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(1232), 36, + ACTIONS(1611), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_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, - [7306] = 3, + [20000] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1234), 21, + ACTIONS(673), 12, 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(1236), 36, + ACTIONS(675), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_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, - [7372] = 5, - ACTIONS(1242), 1, - anon_sym_EQ, + [20047] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1760), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [20133] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1702), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [20219] = 11, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1796), 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, - anon_sym_QMARK_QMARK, - ACTIONS(1240), 21, + ACTIONS(1794), 18, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_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, - [7442] = 3, + [20281] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1246), 21, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1668), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [20367] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1710), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [20453] = 6, + ACTIONS(1540), 1, + anon_sym_EQ, + ACTIONS(1736), 1, + anon_sym_of, + ACTIONS(1798), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1533), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1538), 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, + anon_sym_BQUOTE, + [20505] = 6, + ACTIONS(1561), 1, + anon_sym_EQ, + ACTIONS(1738), 1, + anon_sym_of, + ACTIONS(1801), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1248), 36, + ACTIONS(1559), 23, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_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, - [7508] = 11, - ACTIONS(766), 1, + [20557] = 17, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1796), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 11, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(777), 1, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(1250), 1, - anon_sym_LPAREN, - ACTIONS(1253), 1, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [20631] = 6, + ACTIONS(625), 1, anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(1744), 1, + anon_sym_of, + ACTIONS(1804), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 15, - sym__automatic_semicolon, + ACTIONS(621), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(623), 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, anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + [20683] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - [7590] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(994), 21, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, 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_SLASH, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(992), 36, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1714), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [20769] = 18, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, 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, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7656] = 11, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(1250), 1, - anon_sym_LPAREN, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 15, - sym__automatic_semicolon, + ACTIONS(1794), 11, 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_QMARK_QMARK, + [20845] = 19, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1758), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 10, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [20923] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - [7738] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1257), 21, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, 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_SLASH, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1259), 36, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1718), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [21009] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, 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, - [7804] = 3, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1261), 21, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1807), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [21095] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1263), 36, + ACTIONS(1792), 1, sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1809), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [21181] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, 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, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7870] = 11, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(800), 1, + ACTIONS(1756), 6, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1250), 1, - anon_sym_LPAREN, - ACTIONS(1253), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [21267] = 6, + ACTIONS(1412), 1, anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(1473), 1, + anon_sym_in, + ACTIONS(1476), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1386), 11, 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, - [7952] = 6, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 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(764), 19, + ACTIONS(1388), 23, 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, - ACTIONS(775), 20, + [21319] = 10, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1796), 10, 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, - [8023] = 6, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 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(764), 19, + ACTIONS(1794), 18, 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_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(775), 20, + [21379] = 5, + ACTIONS(1412), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1482), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1386), 12, 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, - [8094] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 19, + ACTIONS(1388), 21, 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, - ACTIONS(1238), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + [21429] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - [8165] = 6, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_EQ, + ACTIONS(1792), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 19, - sym__ternary_qmark, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1811), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [21515] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, 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(1238), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - [8236] = 12, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, - anon_sym_of, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, - anon_sym_LBRACK, + ACTIONS(1792), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1313), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 11, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1813), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [21601] = 8, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 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(775), 20, + ACTIONS(1796), 12, 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, + ACTIONS(1794), 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8319] = 5, - ACTIONS(1267), 1, - anon_sym_EQ, + [21657] = 13, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 19, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1796), 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(1794), 16, 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_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, + [21723] = 15, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1758), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1796), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1794), 13, + 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, + [21793] = 21, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8387] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1274), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, 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, - [8450] = 3, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 8, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + [21875] = 5, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1818), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1234), 21, + ACTIONS(1386), 12, 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(1236), 33, + ACTIONS(1388), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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_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, - [8513] = 3, + [21925] = 19, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1261), 21, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, 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_SLASH, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1263), 33, - sym__automatic_semicolon, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 10, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [22003] = 20, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, 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, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [8576] = 6, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, - anon_sym_EQ, + ACTIONS(1794), 9, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [22083] = 5, + ACTIONS(1820), 1, + anon_sym_LPAREN, + ACTIONS(1823), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 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(764), 17, + ACTIONS(1571), 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(1573), 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, - ACTIONS(775), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + [22133] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - [8645] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1280), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1278), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, 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, - [8708] = 6, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1825), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [22219] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, 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(1238), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8777] = 3, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1827), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [22305] = 8, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1226), 21, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 12, 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(1228), 33, - sym__automatic_semicolon, + ACTIONS(1794), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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_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_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, - [8840] = 6, - ACTIONS(891), 1, + [22361] = 6, + ACTIONS(625), 1, anon_sym_EQ, - ACTIONS(921), 1, - anon_sym_EQ_GT, + ACTIONS(1829), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 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(764), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(623), 2, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(619), 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(617), 20, + sym__ternary_qmark, + anon_sym_LBRACE, 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, - ACTIONS(775), 20, + [22412] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1708), 12, 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, - [8909] = 7, - ACTIONS(870), 1, - anon_sym_COLON, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 16, + ACTIONS(1710), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + [22457] = 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_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, - [8980] = 7, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(870), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 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(764), 16, + ACTIONS(1714), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(775), 20, + [22502] = 4, + ACTIONS(1660), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(619), 12, 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, - [9051] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1284), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, - sym__automatic_semicolon, + ACTIONS(617), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + [22549] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1690), 12, 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, - [9120] = 7, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(904), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(901), 4, + ACTIONS(1692), 24, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(764), 13, - sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 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(775), 20, + [22594] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1690), 12, 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, - [9191] = 7, - ACTIONS(864), 1, - anon_sym_COLON, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 16, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1692), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [9262] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [22639] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1257), 21, + ACTIONS(1694), 12, 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(1259), 33, + ACTIONS(1696), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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_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, - [9325] = 6, - ACTIONS(1284), 1, - anon_sym_EQ_GT, - ACTIONS(1286), 1, - anon_sym_EQ, + [22684] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, + ACTIONS(1690), 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(1692), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [22729] = 9, + ACTIONS(607), 1, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1831), 1, + anon_sym_LPAREN, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(1837), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(887), 2, + sym_template_string, + sym_arguments, + ACTIONS(1513), 12, 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, + ACTIONS(1515), 17, + sym__ternary_qmark, + anon_sym_LBRACE, + 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, - [9394] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [22786] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1513), 12, + anon_sym_STAR, + anon_sym_in, 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(1274), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [9457] = 6, - ACTIONS(917), 1, - anon_sym_EQ, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 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(764), 17, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(775), 20, + [22831] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1704), 12, 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, - [9526] = 5, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 18, + ACTIONS(1706), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + [22876] = 6, + ACTIONS(1535), 1, + anon_sym_RBRACK, + ACTIONS(1540), 1, + anon_sym_EQ, + ACTIONS(1736), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1533), 12, 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, - [9593] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1290), 15, - anon_sym_LBRACE, - 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(1288), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_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, - [9656] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1276), 15, - anon_sym_LBRACE, - 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(1274), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_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, - [9719] = 7, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1292), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(1538), 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, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [22927] = 6, + ACTIONS(1556), 1, + anon_sym_RBRACK, + ACTIONS(1561), 1, + anon_sym_EQ, + ACTIONS(1738), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 12, 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, - [9790] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1300), 15, - anon_sym_LBRACE, - 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(1298), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_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, - [9853] = 7, - ACTIONS(929), 1, - anon_sym_EQ, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(927), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(764), 13, + anon_sym_BANG_EQ, + ACTIONS(1559), 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, - ACTIONS(790), 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(775), 20, + [22978] = 6, + ACTIONS(625), 1, + anon_sym_EQ, + ACTIONS(1649), 1, + anon_sym_RBRACK, + ACTIONS(1744), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(621), 12, 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, - [9924] = 7, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(942), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(764), 13, + ACTIONS(623), 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, - ACTIONS(790), 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(775), 20, + [23029] = 6, + ACTIONS(1442), 1, + anon_sym_RBRACK, + ACTIONS(1445), 1, + anon_sym_EQ, + ACTIONS(1448), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1386), 12, 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, - [9995] = 7, - ACTIONS(1304), 1, - anon_sym_EQ, - ACTIONS(1307), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1302), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(1388), 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, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [23080] = 3, + 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_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, - [10066] = 7, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1307), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1309), 4, + ACTIONS(1724), 24, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, - sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [23125] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1740), 12, 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, - [10137] = 6, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 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(764), 17, + ACTIONS(1742), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [23170] = 10, + ACTIONS(607), 1, anon_sym_BQUOTE, - ACTIONS(775), 20, + ACTIONS(1831), 1, + anon_sym_LPAREN, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(1837), 1, + sym_optional_chain, + STATE(887), 1, + sym_template_string, + STATE(914), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1501), 12, 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, + ACTIONS(1503), 17, + sym__ternary_qmark, + anon_sym_LBRACE, + 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, - [10206] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [23229] = 7, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1750), 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(1752), 19, 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_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + [23282] = 7, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1678), 12, 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, + ACTIONS(1680), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [10275] = 3, + anon_sym_instanceof, + [23335] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(653), 12, + anon_sym_STAR, + anon_sym_in, 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(1274), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [10338] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1313), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(651), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, 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_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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1311), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_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, - [10401] = 3, + [23380] = 4, + ACTIONS(1843), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(992), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(653), 12, + anon_sym_STAR, + anon_sym_in, 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(994), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [10464] = 3, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(651), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [23427] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1246), 21, + ACTIONS(1716), 12, 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(1248), 33, + ACTIONS(1718), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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_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, - [10527] = 3, + [23472] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(994), 21, + ACTIONS(1754), 12, 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(992), 33, + ACTIONS(1756), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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_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, - [10590] = 3, + [23517] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1230), 21, + ACTIONS(1690), 12, 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(1232), 33, + ACTIONS(1692), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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_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, - [10653] = 7, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(864), 1, - anon_sym_COLON, - ACTIONS(866), 1, - anon_sym_EQ, + [23562] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 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(764), 16, + ACTIONS(1670), 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(1672), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(775), 20, + [23607] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1674), 12, 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, + ACTIONS(1676), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [10724] = 7, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [23652] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1315), 3, + ACTIONS(1666), 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(1668), 24, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1240), 13, - sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [23697] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(639), 12, 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, - [10794] = 8, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, + ACTIONS(637), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [23742] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 15, + 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), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + [23787] = 6, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1686), 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(1688), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, 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, + [23838] = 8, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 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_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1794), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [10866] = 5, - ACTIONS(1282), 1, - anon_sym_EQ, + anon_sym_instanceof, + [23892] = 24, + ACTIONS(99), 1, + anon_sym_STAR, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(111), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(1851), 1, + anon_sym_RBRACE, + ACTIONS(1853), 1, + anon_sym_LBRACK, + ACTIONS(1855), 1, + anon_sym_async, + ACTIONS(1859), 1, + anon_sym_static, + STATE(1115), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, + STATE(1628), 1, + aux_sym_object_pattern_repeat1, + STATE(1656), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, - sym__automatic_semicolon, + ACTIONS(1857), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1861), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1847), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1562), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1617), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1654), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2225), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [23978] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, + anon_sym_AMP_AMP, + ACTIONS(1869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, + anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1893), 1, sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1827), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + [24062] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, - anon_sym_LT_EQ, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1895), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [24146] = 4, + ACTIONS(1591), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1587), 14, anon_sym_STAR, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10932] = 7, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(949), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(764), 13, + anon_sym_instanceof, + ACTIONS(1589), 20, 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_instanceof, + anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 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(775), 20, + [24192] = 4, + ACTIONS(1489), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1386), 12, 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, - [11002] = 6, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1292), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(1388), 22, sym__ternary_qmark, + anon_sym_LBRACE, 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, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [24238] = 4, + ACTIONS(1540), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1533), 12, 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, - [11070] = 8, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(1323), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 15, + ACTIONS(1538), 22, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_LBRACE, 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, - ACTIONS(790), 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(775), 19, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + [24284] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - [11142] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, + ACTIONS(1893), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1813), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [24368] = 4, + ACTIONS(1561), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 12, 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, - [11210] = 6, - ACTIONS(1304), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1302), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(1559), 22, sym__ternary_qmark, + anon_sym_LBRACE, 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, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + [24414] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - [11278] = 5, - ACTIONS(1286), 1, - anon_sym_EQ, + ACTIONS(1893), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1756), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [24498] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - [11344] = 8, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, - anon_sym_EQ, - ACTIONS(927), 1, - anon_sym_COMMA, + ACTIONS(1893), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(764), 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, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 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(775), 20, + ACTIONS(1863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1718), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [24582] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - [11415] = 7, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, + ACTIONS(1893), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 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, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + ACTIONS(1811), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [24666] = 4, + ACTIONS(1897), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(653), 12, 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, - [11484] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1307), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(651), 22, sym__ternary_qmark, anon_sym_LBRACE, 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, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [24712] = 4, + ACTIONS(1899), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(619), 12, 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, - [11551] = 6, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 15, + ACTIONS(617), 22, sym__ternary_qmark, anon_sym_LBRACE, 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, - ACTIONS(790), 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(775), 20, + [24758] = 13, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1796), 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(1794), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [24822] = 4, + ACTIONS(1901), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1587), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, 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, - [11618] = 8, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1292), 1, - anon_sym_RBRACK, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(1302), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 13, + anon_sym_instanceof, + ACTIONS(1589), 21, sym__ternary_qmark, + anon_sym_LBRACE, 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_instanceof, + anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [24868] = 24, + ACTIONS(99), 1, + anon_sym_STAR, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(111), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(1853), 1, + anon_sym_LBRACK, + ACTIONS(1905), 1, + anon_sym_RBRACE, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_static, + STATE(1115), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, + STATE(1628), 1, + aux_sym_object_pattern_repeat1, + STATE(1656), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1857), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1911), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1903), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1562), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1617), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1654), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2225), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [24954] = 8, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 12, 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, - [11689] = 6, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1315), 3, + ACTIONS(1794), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1240), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + [25008] = 19, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, + anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 8, + 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, + [25084] = 20, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, + anon_sym_AMP_AMP, + ACTIONS(1871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11756] = 8, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1307), 1, - anon_sym_EQ_GT, - ACTIONS(1318), 1, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 13, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 7, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [25162] = 11, + ACTIONS(1527), 1, anon_sym_LBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1796), 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(1794), 16, + 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, + [25222] = 17, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1796), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + ACTIONS(1863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [25294] = 18, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1871), 1, anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_QMARK_QMARK, + [25368] = 19, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1796), 1, anon_sym_PIPE, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, + anon_sym_CARET, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 8, + 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, - [11826] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1325), 1, - anon_sym_EQ_GT, + [25444] = 10, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1883), 1, + anon_sym_PERCENT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 14, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1796), 10, 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, - [11892] = 6, - ACTIONS(982), 1, - anon_sym_EQ, - ACTIONS(984), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 14, + ACTIONS(1794), 16, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - 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_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(790), 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(775), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + [25502] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - [11958] = 8, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(1323), 1, - anon_sym_of, + ACTIONS(1893), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(764), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, + ACTIONS(1710), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [25586] = 15, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 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(775), 19, + ACTIONS(1863), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1873), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1796), 4, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1794), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [12028] = 7, - ACTIONS(1292), 1, - anon_sym_RBRACK, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(1302), 1, + [25654] = 24, + ACTIONS(99), 1, + anon_sym_STAR, + ACTIONS(101), 1, anon_sym_COMMA, + ACTIONS(111), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(1853), 1, + anon_sym_LBRACK, + ACTIONS(1915), 1, + anon_sym_RBRACE, + ACTIONS(1917), 1, + anon_sym_async, + ACTIONS(1919), 1, + anon_sym_static, + STATE(1115), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, + STATE(1628), 1, + aux_sym_object_pattern_repeat1, + STATE(1656), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 13, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(1857), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1921), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1913), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1562), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1617), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1654), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2225), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [25740] = 21, + ACTIONS(1527), 1, anon_sym_LBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, + anon_sym_AMP_AMP, + ACTIONS(1869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, + anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 6, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [25820] = 25, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - [12096] = 6, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(984), 1, - anon_sym_EQ_GT, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(1923), 1, + anon_sym_COMMA, + STATE(1458), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(764), 14, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 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(775), 20, + ACTIONS(1863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1925), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1865), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [25908] = 24, + ACTIONS(99), 1, + anon_sym_STAR, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(111), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(1853), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_RBRACE, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_static, + STATE(1115), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, + STATE(1628), 1, + aux_sym_object_pattern_repeat1, + STATE(1656), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1857), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1935), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1927), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1562), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1617), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1654), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2225), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [25994] = 25, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - [12162] = 6, - ACTIONS(1325), 1, - anon_sym_EQ_GT, - ACTIONS(1327), 1, - anon_sym_EQ, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(1923), 1, + anon_sym_COMMA, + STATE(1458), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 14, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [26082] = 24, + ACTIONS(99), 1, + anon_sym_STAR, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(111), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(1853), 1, + anon_sym_LBRACK, + ACTIONS(1941), 1, + anon_sym_RBRACE, + ACTIONS(1943), 1, + anon_sym_async, + ACTIONS(1945), 1, + anon_sym_static, + STATE(1115), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, + STATE(1590), 1, + aux_sym_object_repeat1, + STATE(1628), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1857), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1947), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1939), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1562), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1589), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1617), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2225), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [26168] = 4, + ACTIONS(625), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(621), 12, 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, - [12228] = 7, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 13, + ACTIONS(623), 22, sym__ternary_qmark, + anon_sym_LBRACE, 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, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + [26214] = 24, + ACTIONS(99), 1, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(111), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(1853), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_RBRACE, + ACTIONS(1953), 1, + anon_sym_async, + ACTIONS(1955), 1, + anon_sym_static, + STATE(1115), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, + STATE(1628), 1, + aux_sym_object_pattern_repeat1, + STATE(1656), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1857), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1957), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1949), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1562), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1617), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1654), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2225), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [26300] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - [12295] = 5, - ACTIONS(1327), 1, - anon_sym_EQ, + ACTIONS(1893), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 14, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1825), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [26384] = 24, + ACTIONS(99), 1, + anon_sym_STAR, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(111), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(1853), 1, + anon_sym_LBRACK, + ACTIONS(1961), 1, + anon_sym_RBRACE, + ACTIONS(1963), 1, + anon_sym_async, + ACTIONS(1965), 1, + anon_sym_static, + STATE(1115), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, + STATE(1623), 1, + aux_sym_object_repeat1, + STATE(1628), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1857), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1967), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1959), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1560), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1562), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1617), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2225), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [26470] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - [12358] = 10, - ACTIONS(391), 1, - anon_sym_BQUOTE, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1339), 1, - sym_optional_chain, - STATE(530), 1, - sym_template_string, - STATE(541), 1, - sym_arguments, + ACTIONS(1893), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 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(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 24, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1668), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + [26554] = 25, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [12424] = 7, - ACTIONS(391), 1, - anon_sym_BQUOTE, - ACTIONS(1333), 1, - anon_sym_LPAREN, - STATE(530), 1, - sym_template_string, - STATE(541), 1, - sym_arguments, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(1923), 1, + anon_sym_COMMA, + STATE(1458), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 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(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 27, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1969), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [26642] = 25, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [12484] = 5, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(1341), 1, - sym__automatic_semicolon, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(1923), 1, + anon_sym_COMMA, + STATE(1458), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1971), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1865), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [26730] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, + anon_sym_AMP_AMP, + ACTIONS(1869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, + anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(503), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1714), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + [26814] = 23, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [12540] = 4, - ACTIONS(1343), 1, - sym__automatic_semicolon, + ACTIONS(1893), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 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(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(499), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1807), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + [26898] = 25, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [12593] = 8, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - STATE(528), 1, - sym_arguments, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(1923), 1, + anon_sym_COMMA, + STATE(1458), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1345), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1973), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1865), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [26986] = 25, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, + anon_sym_AMP_AMP, + ACTIONS(1869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, + anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1347), 25, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1893), 1, sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1975), 1, anon_sym_COMMA, + ACTIONS(1978), 1, anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1809), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 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(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 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, - [12654] = 4, - ACTIONS(1341), 1, - sym__automatic_semicolon, + [27074] = 4, + ACTIONS(1401), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 12, + ACTIONS(1386), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48671,18 +67933,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(503), 29, + ACTIONS(1388), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48701,275 +67956,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12707] = 8, - ACTIONS(391), 1, - anon_sym_BQUOTE, - ACTIONS(1335), 1, + [27120] = 23, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1529), 1, anon_sym_DOT, - ACTIONS(1339), 1, + ACTIONS(1839), 1, sym_optional_chain, - STATE(530), 1, - sym_template_string, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, + anon_sym_AMP_AMP, + ACTIONS(1869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, + anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1893), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 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(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 25, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1809), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + [27204] = 25, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [12768] = 9, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - STATE(528), 1, - sym_arguments, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(1978), 1, + anon_sym_RBRACE, + ACTIONS(1980), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1811), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 12, + ACTIONS(1863), 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(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1357), 23, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27292] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1987), 1, anon_sym_AMP_AMP, + ACTIONS(1989), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, anon_sym_CARET, + ACTIONS(1999), 1, + anon_sym_PIPE, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2013), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [12831] = 4, - ACTIONS(1242), 1, - anon_sym_EQ, + ACTIONS(2015), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 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(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1718), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + [27376] = 23, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1987), 1, anon_sym_AMP_AMP, + ACTIONS(1989), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, anon_sym_CARET, + ACTIONS(1999), 1, + anon_sym_PIPE, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2013), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [12884] = 5, - ACTIONS(391), 1, - anon_sym_BQUOTE, - STATE(530), 1, - sym_template_string, + ACTIONS(2015), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 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(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 28, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1809), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + [27460] = 25, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [12939] = 9, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - STATE(528), 1, - sym_arguments, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(2017), 1, + anon_sym_COMMA, + ACTIONS(2020), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1811), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 12, + ACTIONS(1863), 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(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 23, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - 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, + ACTIONS(1889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [13002] = 4, - ACTIONS(1369), 1, - sym_regex_flags, + [27548] = 6, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(1473), 1, + anon_sym_in, + ACTIONS(1476), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1386), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -48980,18 +68287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1367), 27, + ACTIONS(1388), 21, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -49006,249 +68305,260 @@ 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, - [13054] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(545), 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(547), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + [27598] = 23, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1987), 1, anon_sym_AMP_AMP, + ACTIONS(1989), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, anon_sym_CARET, + ACTIONS(1999), 1, + anon_sym_PIPE, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2013), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13104] = 3, + ACTIONS(2015), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(575), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 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(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(577), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1813), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + [27682] = 23, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1987), 1, anon_sym_AMP_AMP, + ACTIONS(1989), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, anon_sym_CARET, + ACTIONS(1999), 1, + anon_sym_PIPE, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2013), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13154] = 3, + ACTIONS(2015), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(555), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 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(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1756), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + [27766] = 23, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1987), 1, anon_sym_AMP_AMP, + ACTIONS(1989), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, anon_sym_CARET, + ACTIONS(1999), 1, + anon_sym_PIPE, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2013), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13204] = 3, + ACTIONS(2015), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(565), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 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(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1811), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + [27850] = 13, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 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(1991), 1, + anon_sym_GT_GT, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 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, - [13254] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(585), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1796), 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(587), 29, + ACTIONS(1794), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13304] = 3, + [27914] = 8, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(2005), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(595), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49261,373 +68571,439 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 29, + ACTIONS(1794), 17, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13354] = 3, + [27968] = 24, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1987), 1, + anon_sym_AMP_AMP, + ACTIONS(1989), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_CARET, + ACTIONS(1999), 1, + anon_sym_PIPE, + ACTIONS(2003), 1, + anon_sym_PERCENT, + ACTIONS(2005), 1, + anon_sym_STAR_STAR, + ACTIONS(2013), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2015), 1, + sym__ternary_qmark, + ACTIONS(2024), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(605), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, anon_sym_STAR, - anon_sym_in, + anon_sym_SLASH, + ACTIONS(1985), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(607), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2022), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + [28054] = 19, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, anon_sym_CARET, + ACTIONS(1999), 1, + anon_sym_PIPE, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 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, - [13404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(535), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 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(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(537), 29, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 8, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [28130] = 20, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1987), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, anon_sym_CARET, + ACTIONS(1999), 1, + anon_sym_PIPE, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 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, - [13454] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 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(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 29, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 7, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [28208] = 11, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 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(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 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, - [13504] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1796), 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(1353), 29, + ACTIONS(1794), 16, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13554] = 5, - ACTIONS(1378), 1, - anon_sym_EQ, + [28268] = 17, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(2003), 1, + anon_sym_PERCENT, + ACTIONS(2005), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1375), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1371), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1796), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 24, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 9, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, + anon_sym_QMARK_QMARK, + [28340] = 18, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 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, - [13608] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1380), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 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(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1382), 29, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 9, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [28414] = 19, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1839), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, anon_sym_CARET, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 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, - [13658] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1384), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 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(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1386), 29, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 8, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [28490] = 10, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 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(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 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, - [13708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1796), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -49636,44 +69012,41 @@ 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(1390), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + ACTIONS(1794), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13758] = 3, + [28548] = 8, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(2005), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1392), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49686,325 +69059,692 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1394), 29, + ACTIONS(1794), 17, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13808] = 3, + [28602] = 15, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(2003), 1, + anon_sym_PERCENT, + ACTIONS(2005), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1985), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1796), 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(1390), 29, + ACTIONS(1794), 11, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [28670] = 21, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1987), 1, anon_sym_AMP_AMP, + ACTIONS(1989), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, anon_sym_CARET, + ACTIONS(1999), 1, + anon_sym_PIPE, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 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, - [13858] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1396), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 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(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1398), 29, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 6, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_QMARK_QMARK, + [28750] = 23, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1987), 1, anon_sym_AMP_AMP, + ACTIONS(1989), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, anon_sym_CARET, + ACTIONS(1999), 1, + anon_sym_PIPE, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2013), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13908] = 3, + ACTIONS(2015), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1400), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2009), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1825), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [28834] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1987), 1, + anon_sym_AMP_AMP, + ACTIONS(1989), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1991), 1, anon_sym_GT_GT, + ACTIONS(1995), 1, anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_CARET, + ACTIONS(1999), 1, anon_sym_PIPE, + ACTIONS(2003), 1, + anon_sym_PERCENT, + ACTIONS(2005), 1, + anon_sym_STAR_STAR, + ACTIONS(2013), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2015), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1402), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1668), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + [28918] = 23, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1987), 1, anon_sym_AMP_AMP, + ACTIONS(1989), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, anon_sym_CARET, + ACTIONS(1999), 1, + anon_sym_PIPE, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2013), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13958] = 5, - ACTIONS(1411), 1, - anon_sym_EQ, + ACTIONS(2015), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1408), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1404), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2009), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1702), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [29002] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1987), 1, + anon_sym_AMP_AMP, + ACTIONS(1989), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1991), 1, anon_sym_GT_GT, + ACTIONS(1995), 1, anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_CARET, + ACTIONS(1999), 1, anon_sym_PIPE, + ACTIONS(2003), 1, + anon_sym_PERCENT, + ACTIONS(2005), 1, + anon_sym_STAR_STAR, + ACTIONS(2013), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2015), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 24, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1710), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, + [29086] = 23, + ACTIONS(1527), 1, anon_sym_LBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1987), 1, anon_sym_AMP_AMP, + ACTIONS(1989), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1991), 1, + anon_sym_GT_GT, + ACTIONS(1995), 1, + anon_sym_AMP, + ACTIONS(1997), 1, anon_sym_CARET, + ACTIONS(1999), 1, + anon_sym_PIPE, + ACTIONS(2003), 1, anon_sym_PERCENT, + ACTIONS(2005), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2013), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14012] = 3, + ACTIONS(2015), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1413), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2009), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1714), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [29170] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1987), 1, + anon_sym_AMP_AMP, + ACTIONS(1989), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1991), 1, anon_sym_GT_GT, + ACTIONS(1995), 1, anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_CARET, + ACTIONS(1999), 1, anon_sym_PIPE, + ACTIONS(2003), 1, + anon_sym_PERCENT, + ACTIONS(2005), 1, + anon_sym_STAR_STAR, + ACTIONS(2013), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2015), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1415), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1827), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + [29254] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14062] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1417), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2027), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [29338] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1987), 1, + anon_sym_AMP_AMP, + ACTIONS(1989), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1991), 1, anon_sym_GT_GT, + ACTIONS(1995), 1, anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_CARET, + ACTIONS(1999), 1, anon_sym_PIPE, + ACTIONS(2003), 1, + anon_sym_PERCENT, + ACTIONS(2005), 1, + anon_sym_STAR_STAR, + ACTIONS(2013), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2015), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1983), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1993), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1419), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2011), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1985), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2007), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1807), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + [29422] = 23, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 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, - [14112] = 3, + ACTIONS(1702), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [29506] = 4, + ACTIONS(1495), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1421), 12, + ACTIONS(1386), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50017,18 +69757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1423), 29, + ACTIONS(1388), 22, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50047,58 +69780,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14162] = 3, + [29552] = 25, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, + anon_sym_AMP_AMP, + ACTIONS(1869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, + anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(1923), 1, + anon_sym_COMMA, + STATE(1458), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1425), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 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(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1427), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2029), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 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, - [14212] = 3, + [29640] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(525), 12, + ACTIONS(1633), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50111,18 +69860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(523), 29, + ACTIONS(1635), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50141,105 +69883,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14262] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1429), 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(1431), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + [29683] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14312] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2033), 1, + anon_sym_SEMI, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1433), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1435), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 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, - [14362] = 3, + [29770] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 12, + ACTIONS(693), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50252,18 +69962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1439), 29, + ACTIONS(695), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50282,18 +69985,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14412] = 5, - ACTIONS(511), 1, - anon_sym_EQ, + [29813] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1441), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(507), 12, + ACTIONS(703), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50306,12 +70002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 24, + ACTIONS(705), 22, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -50331,105 +70025,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14466] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1444), 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(1446), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + [29856] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14516] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2035), 1, + anon_sym_RBRACE, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1448), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1450), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 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, - [14566] = 3, + [29943] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1452), 12, + ACTIONS(713), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50442,18 +70104,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1454), 29, + ACTIONS(715), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50472,11 +70127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14616] = 3, + [29986] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1456), 12, + ACTIONS(1637), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50489,18 +70144,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1458), 29, + ACTIONS(1639), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50519,11 +70167,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14666] = 3, + [30029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1460), 12, + ACTIONS(683), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50536,18 +70184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1462), 29, + ACTIONS(685), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50566,11 +70207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14716] = 3, + [30072] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1464), 12, + ACTIONS(673), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50583,18 +70224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1466), 29, + ACTIONS(675), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50613,11 +70247,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14766] = 3, + [30115] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1468), 12, + ACTIONS(723), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50630,18 +70264,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1470), 29, + ACTIONS(725), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50660,11 +70287,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14816] = 3, + [30158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1472), 12, + ACTIONS(663), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50677,18 +70304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1474), 29, + ACTIONS(665), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50707,11 +70327,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14866] = 3, + [30201] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1476), 12, + ACTIONS(1386), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50724,18 +70344,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1478), 29, + ACTIONS(1388), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50754,669 +70367,877 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14916] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1480), 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(1482), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + [30244] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14966] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2037), 1, + anon_sym_COLON, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30331] = 25, + ACTIONS(820), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15016] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2039), 1, + anon_sym_RPAREN, + STATE(1646), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30418] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15066] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2041), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30505] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15116] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2043), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30592] = 25, + ACTIONS(820), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15166] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2045), 1, + anon_sym_RBRACK, + STATE(1636), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(529), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(527), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30679] = 25, + ACTIONS(820), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15216] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2047), 1, + anon_sym_RPAREN, + STATE(1666), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1488), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1490), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30766] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15266] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2049), 1, + anon_sym_RBRACK, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1492), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1494), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30853] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15316] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2051), 1, + anon_sym_RBRACK, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1496), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1498), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30940] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15366] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2053), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1500), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1502), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31027] = 23, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15416] = 3, + ACTIONS(1893), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1504), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 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(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1506), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1760), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31110] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15466] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2055), 1, + anon_sym_RBRACK, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1508), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1510), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31197] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15516] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2057), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1512), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1514), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31284] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15566] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2059), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1516), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1518), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31371] = 25, + ACTIONS(820), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2061), 1, + anon_sym_RBRACK, + STATE(1614), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15616] = 3, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31458] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1520), 12, + ACTIONS(1542), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51429,18 +71250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1522), 29, + ACTIONS(1544), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51459,105 +71273,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15666] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1524), 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(1526), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + [31501] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15716] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2063), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1528), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1530), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - 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, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 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, - [15766] = 3, + [31588] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1532), 12, + ACTIONS(1546), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51570,18 +71352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1534), 29, + ACTIONS(1548), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51600,11 +71375,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15816] = 3, + [31631] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 12, + ACTIONS(1550), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51617,18 +71392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(499), 29, + ACTIONS(1552), 22, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51647,352 +71415,383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15866] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1536), 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(1538), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + [31674] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15916] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2065), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(521), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(519), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31761] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15966] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2067), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1540), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1542), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31848] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2069), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 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, - [16016] = 19, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [31935] = 25, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2071), 1, + anon_sym_RPAREN, + STATE(1549), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 12, - 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_QMARK_QMARK, - anon_sym_BQUOTE, - [16097] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [32022] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2073), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1568), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16190] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [32109] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2075), 1, + anon_sym_RBRACE, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1584), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16283] = 4, - ACTIONS(1267), 1, - anon_sym_EQ, + [32196] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(635), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52005,16 +71804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 27, + ACTIONS(633), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, @@ -52033,93 +71827,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16334] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [32239] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2077), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1466), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16427] = 10, - ACTIONS(81), 1, - anon_sym_BQUOTE, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1592), 1, - sym_optional_chain, - STATE(674), 1, - sym_template_string, - STATE(681), 1, - sym_arguments, + [32326] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(1563), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52132,13 +71906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 21, - sym__automatic_semicolon, + ACTIONS(1565), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, + 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, @@ -52154,291 +71928,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [16490] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_BQUOTE, + [32369] = 25, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2079), 1, + anon_sym_RPAREN, + STATE(1566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1594), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16583] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + [32456] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1593), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 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(1564), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1595), 22, + sym__ternary_qmark, + anon_sym_LBRACE, + 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(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1596), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16676] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [32499] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2081), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1402), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16769] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [32586] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2083), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1598), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16862] = 7, - ACTIONS(81), 1, - anon_sym_BQUOTE, - ACTIONS(1586), 1, - anon_sym_LPAREN, - STATE(674), 1, - sym_template_string, - STATE(681), 1, - sym_arguments, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(631), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52451,13 +72172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 24, - sym__automatic_semicolon, + ACTIONS(629), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -52476,220 +72194,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [16919] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_BQUOTE, + [32716] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2085), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1446), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [17012] = 15, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + [32803] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1629), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 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(1546), 17, + ACTIONS(1631), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, + 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, - [17085] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + [32846] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1521), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 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(1564), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1490), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [17178] = 10, - ACTIONS(1333), 1, + ACTIONS(1523), 22, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, anon_sym_DOT, - ACTIONS(1349), 1, sym_optional_chain, - ACTIONS(1560), 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(528), 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, + [32889] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1567), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52702,432 +72354,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 20, + ACTIONS(1569), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, + 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, - [17241] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [32932] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2087), 1, + anon_sym_SEMI, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1498), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [17334] = 21, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - STATE(528), 1, - sym_arguments, + [33019] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1625), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 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(1564), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 11, + ACTIONS(1627), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, + 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, - [17419] = 22, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33062] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1574), 1, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - STATE(528), 1, - sym_arguments, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2089), 1, + anon_sym_RBRACK, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [17506] = 13, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + [33149] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1575), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 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(1546), 19, + ACTIONS(1577), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, + 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, - [17575] = 20, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33192] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, - ACTIONS(1554), 1, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1558), 1, + ACTIONS(1780), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - ACTIONS(1574), 1, - anon_sym_AMP, - STATE(528), 1, - sym_arguments, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2091), 1, + anon_sym_SEMI, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 12, - 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_QMARK_QMARK, - anon_sym_BQUOTE, - [17658] = 21, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - STATE(528), 1, - sym_arguments, + [33279] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1579), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 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(1564), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 11, + ACTIONS(1581), 22, 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_QMARK_QMARK, - anon_sym_BQUOTE, - [17743] = 12, - ACTIONS(1333), 1, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, anon_sym_DOT, - ACTIONS(1349), 1, sym_optional_chain, - ACTIONS(1558), 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(1560), 1, anon_sym_STAR_STAR, - STATE(528), 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, + [33322] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1641), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1554), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -53136,103 +72697,99 @@ 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(1546), 19, + ACTIONS(1643), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, + 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, - [17810] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33365] = 25, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2093), 1, + anon_sym_RBRACK, + STATE(1614), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1600), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [17903] = 4, - ACTIONS(1378), 1, - anon_sym_EQ, + [33452] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1371), 12, + ACTIONS(1583), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53245,16 +72802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 27, + ACTIONS(1585), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, @@ -53273,26 +72825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17954] = 10, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + [33495] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1645), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53305,34 +72842,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 20, + ACTIONS(1647), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, + 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, - [18017] = 4, - ACTIONS(1411), 1, - anon_sym_EQ, + [33538] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1404), 12, + ACTIONS(653), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53345,16 +72882,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 27, + ACTIONS(651), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, @@ -53373,73 +72905,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18068] = 17, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + [33581] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(639), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1548), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1554), 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(1546), 14, + ACTIONS(637), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, + 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, - [18145] = 4, - ACTIONS(511), 1, - anon_sym_EQ, + [33624] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(507), 12, + ACTIONS(1656), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53452,16 +72962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 27, + ACTIONS(1658), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, @@ -53480,149 +72985,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18196] = 23, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33667] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - STATE(528), 1, - sym_arguments, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, - sym__ternary_qmark, + ACTIONS(2095), 3, 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, - [18285] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33750] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2097), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1502), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [18378] = 5, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(517), 1, - sym__automatic_semicolon, + [33837] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 12, + ACTIONS(1597), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53635,13 +73124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(503), 25, + ACTIONS(1599), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -53661,18 +73147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18430] = 6, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(513), 1, - sym__automatic_semicolon, + [33880] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(503), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(507), 12, + ACTIONS(1601), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53685,11 +73164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 23, + ACTIONS(1603), 22, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -53709,13 +73187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18484] = 4, - ACTIONS(1378), 1, - anon_sym_EQ, + [33923] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1371), 12, + ACTIONS(1605), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53728,14 +73204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 26, - sym__automatic_semicolon, + ACTIONS(1607), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -53755,78 +73227,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18534] = 25, - ACTIONS(1333), 1, + [33966] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1609), 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(1611), 22, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, anon_sym_DOT, - ACTIONS(1349), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 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(1560), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, + 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, + [34009] = 25, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2099), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1602), 6, + [34096] = 25, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2101), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [18626] = 3, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34183] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1532), 12, + ACTIONS(645), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53839,15 +73408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1534), 27, - sym__automatic_semicolon, + ACTIONS(647), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -53867,64 +73431,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18674] = 9, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [34226] = 25, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - STATE(651), 1, - sym_arguments, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2103), 1, + anon_sym_RBRACK, + STATE(1606), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 12, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1357), 20, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [18734] = 4, - ACTIONS(1411), 1, - anon_sym_EQ, + [34313] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1404), 12, + ACTIONS(1613), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53937,14 +73510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 26, - sym__automatic_semicolon, + ACTIONS(1615), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -53964,351 +73533,753 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18784] = 8, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [34356] = 25, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - STATE(651), 1, - sym_arguments, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2105), 1, + anon_sym_RPAREN, + STATE(1676), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1345), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1347), 22, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34443] = 25, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18842] = 4, - ACTIONS(1242), 1, - anon_sym_EQ, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2107), 1, + anon_sym_RBRACK, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34530] = 25, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2109), 1, + anon_sym_RBRACE, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34617] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18892] = 4, - ACTIONS(511), 1, - anon_sym_EQ, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2111), 1, + anon_sym_SEMI, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(507), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34704] = 25, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + anon_sym_RBRACK, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34791] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2115), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 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, - [18942] = 8, - ACTIONS(81), 1, - anon_sym_BQUOTE, - ACTIONS(1588), 1, + [34878] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1592), 1, + ACTIONS(1682), 1, sym_optional_chain, - STATE(674), 1, - sym_template_string, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2117), 1, + anon_sym_SEMI, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34965] = 25, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1353), 22, - sym__automatic_semicolon, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, sym__ternary_qmark, + ACTIONS(2031), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2119), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 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(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [19000] = 5, - ACTIONS(81), 1, - anon_sym_BQUOTE, - STATE(674), 1, - sym_template_string, + [35052] = 25, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2121), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35139] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [19052] = 3, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2123), 1, + anon_sym_RPAREN, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1536), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 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(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1538), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35226] = 25, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19100] = 9, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - STATE(651), 1, - sym_arguments, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2031), 1, + anon_sym_COMMA, + ACTIONS(2125), 1, + anon_sym_SEMI, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 12, + ACTIONS(1758), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35313] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, + anon_sym_AMP_AMP, + ACTIONS(1869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, + anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 20, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [19160] = 5, - ACTIONS(599), 1, + ACTIONS(2022), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [35396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(591), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(595), 12, + ACTIONS(1617), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54321,11 +74292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 23, + ACTIONS(1619), 22, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54345,11 +74315,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19211] = 3, + [35439] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1472), 12, + ACTIONS(1621), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54362,14 +74332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1474), 26, - sym__automatic_semicolon, + ACTIONS(1623), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54389,11 +74355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19258] = 3, + [35482] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1571), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54406,14 +74372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 26, - sym__automatic_semicolon, + ACTIONS(1573), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54433,55 +74395,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19305] = 3, + [35525] = 24, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, + anon_sym_AMP_AMP, + ACTIONS(1869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, + anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(2127), 1, + anon_sym_SEMI, + ACTIONS(2129), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1865), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35609] = 23, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(1839), 1, + sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, + anon_sym_AMP_AMP, + ACTIONS(1869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1871), 1, anon_sym_GT_GT, + ACTIONS(1875), 1, anon_sym_AMP, + ACTIONS(1877), 1, + anon_sym_CARET, + ACTIONS(1879), 1, anon_sym_PIPE, + ACTIONS(1883), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 26, + ACTIONS(1889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35691] = 23, + ACTIONS(1527), 1, anon_sym_LBRACK, + ACTIONS(1529), 1, anon_sym_DOT, + ACTIONS(1839), 1, sym_optional_chain, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1871), 1, + anon_sym_GT_GT, + ACTIONS(1875), 1, + anon_sym_AMP, + ACTIONS(1877), 1, anon_sym_CARET, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(1883), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1893), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2133), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1865), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1885), 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, - [19352] = 3, + [35773] = 4, + ACTIONS(2135), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1488), 12, + ACTIONS(653), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54494,14 +74592,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1490), 26, - sym__automatic_semicolon, + ACTIONS(651), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54520,144 +74613,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19399] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [35817] = 24, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1529), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1839), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1845), 1, + anon_sym_STAR_STAR, + ACTIONS(1867), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1869), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1871), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1875), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1877), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1879), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1883), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1891), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1893), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(2137), 1, + anon_sym_SEMI, + ACTIONS(2139), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1863), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1873), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1881), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1865), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1490), 5, - sym__automatic_semicolon, + [35901] = 21, + ACTIONS(99), 1, + anon_sym_STAR, + ACTIONS(111), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(1853), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_async, + ACTIONS(2148), 1, + anon_sym_static, + STATE(1115), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1857), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2143), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [19490] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(2150), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2141), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1562), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2032), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2042), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2225), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [35979] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1768), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1780), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1978), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1594), 5, + [36061] = 4, + ACTIONS(1829), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [19581] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1400), 12, + ACTIONS(619), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54670,14 +74808,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1402), 26, - sym__automatic_semicolon, + ACTIONS(617), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54696,56 +74829,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19628] = 3, + [36105] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1476), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2152), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36187] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1478), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2020), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36269] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1702), 1, + anon_sym_of, + ACTIONS(2158), 1, anon_sym_AMP_AMP, + ACTIONS(2160), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2162), 1, + anon_sym_GT_GT, + ACTIONS(2166), 1, + anon_sym_AMP, + ACTIONS(2168), 1, anon_sym_CARET, + ACTIONS(2170), 1, + anon_sym_PIPE, + ACTIONS(2174), 1, anon_sym_PERCENT, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2186), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2154), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2164), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2172), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2156), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2178), 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, - [19675] = 3, + [36350] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1492), 12, + ACTIONS(1704), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54758,14 +75022,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1494), 26, - sym__automatic_semicolon, + ACTIONS(1706), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54784,12 +75043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19722] = 3, + [36391] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1496), 12, + ACTIONS(1740), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54802,14 +75060,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1498), 26, - sym__automatic_semicolon, + ACTIONS(1742), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54828,78 +75081,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19769] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1498), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [19860] = 3, + [36432] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1500), 12, + ACTIONS(1670), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54912,14 +75098,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1502), 26, - sym__automatic_semicolon, + ACTIONS(1672), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54938,85 +75119,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19907] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [36473] = 23, + ACTIONS(1827), 1, + anon_sym_LBRACE, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1835), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(2192), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2194), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2196), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2198), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2202), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2204), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2206), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2210), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2212), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2220), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2224), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2188), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2200), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2218), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2214), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1502), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [19998] = 5, - ACTIONS(1304), 1, - anon_sym_EQ, + [36554] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1238), 12, + ACTIONS(1690), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55029,9 +75194,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 21, + ACTIONS(1692), 20, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55050,12 +75215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20049] = 3, + [36595] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1504), 12, + ACTIONS(1690), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55068,14 +75232,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1506), 26, - sym__automatic_semicolon, + ACTIONS(1692), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55094,12 +75253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20096] = 3, + [36636] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(545), 12, + ACTIONS(1690), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55112,14 +75270,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(547), 26, - sym__automatic_semicolon, + ACTIONS(1692), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55138,12 +75291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20143] = 3, + [36677] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1508), 12, + ACTIONS(1690), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55156,14 +75308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1510), 26, - sym__automatic_semicolon, + ACTIONS(1692), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55182,12 +75329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20190] = 3, + [36718] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1512), 12, + ACTIONS(1722), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55200,14 +75346,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1514), 26, - sym__automatic_semicolon, + ACTIONS(1724), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55226,12 +75367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20237] = 3, + [36759] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1380), 12, + ACTIONS(653), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55244,14 +75384,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1382), 26, - sym__automatic_semicolon, + ACTIONS(651), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55270,17 +75405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20284] = 5, - ACTIONS(579), 1, - sym__automatic_semicolon, + [36800] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(571), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(575), 12, + ACTIONS(639), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55293,11 +75422,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(577), 23, + ACTIONS(637), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55316,149 +75443,534 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20335] = 3, + [36841] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2230), 1, + anon_sym_COLON, + ACTIONS(2232), 1, + anon_sym_AMP_AMP, + ACTIONS(2234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, + anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, + ACTIONS(2258), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2260), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1516), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2254), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36922] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_GT_GT, + ACTIONS(1772), 1, anon_sym_AMP, + ACTIONS(1774), 1, + anon_sym_CARET, + ACTIONS(1776), 1, anon_sym_PIPE, + ACTIONS(1780), 1, + anon_sym_PERCENT, + ACTIONS(1782), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2262), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1518), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1788), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37003] = 23, + ACTIONS(1833), 1, anon_sym_LBRACK, + ACTIONS(1835), 1, anon_sym_DOT, + ACTIONS(2192), 1, sym_optional_chain, + ACTIONS(2194), 1, anon_sym_AMP_AMP, + ACTIONS(2196), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2202), 1, + anon_sym_AMP, + ACTIONS(2204), 1, anon_sym_CARET, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, anon_sym_PERCENT, + ACTIONS(2212), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2220), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20382] = 3, + ACTIONS(2224), 1, + sym__ternary_qmark, + ACTIONS(2264), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1520), 12, + ACTIONS(2188), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2216), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2218), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37084] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1718), 1, + anon_sym_COLON, + ACTIONS(2232), 1, + anon_sym_AMP_AMP, + ACTIONS(2234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2236), 1, anon_sym_GT_GT, + ACTIONS(2240), 1, anon_sym_AMP, + ACTIONS(2242), 1, + anon_sym_CARET, + ACTIONS(2244), 1, anon_sym_PIPE, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, + ACTIONS(2258), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2260), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1522), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37165] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1809), 1, + anon_sym_COLON, + ACTIONS(2232), 1, anon_sym_AMP_AMP, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2258), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2260), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2254), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2256), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 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, - [20429] = 3, + [37246] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1813), 1, + anon_sym_COLON, + ACTIONS(2232), 1, + anon_sym_AMP_AMP, + ACTIONS(2234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, + anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, + ACTIONS(2258), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2260), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1384), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2254), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37327] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1756), 1, + anon_sym_COLON, + ACTIONS(2232), 1, + anon_sym_AMP_AMP, + ACTIONS(2234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2236), 1, anon_sym_GT_GT, + ACTIONS(2240), 1, anon_sym_AMP, + ACTIONS(2242), 1, + anon_sym_CARET, + ACTIONS(2244), 1, anon_sym_PIPE, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, + ACTIONS(2258), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2260), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1386), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37408] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1811), 1, + anon_sym_COLON, + ACTIONS(2232), 1, anon_sym_AMP_AMP, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, + anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, + ACTIONS(2258), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2260), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2254), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37489] = 13, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1796), 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(1794), 11, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20476] = 5, - ACTIONS(559), 1, - sym__automatic_semicolon, + [37550] = 8, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(551), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(555), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55471,176 +75983,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 23, + ACTIONS(1794), 14, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [37601] = 19, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, + anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2254), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 5, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [37674] = 20, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2232), 1, + anon_sym_AMP_AMP, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, + anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20527] = 4, - ACTIONS(1282), 1, - anon_sym_EQ, + ACTIONS(2226), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2254), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 4, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [37749] = 11, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1796), 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(1240), 25, - sym__automatic_semicolon, + ACTIONS(1794), 13, 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_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20576] = 3, + [37806] = 17, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1413), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2226), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1415), 26, - sym__automatic_semicolon, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 6, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, + anon_sym_QMARK_QMARK, + [37875] = 18, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 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, - [20623] = 5, - ACTIONS(1242), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1238), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 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(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 21, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 6, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [37946] = 19, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, anon_sym_CARET, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2254), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2256), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 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, - [20674] = 5, - ACTIONS(569), 1, - sym__automatic_semicolon, + ACTIONS(1794), 5, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [38019] = 10, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(561), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(565), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1796), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -55649,38 +76341,38 @@ 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(567), 23, + ACTIONS(1794), 13, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20725] = 3, + [38074] = 8, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(575), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55693,350 +76385,480 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(577), 26, - sym__automatic_semicolon, + ACTIONS(1794), 14, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20772] = 3, + [38125] = 15, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(555), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2228), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1796), 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(557), 26, - sym__automatic_semicolon, + ACTIONS(1794), 8, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [38190] = 21, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(2232), 1, anon_sym_AMP_AMP, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 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, - [20819] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(565), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 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(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 26, - sym__automatic_semicolon, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1794), 3, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38267] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1825), 1, + anon_sym_COLON, + ACTIONS(2232), 1, anon_sym_AMP_AMP, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2258), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20866] = 5, - ACTIONS(589), 1, - sym__automatic_semicolon, + ACTIONS(2260), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(581), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(585), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 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(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(587), 23, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38348] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1668), 1, + anon_sym_COLON, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(2232), 1, anon_sym_AMP_AMP, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2258), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20917] = 3, + ACTIONS(2260), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 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(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1390), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38429] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1702), 1, + anon_sym_COLON, + ACTIONS(2232), 1, anon_sym_AMP_AMP, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2258), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20964] = 5, - ACTIONS(609), 1, - sym__automatic_semicolon, + ACTIONS(2260), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(601), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(605), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 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(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(607), 23, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38510] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1710), 1, + anon_sym_COLON, + ACTIONS(2232), 1, anon_sym_AMP_AMP, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2258), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21015] = 3, + ACTIONS(2260), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(585), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 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(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(587), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38591] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1714), 1, + anon_sym_COLON, + ACTIONS(2232), 1, anon_sym_AMP_AMP, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2258), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21062] = 3, + ACTIONS(2260), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(595), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 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(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38672] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1827), 1, + anon_sym_COLON, + ACTIONS(2232), 1, anon_sym_AMP_AMP, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, + ACTIONS(2258), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2260), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2254), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 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, - [21109] = 3, + [38753] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(605), 12, + ACTIONS(1513), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56049,14 +76871,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(607), 26, - sym__automatic_semicolon, + ACTIONS(1515), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56075,17 +76892,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21156] = 5, - ACTIONS(539), 1, - sym__automatic_semicolon, + [38794] = 7, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(531), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(535), 12, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1750), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56098,14 +76918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(537), 23, + ACTIONS(1752), 15, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -56119,146 +76934,252 @@ 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, - [21207] = 3, + [38843] = 23, + ACTIONS(1807), 1, + anon_sym_LBRACE, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, + ACTIONS(2194), 1, + anon_sym_AMP_AMP, + ACTIONS(2196), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2202), 1, + anon_sym_AMP, + ACTIONS(2204), 1, + anon_sym_CARET, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, + anon_sym_PERCENT, + ACTIONS(2212), 1, + anon_sym_STAR_STAR, + ACTIONS(2220), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2224), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(535), 12, + ACTIONS(2188), 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(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(537), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(2218), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38924] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(2232), 1, anon_sym_AMP_AMP, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2258), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21254] = 3, + ACTIONS(2260), 1, + sym__ternary_qmark, + ACTIONS(2266), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1417), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 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(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1419), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39005] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(2232), 1, anon_sym_AMP_AMP, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2258), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21301] = 3, + ACTIONS(2260), 1, + sym__ternary_qmark, + ACTIONS(2268), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1480), 12, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2226), 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(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1482), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39086] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, + anon_sym_GT_GT, + ACTIONS(1772), 1, + anon_sym_AMP, + ACTIONS(1774), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_PIPE, + ACTIONS(1780), 1, anon_sym_PERCENT, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1790), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1792), 1, + sym__ternary_qmark, + ACTIONS(2270), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1758), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1770), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1778), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1786), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1784), 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, - [21348] = 3, + [39167] = 7, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1678), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56271,17 +77192,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 26, - sym__automatic_semicolon, + ACTIONS(1680), 15, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -56295,19 +77208,17 @@ 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, - [21395] = 5, - ACTIONS(549), 1, - sym__automatic_semicolon, + [39216] = 6, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(541), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(545), 12, + ACTIONS(1686), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56320,14 +77231,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(547), 23, + ACTIONS(1688), 17, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -56343,12 +77249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21446] = 3, + [39263] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1694), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56361,14 +77266,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 26, - sym__automatic_semicolon, + ACTIONS(1696), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56387,12 +77287,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21493] = 3, + [39304] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1524), 12, + ACTIONS(1716), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56405,14 +77304,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1526), 26, - sym__automatic_semicolon, + ACTIONS(1718), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56431,174 +77325,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21540] = 3, + [39345] = 23, + ACTIONS(1718), 1, + anon_sym_LBRACE, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, + ACTIONS(2194), 1, + anon_sym_AMP_AMP, + ACTIONS(2196), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2202), 1, + anon_sym_AMP, + ACTIONS(2204), 1, + anon_sym_CARET, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, + anon_sym_PERCENT, + ACTIONS(2212), 1, + anon_sym_STAR_STAR, + ACTIONS(2220), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2224), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1528), 12, + ACTIONS(2188), 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(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1530), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(2218), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39426] = 23, + ACTIONS(1809), 1, + anon_sym_LBRACE, + ACTIONS(1833), 1, anon_sym_LBRACK, + ACTIONS(1835), 1, anon_sym_DOT, + ACTIONS(2192), 1, sym_optional_chain, + ACTIONS(2194), 1, anon_sym_AMP_AMP, + ACTIONS(2196), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2202), 1, + anon_sym_AMP, + ACTIONS(2204), 1, anon_sym_CARET, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, anon_sym_PERCENT, + ACTIONS(2212), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2220), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21587] = 4, - ACTIONS(1642), 1, - sym_regex_flags, + ACTIONS(2224), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 14, + ACTIONS(2188), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2218), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1367), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + [39507] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(2232), 1, anon_sym_AMP_AMP, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2258), 1, anon_sym_QMARK_QMARK, + ACTIONS(2260), 1, + sym__ternary_qmark, + ACTIONS(2272), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21636] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(2226), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2254), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39588] = 23, + ACTIONS(1813), 1, + anon_sym_LBRACE, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1835), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(2192), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2194), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2196), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2198), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2202), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2204), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2206), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2210), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2212), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2220), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2224), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2188), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2200), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2218), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2214), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1600), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [21727] = 5, - ACTIONS(1378), 1, - anon_sym_EQ, + [39669] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1644), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1371), 12, + ACTIONS(1754), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56611,9 +77574,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 21, + ACTIONS(1756), 20, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56632,194 +77595,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21778] = 5, - ACTIONS(1411), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1646), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1404), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1406), 21, - sym__ternary_qmark, - anon_sym_LPAREN, + [39710] = 23, + ACTIONS(1756), 1, + anon_sym_LBRACE, + ACTIONS(1833), 1, anon_sym_LBRACK, + ACTIONS(1835), 1, anon_sym_DOT, + ACTIONS(2192), 1, sym_optional_chain, + ACTIONS(2194), 1, anon_sym_AMP_AMP, + ACTIONS(2196), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2202), 1, + anon_sym_AMP, + ACTIONS(2204), 1, anon_sym_CARET, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, anon_sym_PERCENT, + ACTIONS(2212), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2220), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21829] = 5, - ACTIONS(511), 1, - anon_sym_EQ, + ACTIONS(2224), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1648), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(507), 12, + ACTIONS(2188), 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(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 21, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(2218), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39791] = 23, + ACTIONS(1811), 1, + anon_sym_LBRACE, + ACTIONS(1833), 1, anon_sym_LBRACK, + ACTIONS(1835), 1, anon_sym_DOT, + ACTIONS(2192), 1, sym_optional_chain, + ACTIONS(2194), 1, anon_sym_AMP_AMP, + ACTIONS(2196), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2202), 1, + anon_sym_AMP, + ACTIONS(2204), 1, anon_sym_CARET, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, anon_sym_PERCENT, + ACTIONS(2212), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2220), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21880] = 3, + ACTIONS(2224), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1392), 12, + ACTIONS(2188), 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(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1394), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2218), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(2222), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21927] = 5, - ACTIONS(1295), 1, - anon_sym_EQ, + ACTIONS(2190), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39872] = 13, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2210), 1, + anon_sym_PERCENT, + ACTIONS(2212), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1292), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1238), 12, + ACTIONS(2188), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 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(1240), 21, + ACTIONS(1794), 11, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, 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, - [21978] = 3, + [39933] = 8, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, + ACTIONS(2212), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56832,237 +77787,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 26, - sym__automatic_semicolon, + ACTIONS(1794), 14, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, 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, - [22025] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [39984] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1764), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1768), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1772), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1774), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1776), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1780), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1782), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1790), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1792), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(2274), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1758), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1770), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1778), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1786), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1788), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1784), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1568), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [22116] = 3, + [40065] = 19, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2202), 1, + anon_sym_AMP, + ACTIONS(2204), 1, + anon_sym_CARET, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, + anon_sym_PERCENT, + ACTIONS(2212), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(2188), 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(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1390), 26, - sym__automatic_semicolon, + ACTIONS(2218), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 5, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [40138] = 20, + ACTIONS(1833), 1, anon_sym_LBRACK, + ACTIONS(1835), 1, anon_sym_DOT, + ACTIONS(2192), 1, sym_optional_chain, + ACTIONS(2194), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2202), 1, + anon_sym_AMP, + ACTIONS(2204), 1, anon_sym_CARET, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, anon_sym_PERCENT, + ACTIONS(2212), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2188), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2216), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2218), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(2222), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22163] = 3, + ACTIONS(2190), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 4, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [40213] = 11, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, + ACTIONS(2210), 1, + anon_sym_PERCENT, + ACTIONS(2212), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1421), 12, + ACTIONS(2188), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 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(1423), 26, - sym__automatic_semicolon, + ACTIONS(1794), 13, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, 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, - [22210] = 3, + [40270] = 17, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2210), 1, + anon_sym_PERCENT, + ACTIONS(2212), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1425), 12, + ACTIONS(1796), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2188), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2216), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2218), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 6, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [40339] = 18, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, + ACTIONS(2198), 1, anon_sym_GT_GT, + ACTIONS(2202), 1, anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2210), 1, + anon_sym_PERCENT, + ACTIONS(2212), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2188), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1427), 26, - sym__automatic_semicolon, + ACTIONS(2218), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 6, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [40410] = 19, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1833), 1, anon_sym_LBRACK, + ACTIONS(1835), 1, anon_sym_DOT, + ACTIONS(2192), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2202), 1, + anon_sym_AMP, + ACTIONS(2204), 1, anon_sym_CARET, + ACTIONS(2210), 1, anon_sym_PERCENT, + ACTIONS(2212), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2188), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2216), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2218), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(2222), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22257] = 3, + ACTIONS(2190), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1794), 5, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [40483] = 10, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, + ACTIONS(2210), 1, + anon_sym_PERCENT, + ACTIONS(2212), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(2188), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -57071,41 +78203,38 @@ 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(1240), 26, - sym__automatic_semicolon, + ACTIONS(1794), 13, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, 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, - [22304] = 3, + [40538] = 8, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, + ACTIONS(2212), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1396), 12, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57118,126 +78247,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1398), 26, - sym__automatic_semicolon, + ACTIONS(1794), 14, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, 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, - [22351] = 3, + [40589] = 15, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2210), 1, + anon_sym_PERCENT, + ACTIONS(2212), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1429), 12, + ACTIONS(2188), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1796), 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(1431), 26, - sym__automatic_semicolon, + ACTIONS(1794), 8, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, + 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, + [40654] = 21, + ACTIONS(1833), 1, anon_sym_LBRACK, + ACTIONS(1835), 1, anon_sym_DOT, + ACTIONS(2192), 1, sym_optional_chain, + ACTIONS(2194), 1, anon_sym_AMP_AMP, + ACTIONS(2196), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2202), 1, + anon_sym_AMP, + ACTIONS(2204), 1, anon_sym_CARET, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, anon_sym_PERCENT, + ACTIONS(2212), 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, - [22398] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1433), 12, + ACTIONS(2188), 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(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1435), 26, - sym__automatic_semicolon, + ACTIONS(2218), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1794), 3, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + ACTIONS(2190), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40731] = 23, + ACTIONS(1825), 1, + anon_sym_LBRACE, + ACTIONS(1833), 1, anon_sym_LBRACK, + ACTIONS(1835), 1, anon_sym_DOT, + ACTIONS(2192), 1, sym_optional_chain, + ACTIONS(2194), 1, anon_sym_AMP_AMP, + ACTIONS(2196), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2202), 1, + anon_sym_AMP, + ACTIONS(2204), 1, anon_sym_CARET, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, anon_sym_PERCENT, + ACTIONS(2212), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2220), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2224), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2188), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2216), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2218), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(2222), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22445] = 3, + ACTIONS(2190), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40812] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 12, + ACTIONS(1666), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57250,14 +78443,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1439), 26, - sym__automatic_semicolon, + ACTIONS(1668), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57276,57 +78464,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22492] = 4, - ACTIONS(1642), 1, - sym_regex_flags, + [40853] = 23, + ACTIONS(1668), 1, + anon_sym_LBRACE, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + sym_optional_chain, + ACTIONS(2194), 1, + anon_sym_AMP_AMP, + ACTIONS(2196), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2198), 1, + anon_sym_GT_GT, + ACTIONS(2202), 1, + anon_sym_AMP, + ACTIONS(2204), 1, + anon_sym_CARET, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, + anon_sym_PERCENT, + ACTIONS(2212), 1, + anon_sym_STAR_STAR, + ACTIONS(2220), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2224), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 13, + ACTIONS(2188), 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(2200), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2218), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2214), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1367), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + [40934] = 24, + ACTIONS(1507), 1, anon_sym_LBRACK, + ACTIONS(1509), 1, anon_sym_DOT, + ACTIONS(1682), 1, sym_optional_chain, + ACTIONS(2022), 1, + anon_sym_of, + ACTIONS(2158), 1, anon_sym_AMP_AMP, + ACTIONS(2160), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2162), 1, + anon_sym_GT_GT, + ACTIONS(2166), 1, + anon_sym_AMP, + ACTIONS(2168), 1, anon_sym_CARET, + ACTIONS(2170), 1, + anon_sym_PIPE, + ACTIONS(2174), 1, anon_sym_PERCENT, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2186), 1, + sym__ternary_qmark, + ACTIONS(2276), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2154), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2156), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2164), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2172), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2178), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22541] = 3, + anon_sym_instanceof, + [41017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1540), 12, + ACTIONS(1700), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57339,14 +78598,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1542), 26, - sym__automatic_semicolon, + ACTIONS(1702), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57365,78 +78619,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22588] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [41058] = 23, + ACTIONS(1702), 1, + anon_sym_LBRACE, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1835), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(2192), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2194), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2196), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2198), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2202), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2204), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2206), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2210), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2212), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2220), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2224), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2188), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2200), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2218), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2214), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1598), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [22679] = 3, + [41139] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1444), 12, + ACTIONS(1708), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57449,14 +78694,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 26, - sym__automatic_semicolon, + ACTIONS(1710), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57475,134 +78715,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22726] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [41180] = 23, + ACTIONS(1710), 1, + anon_sym_LBRACE, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1835), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(2192), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2194), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2196), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2198), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2202), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2204), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2206), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2210), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2212), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2220), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2224), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2188), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2200), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2218), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1446), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [22817] = 15, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1606), 2, + ACTIONS(2222), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 7, + ACTIONS(2190), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2214), 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_BQUOTE, - [22888] = 3, + [41261] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1448), 12, + ACTIONS(1712), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57615,14 +78790,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1450), 26, - sym__automatic_semicolon, + ACTIONS(1714), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57641,421 +78811,499 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22935] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [41302] = 23, + ACTIONS(1714), 1, + anon_sym_LBRACE, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1835), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(2192), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2194), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2196), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2198), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2202), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2204), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2206), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2210), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2212), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2220), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2224), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2188), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2200), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2208), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2218), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2222), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2190), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2214), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1594), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [23026] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [41383] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1807), 1, + anon_sym_COLON, + ACTIONS(2232), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2236), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2240), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2242), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2244), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2258), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2260), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2226), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2256), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2228), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2252), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1402), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [23117] = 10, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [41464] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1630), 1, + ACTIONS(2232), 1, + anon_sym_AMP_AMP, + ACTIONS(2234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2236), 1, + anon_sym_GT_GT, + ACTIONS(2240), 1, + anon_sym_AMP, + ACTIONS(2242), 1, + anon_sym_CARET, + ACTIONS(2244), 1, + anon_sym_PIPE, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(2258), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2260), 1, + sym__ternary_qmark, + ACTIONS(2279), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(2226), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2254), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2256), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2228), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2252), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [41545] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1718), 1, + anon_sym_of, + ACTIONS(2158), 1, + anon_sym_AMP_AMP, + ACTIONS(2160), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2162), 1, anon_sym_GT_GT, + ACTIONS(2166), 1, anon_sym_AMP, + ACTIONS(2168), 1, + anon_sym_CARET, + ACTIONS(2170), 1, anon_sym_PIPE, + ACTIONS(2174), 1, + anon_sym_PERCENT, + ACTIONS(2176), 1, + anon_sym_STAR_STAR, + ACTIONS(2184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2186), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2154), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2164), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2156), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [41626] = 23, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(1809), 1, + anon_sym_of, + ACTIONS(2158), 1, anon_sym_AMP_AMP, + ACTIONS(2160), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2162), 1, + anon_sym_GT_GT, + ACTIONS(2166), 1, + anon_sym_AMP, + ACTIONS(2168), 1, anon_sym_CARET, + ACTIONS(2170), 1, + anon_sym_PIPE, + ACTIONS(2174), 1, anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(2176), 1, + anon_sym_STAR_STAR, + ACTIONS(2184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2186), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2154), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2164), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2172), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2156), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2178), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [23178] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [41707] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1813), 1, + anon_sym_of, + ACTIONS(2158), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2160), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2166), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2168), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2170), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2184), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2186), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2156), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1568), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [23269] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [41788] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1756), 1, + anon_sym_of, + ACTIONS(2158), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2160), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2166), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2168), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2170), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2184), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2186), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2156), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1598), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [23360] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [41869] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1811), 1, + anon_sym_of, + ACTIONS(2158), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2160), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2166), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2168), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2170), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2184), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2186), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2156), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1446), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [23451] = 15, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [41950] = 13, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 7, + ACTIONS(1796), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -58063,11 +79311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 15, - sym__automatic_semicolon, + ACTIONS(1794), 11, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58078,27 +79323,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [23522] = 10, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [42011] = 8, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1796), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58111,11 +79351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 18, - sym__automatic_semicolon, + ACTIONS(1794), 14, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58129,222 +79366,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [23583] = 21, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 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, - [23666] = 21, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [42062] = 19, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2166), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2168), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2170), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2156), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, - sym__automatic_semicolon, + ACTIONS(1794), 5, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [23749] = 22, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [42135] = 20, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2158), 1, anon_sym_AMP_AMP, - ACTIONS(1658), 1, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2166), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2168), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2170), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2156), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 8, - sym__automatic_semicolon, + ACTIONS(1794), 4, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_of, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [23834] = 13, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [42210] = 11, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 8, + ACTIONS(1796), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -58353,11 +79507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 17, - sym__automatic_semicolon, + ACTIONS(1794), 13, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58370,215 +79521,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [23901] = 19, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [42267] = 17, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1796), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2156), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, - sym__automatic_semicolon, + ACTIONS(1794), 6, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [23980] = 20, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [42336] = 18, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2166), 1, anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2156), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, - sym__automatic_semicolon, + ACTIONS(1794), 6, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [24061] = 21, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [42407] = 19, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2166), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2168), 1, anon_sym_CARET, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2156), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, - sym__automatic_semicolon, + ACTIONS(1794), 5, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [24144] = 12, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [42480] = 10, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1554), 10, + ACTIONS(1796), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -58589,11 +79711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 17, - sym__automatic_semicolon, + ACTIONS(1794), 13, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58606,23147 +79725,17726 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [24209] = 10, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [42535] = 8, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2176), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1796), 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(1794), 14, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [42586] = 15, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2162), 1, + anon_sym_GT_GT, + ACTIONS(2174), 1, + anon_sym_PERCENT, + ACTIONS(2176), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2154), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2164), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2172), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2156), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1796), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1794), 8, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [42651] = 21, + ACTIONS(1507), 1, + anon_sym_LBRACK, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + sym_optional_chain, + ACTIONS(2158), 1, + anon_sym_AMP_AMP, + ACTIONS(2160), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2162), 1, + anon_sym_GT_GT, + ACTIONS(2166), 1, + anon_sym_AMP, + ACTIONS(2168), 1, + anon_sym_CARET, + ACTIONS(2170), 1, + anon_sym_PIPE, + ACTIONS(2174), 1, + anon_sym_PERCENT, + ACTIONS(2176), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2154), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2164), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2172), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1794), 3, + sym__ternary_qmark, + anon_sym_of, + anon_sym_QMARK_QMARK, + ACTIONS(2156), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42728] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1672), 1, + ACTIONS(1825), 1, + anon_sym_of, + ACTIONS(2158), 1, + anon_sym_AMP_AMP, + ACTIONS(2160), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2162), 1, + anon_sym_GT_GT, + ACTIONS(2166), 1, + anon_sym_AMP, + ACTIONS(2168), 1, + anon_sym_CARET, + ACTIONS(2170), 1, + anon_sym_PIPE, + ACTIONS(2174), 1, + anon_sym_PERCENT, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(2184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2186), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(2154), 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(2164), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2156), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2178), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [24270] = 17, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [42809] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1668), 1, + anon_sym_of, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(2158), 1, + anon_sym_AMP_AMP, + ACTIONS(2160), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1670), 1, + ACTIONS(2166), 1, + anon_sym_AMP, + ACTIONS(2168), 1, + anon_sym_CARET, + ACTIONS(2170), 1, + anon_sym_PIPE, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(2184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2186), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1652), 3, + ACTIONS(2180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2156), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1554), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 12, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - 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, - [24345] = 23, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [42890] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1710), 1, + anon_sym_of, + ACTIONS(2158), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2160), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2166), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2168), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2170), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(2184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2186), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2156), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [24432] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [42971] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1714), 1, + anon_sym_of, + ACTIONS(2158), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2160), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2166), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2168), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2170), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2184), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2186), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2156), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1584), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [24523] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [43052] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1827), 1, + anon_sym_of, + ACTIONS(2158), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2160), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2162), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2166), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2168), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2170), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2184), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2186), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2164), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2182), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2156), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2178), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1466), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [24614] = 22, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [43133] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2232), 1, anon_sym_AMP_AMP, - ACTIONS(1616), 1, + ACTIONS(2234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2236), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2240), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2242), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2244), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(2258), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2260), 1, + sym__ternary_qmark, + ACTIONS(2281), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2226), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2256), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2228), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2252), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 8, - 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, - [24699] = 13, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [43214] = 23, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1628), 1, + ACTIONS(1807), 1, + anon_sym_of, + ACTIONS(2158), 1, + anon_sym_AMP_AMP, + ACTIONS(2160), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2162), 1, + anon_sym_GT_GT, + ACTIONS(2166), 1, + anon_sym_AMP, + ACTIONS(2168), 1, + anon_sym_CARET, + ACTIONS(2170), 1, + anon_sym_PIPE, + ACTIONS(2174), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2176), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(2184), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2186), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1626), 2, + ACTIONS(2164), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 8, + ACTIONS(2180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2182), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2156), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2178), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [43295] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1674), 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(1546), 17, - sym__automatic_semicolon, + ACTIONS(1676), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LBRACE, + 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_BQUOTE, - [24766] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [43336] = 22, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1529), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1839), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2232), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2236), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2240), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2242), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2244), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2258), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2260), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2226), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2256), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2228), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2252), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1490), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [24857] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [43414] = 22, + ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1509), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1682), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2232), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2236), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2240), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2242), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2244), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2258), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2260), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2226), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2256), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2228), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2252), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1498), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [24948] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [43492] = 22, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1835), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(2192), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2232), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2234), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2236), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2240), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2242), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2244), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2250), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2258), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2260), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1684), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2226), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2256), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2228), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2252), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1502), 5, - sym__automatic_semicolon, + [43570] = 20, + ACTIONS(99), 1, + anon_sym_STAR, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(824), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(2287), 1, + anon_sym_RBRACE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2291), 1, + anon_sym_async, + ACTIONS(2295), 1, + anon_sym_static, + STATE(1115), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, + STATE(1674), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2293), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2297), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2283), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1621), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1672), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + [43640] = 18, + ACTIONS(99), 1, + anon_sym_STAR, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(824), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2303), 1, + anon_sym_async, + ACTIONS(2305), 1, + anon_sym_static, + STATE(1115), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2293), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2301), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2307), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2299), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1621), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2042), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + [43705] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2311), 1, + anon_sym_STAR, + ACTIONS(2313), 1, + anon_sym_RBRACE, + ACTIONS(2315), 1, + anon_sym_SEMI, + ACTIONS(2317), 1, + anon_sym_LBRACK, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2323), 1, + anon_sym_async, + ACTIONS(2327), 1, + anon_sym_static, + ACTIONS(2329), 1, + aux_sym_method_definition_token1, + STATE(1072), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2325), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2331), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [43776] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2311), 1, + anon_sym_STAR, + ACTIONS(2315), 1, + anon_sym_SEMI, + ACTIONS(2317), 1, + anon_sym_LBRACK, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2323), 1, + anon_sym_async, + ACTIONS(2327), 1, + anon_sym_static, + ACTIONS(2329), 1, + aux_sym_method_definition_token1, + ACTIONS(2333), 1, + anon_sym_RBRACE, + STATE(1072), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2325), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2331), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [43847] = 14, + ACTIONS(777), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(2337), 1, + anon_sym_COMMA, + ACTIONS(2339), 1, + anon_sym_RBRACE, + ACTIONS(2341), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DQUOTE, + ACTIONS(2345), 1, + anon_sym_SQUOTE, + STATE(1628), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2347), 2, + sym_number, + sym_private_property_identifier, + STATE(1617), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2162), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2225), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2335), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [43904] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2311), 1, + anon_sym_STAR, + ACTIONS(2317), 1, + anon_sym_LBRACK, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2323), 1, + anon_sym_async, + ACTIONS(2327), 1, + anon_sym_static, + ACTIONS(2329), 1, + aux_sym_method_definition_token1, + ACTIONS(2349), 1, + anon_sym_RBRACE, + ACTIONS(2351), 1, + anon_sym_SEMI, + STATE(1070), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2325), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2331), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [43975] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2311), 1, + anon_sym_STAR, + ACTIONS(2317), 1, + anon_sym_LBRACK, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2323), 1, + anon_sym_async, + ACTIONS(2327), 1, + anon_sym_static, + ACTIONS(2329), 1, + aux_sym_method_definition_token1, + ACTIONS(2353), 1, + anon_sym_RBRACE, + ACTIONS(2355), 1, + anon_sym_SEMI, + STATE(1066), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2325), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2331), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [44046] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2311), 1, + anon_sym_STAR, + ACTIONS(2315), 1, + anon_sym_SEMI, + ACTIONS(2317), 1, + anon_sym_LBRACK, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2323), 1, + anon_sym_async, + ACTIONS(2327), 1, + anon_sym_static, + ACTIONS(2329), 1, + aux_sym_method_definition_token1, + ACTIONS(2357), 1, + anon_sym_RBRACE, + STATE(1072), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2325), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2331), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [44117] = 14, + ACTIONS(777), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(2337), 1, anon_sym_COMMA, + ACTIONS(2341), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DQUOTE, + ACTIONS(2345), 1, + anon_sym_SQUOTE, + ACTIONS(2361), 1, + anon_sym_RBRACE, + STATE(1657), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2347), 2, + sym_number, + sym_private_property_identifier, + STATE(1653), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2162), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2225), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2359), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [44174] = 21, + ACTIONS(2366), 1, + anon_sym_STAR, + ACTIONS(2369), 1, + anon_sym_RBRACE, + ACTIONS(2371), 1, anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [25039] = 19, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(2374), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(2377), 1, + anon_sym_DQUOTE, + ACTIONS(2380), 1, + anon_sym_SQUOTE, + ACTIONS(2383), 1, + anon_sym_async, + ACTIONS(2389), 1, + anon_sym_AT, + ACTIONS(2392), 1, + anon_sym_static, + ACTIONS(2395), 1, + aux_sym_method_definition_token1, + STATE(1072), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2386), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2398), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2363), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [44245] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2311), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 10, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(2317), 1, + anon_sym_LBRACK, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2323), 1, + anon_sym_async, + ACTIONS(2327), 1, + anon_sym_static, + ACTIONS(2329), 1, + aux_sym_method_definition_token1, + ACTIONS(2401), 1, anon_sym_RBRACE, + ACTIONS(2403), 1, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [25118] = 20, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + STATE(1076), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2325), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2331), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [44316] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2311), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 10, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2315), 1, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [25199] = 21, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(2317), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2323), 1, + anon_sym_async, + ACTIONS(2327), 1, + anon_sym_static, + ACTIONS(2329), 1, + aux_sym_method_definition_token1, + ACTIONS(2405), 1, + anon_sym_RBRACE, + STATE(1072), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2325), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2331), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [44387] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2311), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(2317), 1, + anon_sym_LBRACK, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2323), 1, + anon_sym_async, + ACTIONS(2327), 1, + anon_sym_static, + ACTIONS(2329), 1, + aux_sym_method_definition_token1, + ACTIONS(2407), 1, anon_sym_RBRACE, + ACTIONS(2409), 1, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [25282] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1656), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, - anon_sym_GT_GT, - ACTIONS(1662), 1, - anon_sym_AMP, - ACTIONS(1664), 1, - anon_sym_CARET, - ACTIONS(1666), 1, - anon_sym_PIPE, - ACTIONS(1670), 1, - anon_sym_PERCENT, - ACTIONS(1672), 1, - anon_sym_STAR_STAR, - ACTIONS(1680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + STATE(1074), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2325), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2331), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [44458] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2311), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1668), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1676), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1678), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1674), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1600), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(2315), 1, anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [25373] = 12, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(2317), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2323), 1, + anon_sym_async, + ACTIONS(2327), 1, + anon_sym_static, + ACTIONS(2329), 1, + aux_sym_method_definition_token1, + ACTIONS(2411), 1, + anon_sym_RBRACE, + STATE(1072), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2325), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2331), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [44529] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2311), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1554), 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(1546), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(2317), 1, + anon_sym_LBRACK, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2323), 1, + anon_sym_async, + ACTIONS(2327), 1, + anon_sym_static, + ACTIONS(2329), 1, + aux_sym_method_definition_token1, + ACTIONS(2413), 1, anon_sym_RBRACE, + ACTIONS(2415), 1, 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, - [25438] = 10, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + STATE(1079), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(2325), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2331), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [44600] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2311), 1, 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(1546), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(2317), 1, + anon_sym_LBRACK, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2323), 1, + anon_sym_async, + ACTIONS(2327), 1, + anon_sym_static, + ACTIONS(2329), 1, + aux_sym_method_definition_token1, + ACTIONS(2417), 1, anon_sym_RBRACE, + ACTIONS(2419), 1, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [25499] = 17, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + STATE(1065), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2325), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2331), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [44671] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2311), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1554), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 12, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2315), 1, 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, - [25574] = 23, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(2317), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2323), 1, + anon_sym_async, + ACTIONS(2327), 1, + anon_sym_static, + ACTIONS(2329), 1, + aux_sym_method_definition_token1, + ACTIONS(2421), 1, + anon_sym_RBRACE, + STATE(1072), 1, + aux_sym_class_body_repeat1, + STATE(1110), 1, + aux_sym_export_statement_repeat1, + STATE(1171), 1, + sym_class_static_block, + STATE(1173), 1, + sym_method_definition, + STATE(1205), 1, + sym_decorator, + STATE(1987), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [25661] = 3, + ACTIONS(2325), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2331), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [44742] = 12, + ACTIONS(777), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(2341), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DQUOTE, + ACTIONS(2345), 1, + anon_sym_SQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1452), 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(1454), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2347), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2425), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + STATE(2032), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2162), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2225), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2423), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [44794] = 15, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, 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, - [25708] = 3, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2429), 1, + anon_sym_RBRACE, + ACTIONS(2433), 1, + anon_sym_EQ, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1456), 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(1458), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [44850] = 16, + ACTIONS(101), 1, anon_sym_COMMA, + ACTIONS(902), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1020), 1, + anon_sym_async, + ACTIONS(2289), 1, 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, - [25755] = 4, - ACTIONS(1286), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, anon_sym_EQ, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 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(1240), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [44908] = 15, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, 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, - [25804] = 3, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(2435), 1, + anon_sym_RBRACE, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1460), 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(1462), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [44964] = 16, + ACTIONS(101), 1, anon_sym_COMMA, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1020), 1, + anon_sym_async, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(2435), 1, anon_sym_RBRACE, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [45022] = 16, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1020), 1, + anon_sym_async, + ACTIONS(2289), 1, 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, - [25851] = 25, - ACTIONS(1586), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2429), 1, + anon_sym_RBRACE, + ACTIONS(2433), 1, + anon_sym_EQ, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [45080] = 16, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(904), 1, + anon_sym_RBRACE, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1020), 1, + anon_sym_async, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1656), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, - anon_sym_GT_GT, - ACTIONS(1662), 1, - anon_sym_AMP, - ACTIONS(1664), 1, - anon_sym_CARET, - ACTIONS(1666), 1, - anon_sym_PIPE, - ACTIONS(1670), 1, - anon_sym_PERCENT, - ACTIONS(1672), 1, - anon_sym_STAR_STAR, - ACTIONS(1680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_EQ, + STATE(1619), 1, + aux_sym_object_repeat1, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1650), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1668), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1676), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1678), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1674), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1596), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [25942] = 25, - ACTIONS(1586), 1, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [45138] = 15, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(2437), 1, + anon_sym_RBRACE, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1584), 5, - sym__automatic_semicolon, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [45194] = 16, + ACTIONS(101), 1, anon_sym_COMMA, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1020), 1, + anon_sym_async, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(2437), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26033] = 3, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1464), 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(1466), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [45252] = 15, + ACTIONS(101), 1, anon_sym_COMMA, + ACTIONS(864), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26080] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_EQ, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1689), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1466), 5, - sym__automatic_semicolon, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [45308] = 16, + ACTIONS(101), 1, anon_sym_COMMA, + ACTIONS(864), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26171] = 3, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1020), 1, + anon_sym_async, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_EQ, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1689), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1468), 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(1470), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [45366] = 15, + ACTIONS(101), 1, anon_sym_COMMA, + ACTIONS(894), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26218] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_EQ, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1596), 5, - sym__automatic_semicolon, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [45422] = 16, + ACTIONS(101), 1, anon_sym_COMMA, + ACTIONS(894), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26309] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1020), 1, + anon_sym_async, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_EQ, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1402), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26400] = 27, - ACTIONS(1586), 1, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - ACTIONS(1684), 1, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [45480] = 15, + ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(1687), 1, + ACTIONS(902), 1, anon_sym_RBRACE, - STATE(651), 1, - sym_arguments, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_EQ, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1598), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [45536] = 15, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(904), 1, + anon_sym_RBRACE, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [26494] = 5, - ACTIONS(1267), 1, + ACTIONS(2433), 1, anon_sym_EQ, + STATE(1619), 1, + aux_sym_object_repeat1, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1315), 3, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [45592] = 13, + ACTIONS(101), 1, anon_sym_COMMA, + ACTIONS(894), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1238), 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(1240), 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, - [26544] = 26, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1656), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, - anon_sym_GT_GT, - ACTIONS(1662), 1, - anon_sym_AMP, - ACTIONS(1664), 1, - anon_sym_CARET, - ACTIONS(1666), 1, - anon_sym_PIPE, - ACTIONS(1670), 1, - anon_sym_PERCENT, - ACTIONS(1672), 1, - anon_sym_STAR_STAR, - ACTIONS(1680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_in, - STATE(651), 1, - sym_arguments, + ACTIONS(2433), 1, + anon_sym_EQ, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1650), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1652), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1668), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1676), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1678), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1674), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1689), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [26636] = 25, - ACTIONS(1333), 1, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2431), 2, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [45643] = 13, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(2435), 1, + anon_sym_RBRACE, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1694), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [26726] = 27, - ACTIONS(1586), 1, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2431), 2, anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - ACTIONS(1696), 1, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [45694] = 13, + ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(1699), 1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2429), 1, anon_sym_RBRACE, - STATE(651), 1, - sym_arguments, + ACTIONS(2433), 1, + anon_sym_EQ, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1598), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [26820] = 25, - ACTIONS(1333), 1, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2431), 2, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [45745] = 13, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(2437), 1, + anon_sym_RBRACE, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1701), 4, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [45796] = 13, + ACTIONS(101), 1, anon_sym_COMMA, + ACTIONS(902), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [26910] = 6, - ACTIONS(1378), 1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2433), 1, anon_sym_EQ, - ACTIONS(1644), 1, - anon_sym_of, - ACTIONS(1703), 1, - anon_sym_in, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1662), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1371), 11, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1373), 23, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2431), 2, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [45847] = 13, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(904), 1, + anon_sym_RBRACE, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, 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, - [26962] = 6, - ACTIONS(1411), 1, + ACTIONS(2433), 1, anon_sym_EQ, - ACTIONS(1646), 1, - anon_sym_of, - ACTIONS(1706), 1, - anon_sym_in, + STATE(1619), 1, + aux_sym_object_repeat1, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1404), 11, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [45898] = 14, + ACTIONS(2317), 1, + anon_sym_LBRACK, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1406), 23, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(2441), 1, + anon_sym_LBRACE, + ACTIONS(2443), 1, + anon_sym_async, + ACTIONS(2449), 1, + sym__automatic_semicolon, + STATE(1133), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2445), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2447), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 3, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_EQ, + STATE(1323), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2309), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [45951] = 13, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(864), 1, + anon_sym_RBRACE, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, 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, - [27014] = 6, - ACTIONS(511), 1, + ACTIONS(2433), 1, anon_sym_EQ, - ACTIONS(1648), 1, - anon_sym_of, - ACTIONS(1709), 1, - anon_sym_in, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, + STATE(1689), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(507), 11, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [46002] = 18, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2452), 1, + anon_sym_export, + ACTIONS(2454), 1, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(509), 23, - sym__ternary_qmark, + ACTIONS(2456), 1, + anon_sym_class, + ACTIONS(2458), 1, + anon_sym_async, + ACTIONS(2462), 1, + anon_sym_static, + ACTIONS(2464), 1, + aux_sym_method_definition_token1, + ACTIONS(2466), 1, + anon_sym_get, + ACTIONS(2468), 1, + anon_sym_set, + STATE(1130), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1018), 2, + anon_sym_let, + sym_identifier, + ACTIONS(2460), 2, + sym_number, + sym_private_property_identifier, + STATE(1707), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [46062] = 14, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1020), 1, + anon_sym_async, + ACTIONS(2285), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2289), 1, 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, - [27066] = 5, - ACTIONS(1712), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2470), 1, + anon_sym_RBRACE, + STATE(1682), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, anon_sym_LPAREN, - ACTIONS(1715), 1, anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [46114] = 13, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1020), 1, + anon_sym_async, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 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(1240), 23, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2472), 2, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [46164] = 12, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, 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, - [27116] = 6, - ACTIONS(1267), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2433), 1, anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 11, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1240), 23, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(2472), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [46212] = 13, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(2289), 1, 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, - [27168] = 27, - ACTIONS(1586), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2470), 1, + anon_sym_RBRACE, + STATE(1682), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [46262] = 10, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(651), 1, - sym_arguments, - STATE(1211), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2475), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1719), 2, + ACTIONS(2477), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2479), 2, + anon_sym_get, + anon_sym_set, + STATE(1976), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2431), 4, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27262] = 27, - ACTIONS(1586), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [46305] = 11, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(651), 1, - sym_arguments, - STATE(1211), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2481), 1, + anon_sym_STAR, + ACTIONS(2485), 1, + anon_sym_get, + ACTIONS(2487), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1721), 2, + ACTIONS(2483), 2, + sym_number, + sym_private_property_identifier, + STATE(1978), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2431), 4, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27356] = 27, - ACTIONS(1586), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [46350] = 16, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2317), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(651), 1, - sym_arguments, - STATE(1211), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2489), 1, + anon_sym_STAR, + ACTIONS(2491), 1, + anon_sym_async, + ACTIONS(2495), 1, + anon_sym_static, + ACTIONS(2497), 1, + aux_sym_method_definition_token1, + ACTIONS(2499), 1, + anon_sym_get, + ACTIONS(2501), 1, + anon_sym_set, + STATE(1130), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2493), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2309), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1335), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [46405] = 10, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2433), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1723), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27450] = 27, - ACTIONS(1586), 1, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2431), 2, anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - ACTIONS(1687), 1, - anon_sym_RBRACE, - ACTIONS(1725), 1, + anon_sym_COLON, + ACTIONS(2472), 2, anon_sym_COMMA, - STATE(651), 1, - sym_arguments, + anon_sym_RBRACE, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [46448] = 11, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1594), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27544] = 5, - ACTIONS(1728), 1, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, anon_sym_LPAREN, - ACTIONS(1731), 1, anon_sym_COLON, + ACTIONS(2503), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [46493] = 12, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1020), 1, + anon_sym_async, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1421), 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(1423), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27594] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2431), 2, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_COLON, + ACTIONS(2503), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [46540] = 11, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1733), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, - STATE(1283), 1, - aux_sym_array_repeat1, + ACTIONS(2505), 1, + anon_sym_STAR, + ACTIONS(2509), 1, + anon_sym_get, + ACTIONS(2511), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27687] = 27, - ACTIONS(1333), 1, + ACTIONS(2507), 2, + sym_number, + sym_private_property_identifier, + STATE(1995), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2431), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [46585] = 16, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1737), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2454), 1, + anon_sym_STAR, + ACTIONS(2458), 1, + anon_sym_async, + ACTIONS(2462), 1, + anon_sym_static, + ACTIONS(2464), 1, + aux_sym_method_definition_token1, + ACTIONS(2466), 1, + anon_sym_get, + ACTIONS(2468), 1, + anon_sym_set, + STATE(1130), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27780] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(2460), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1018), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1707), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [46640] = 11, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2285), 1, anon_sym_COMMA, - ACTIONS(1739), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2470), 1, + anon_sym_RBRACE, + STATE(1682), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27873] = 27, - ACTIONS(1333), 1, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2431), 2, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_COLON, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [46685] = 10, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1741), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2439), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27966] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + ACTIONS(2513), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2515), 2, + anon_sym_get, + anon_sym_set, + STATE(1942), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2431), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [46728] = 12, + ACTIONS(2317), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1743), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1317), 1, - aux_sym_array_repeat1, + ACTIONS(2319), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, + anon_sym_SQUOTE, + ACTIONS(2517), 1, + anon_sym_STAR, + ACTIONS(2519), 1, + anon_sym_async, + ACTIONS(2523), 1, + anon_sym_get, + ACTIONS(2525), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28059] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + ACTIONS(2521), 2, + sym_number, + sym_private_property_identifier, + STATE(1350), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2309), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + ACTIONS(2431), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, + anon_sym_EQ, + [46775] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1745), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1306), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28152] = 27, - ACTIONS(1333), 1, + ACTIONS(2527), 2, + sym_number, + sym_private_property_identifier, + STATE(1997), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2431), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [46813] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1747), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28245] = 25, - ACTIONS(1333), 1, + ACTIONS(2529), 2, + sym_number, + sym_private_property_identifier, + STATE(1980), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2431), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [46851] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1600), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28334] = 25, - ACTIONS(1586), 1, + ACTIONS(2531), 2, + sym_number, + sym_private_property_identifier, + STATE(1981), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2431), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [46889] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1602), 3, + ACTIONS(2533), 2, + sym_number, + sym_private_property_identifier, + STATE(1996), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2431), 4, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28423] = 6, - ACTIONS(1375), 1, - anon_sym_RBRACK, - ACTIONS(1378), 1, anon_sym_EQ, - ACTIONS(1644), 1, - anon_sym_COMMA, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [46927] = 9, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1371), 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(1373), 21, - sym__ternary_qmark, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2431), 2, 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, - [28474] = 27, - ACTIONS(1333), 1, + anon_sym_COLON, + ACTIONS(2503), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [46967] = 6, + ACTIONS(2539), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(2541), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1783), 1, - anon_sym_RBRACK, - STATE(528), 1, + STATE(1202), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2535), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2537), 8, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28567] = 6, - ACTIONS(1408), 1, - anon_sym_RBRACK, - ACTIONS(1411), 1, - anon_sym_EQ, - ACTIONS(1646), 1, - anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47001] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1404), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1406), 21, - sym__ternary_qmark, + ACTIONS(2477), 2, + sym_number, + sym_private_property_identifier, + STATE(1976), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2431), 4, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [47039] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, 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, - [28618] = 6, - ACTIONS(511), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2513), 2, + sym_number, + sym_private_property_identifier, + STATE(1942), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2431), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_EQ, - ACTIONS(1441), 1, - anon_sym_RBRACK, - ACTIONS(1648), 1, - anon_sym_COMMA, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [47077] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(507), 12, + ACTIONS(2543), 9, + anon_sym_export, + anon_sym_let, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2545), 9, 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(509), 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, - [28669] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47104] = 10, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1785), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(2547), 1, + anon_sym_EQ_GT, + ACTIONS(2551), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2549), 2, + sym_number, + sym_private_property_identifier, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [47145] = 4, + ACTIONS(2553), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(619), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(617), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28762] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47174] = 6, + ACTIONS(2559), 1, + anon_sym_AT, + STATE(1130), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2557), 7, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1502), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28851] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1787), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + aux_sym_method_definition_token1, + ACTIONS(2555), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [47207] = 4, + ACTIONS(2562), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(653), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(651), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28944] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1789), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47236] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2564), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2566), 10, + anon_sym_STAR, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47262] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2568), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2570), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29037] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1791), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, - STATE(1355), 1, - aux_sym_array_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47288] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2572), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2574), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29130] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1793), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47314] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2576), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2578), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29223] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1795), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1367), 1, - aux_sym_array_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47340] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2572), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2574), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29316] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1797), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47366] = 10, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(2580), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2549), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2582), 2, + anon_sym_get, + anon_sym_set, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [47406] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2572), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2574), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29409] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1799), 1, anon_sym_RBRACE, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + 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, + [47432] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(639), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(637), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29502] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1801), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47458] = 13, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(866), 1, + anon_sym_var, + ACTIONS(880), 1, + anon_sym_class, + ACTIONS(882), 1, + anon_sym_async, + ACTIONS(884), 1, + anon_sym_function, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(2584), 1, + anon_sym_default, + STATE(426), 1, + sym_declaration, + STATE(1512), 1, + aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(868), 2, + anon_sym_let, + anon_sym_const, + STATE(460), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [47504] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2586), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2588), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29595] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1803), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47530] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2590), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2592), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29688] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1805), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47556] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2594), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2596), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29781] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1807), 1, - anon_sym_COLON, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47582] = 11, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(2598), 1, + anon_sym_STAR, + ACTIONS(2602), 1, + anon_sym_get, + ACTIONS(2604), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2600), 2, + sym_number, + sym_private_property_identifier, + STATE(2026), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [47624] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2572), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2574), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29874] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1809), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47650] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2606), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2608), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29967] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1811), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47676] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2576), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2578), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [30060] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1813), 1, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47702] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2564), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2566), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [30153] = 25, - ACTIONS(1333), 1, + 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, + [47728] = 11, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2610), 1, + anon_sym_STAR, + ACTIONS(2614), 1, + anon_sym_get, + ACTIONS(2616), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2612), 2, + sym_number, + sym_private_property_identifier, + STATE(1956), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [47770] = 11, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(2618), 1, + anon_sym_STAR, + ACTIONS(2622), 1, + anon_sym_get, + ACTIONS(2624), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2620), 2, + sym_number, + sym_private_property_identifier, + STATE(2022), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [47812] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2576), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2578), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1815), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [30242] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1817), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47838] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2576), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2578), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [30335] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47864] = 11, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(2626), 1, + anon_sym_STAR, + ACTIONS(2630), 1, + anon_sym_get, + ACTIONS(2632), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2628), 2, + sym_number, + sym_private_property_identifier, + STATE(1999), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [47906] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2576), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2578), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1594), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [30424] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [47932] = 12, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(2634), 1, + anon_sym_STAR, + ACTIONS(2636), 1, + anon_sym_async, + ACTIONS(2640), 1, + anon_sym_get, + ACTIONS(2642), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2638), 2, + sym_number, + sym_private_property_identifier, + STATE(2036), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [47976] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2572), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2574), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1402), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [30513] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1819), 1, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48002] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [30606] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2644), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2646), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1821), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48028] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2564), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2566), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [30699] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48054] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2564), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2566), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1568), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [30788] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48080] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2564), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2566), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1498), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [30877] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48106] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2564), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2566), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1446), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [30966] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1823), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48132] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(653), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(651), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [31059] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1825), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2576), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2578), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [31152] = 15, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48184] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2564), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2566), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 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(1546), 13, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [31221] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1827), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48210] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2648), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2650), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [31314] = 10, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48236] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(2564), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2566), 10, 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(1546), 16, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [31373] = 21, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48262] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2572), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2574), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 7, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [31454] = 22, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48288] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2564), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2566), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 6, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [31537] = 13, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48314] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2564), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2566), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 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(1546), 15, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_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, - [31602] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48340] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2652), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2654), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1596), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [31691] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1829), 1, anon_sym_RBRACE, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + 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, + [48366] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2656), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2658), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [31784] = 19, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48392] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1749), 2, + ACTIONS(2564), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2566), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 8, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [31861] = 20, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48418] = 4, + ACTIONS(2660), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2656), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2658), 9, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 8, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [31940] = 21, - ACTIONS(1333), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [48446] = 10, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2475), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2477), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2479), 2, + anon_sym_get, + anon_sym_set, + STATE(1976), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [48486] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2663), 2, + sym_number, + sym_private_property_identifier, + STATE(1814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48521] = 10, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(1020), 1, + anon_sym_async, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 7, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [32021] = 12, - ACTIONS(1333), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1022), 2, + anon_sym_get, + anon_sym_set, + STATE(1982), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [48560] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2665), 2, + sym_number, + sym_private_property_identifier, + STATE(2056), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48595] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2667), 2, + sym_number, + sym_private_property_identifier, + STATE(1801), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48630] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1554), 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(1546), 15, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_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, - [32084] = 10, - ACTIONS(1333), 1, + ACTIONS(2669), 2, + sym_number, + sym_private_property_identifier, + STATE(2076), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48665] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2671), 2, + sym_number, + sym_private_property_identifier, + STATE(1830), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48700] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2673), 2, + sym_number, + sym_private_property_identifier, + STATE(1907), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48735] = 12, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1002), 1, + anon_sym_var, + ACTIONS(1010), 1, + anon_sym_class, + ACTIONS(1012), 1, + anon_sym_async, + ACTIONS(1014), 1, + anon_sym_function, + ACTIONS(2675), 1, + anon_sym_default, + STATE(1525), 1, + aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, + STATE(1850), 1, + sym_declaration, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 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(1546), 16, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [32143] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1004), 2, + anon_sym_let, + anon_sym_const, + STATE(1961), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [48778] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1831), 1, - anon_sym_SEMI, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32236] = 17, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2677), 2, + sym_number, + sym_private_property_identifier, + STATE(1849), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48813] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1554), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 10, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [32309] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2679), 2, + sym_number, + sym_private_property_identifier, + STATE(1862), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48848] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1833), 1, - anon_sym_SEMI, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32402] = 23, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2681), 2, + sym_number, + sym_private_property_identifier, + STATE(1963), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48883] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 5, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [32487] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2683), 2, + sym_number, + sym_private_property_identifier, + STATE(1964), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48918] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1835), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32580] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2685), 2, + sym_number, + sym_private_property_identifier, + STATE(2033), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [48953] = 10, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2439), 1, + anon_sym_STAR, + ACTIONS(2687), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1584), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32669] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2513), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2515), 2, + anon_sym_get, + anon_sym_set, + STATE(1942), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [48992] = 11, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1837), 1, - anon_sym_RBRACE, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2689), 1, + anon_sym_STAR, + ACTIONS(2691), 1, + anon_sym_async, + ACTIONS(2695), 1, + anon_sym_get, + ACTIONS(2697), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32762] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2693), 2, + sym_number, + sym_private_property_identifier, + STATE(2049), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [49033] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2477), 2, + sym_number, + sym_private_property_identifier, + STATE(1976), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49068] = 11, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2699), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1466), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32851] = 27, - ACTIONS(1333), 1, + ACTIONS(2701), 1, + anon_sym_async, + ACTIONS(2705), 1, + anon_sym_get, + ACTIONS(2707), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2703), 2, + sym_number, + sym_private_property_identifier, + STATE(1979), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [49109] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2709), 2, + sym_number, + sym_private_property_identifier, + STATE(1990), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49144] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1839), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2711), 2, + sym_number, + sym_private_property_identifier, + STATE(1992), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49179] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32944] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2713), 2, + sym_number, + sym_private_property_identifier, + STATE(1993), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49214] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1841), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, - STATE(1283), 1, - aux_sym_array_repeat1, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [33037] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2715), 2, + sym_number, + sym_private_property_identifier, + STATE(2000), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49249] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1843), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [33130] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2717), 2, + sym_number, + sym_private_property_identifier, + STATE(2001), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49284] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1490), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [33219] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(2719), 2, + sym_number, + sym_private_property_identifier, + STATE(2006), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49319] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1689), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [33308] = 6, - ACTIONS(1292), 1, - anon_sym_RBRACK, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(1302), 1, - anon_sym_COMMA, + ACTIONS(2721), 2, + sym_number, + sym_private_property_identifier, + STATE(2007), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49354] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 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(1240), 21, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(2723), 2, + sym_number, + sym_private_property_identifier, + STATE(2009), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49389] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, 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, - [33359] = 27, - ACTIONS(1333), 1, + ACTIONS(2431), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, - anon_sym_SEMI, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [33452] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2725), 2, + sym_number, + sym_private_property_identifier, + STATE(2010), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49424] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1629), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1631), 8, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1598), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [33541] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [49449] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1584), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2727), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2729), 8, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [33629] = 4, - ACTIONS(1327), 1, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [49474] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(2535), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2537), 8, 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(1240), 22, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [33675] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [49499] = 8, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1881), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [33763] = 4, - ACTIONS(1369), 1, - sym_regex_flags, + ACTIONS(2549), 2, + sym_number, + sym_private_property_identifier, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49534] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 14, + ACTIONS(2731), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2733), 8, anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1367), 20, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [33809] = 24, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [49559] = 12, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(99), 1, + ACTIONS(866), 1, + anon_sym_var, + ACTIONS(880), 1, + anon_sym_class, + ACTIONS(882), 1, + anon_sym_async, + ACTIONS(884), 1, + anon_sym_function, + ACTIONS(2584), 1, + anon_sym_default, + STATE(426), 1, + sym_declaration, + STATE(1512), 1, + aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(868), 2, + anon_sym_let, + anon_sym_const, + STATE(460), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [49602] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1593), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1595), 8, anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, aux_sym_method_definition_token1, - ACTIONS(854), 1, + [49627] = 8, + ACTIONS(988), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(990), 1, anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1887), 1, - anon_sym_RBRACE, - ACTIONS(1889), 1, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1891), 1, - anon_sym_async, - ACTIONS(1895), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 2, + ACTIONS(2735), 2, sym_number, sym_private_property_identifier, - ACTIONS(1897), 2, + STATE(1901), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1883), 3, + [49662] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1521), 8, anon_sym_export, anon_sym_let, + anon_sym_class, + anon_sym_async, sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [33895] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1523), 8, anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, aux_sym_method_definition_token1, - ACTIONS(854), 1, + [49687] = 8, + ACTIONS(988), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(990), 1, anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1901), 1, - anon_sym_RBRACE, - ACTIONS(1903), 1, - anon_sym_async, - ACTIONS(1905), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1309), 1, - aux_sym_object_repeat1, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 2, + ACTIONS(2737), 2, sym_number, sym_private_property_identifier, - ACTIONS(1907), 2, + STATE(2035), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1899), 3, + [49722] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2739), 2, + sym_number, + sym_private_property_identifier, + STATE(1844), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1289), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1290), 3, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49754] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2741), 2, + sym_number, + sym_private_property_identifier, + STATE(1991), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [33981] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1909), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [34069] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, + ACTIONS(2743), 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, + [49808] = 7, + ACTIONS(988), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(990), 1, anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1913), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2745), 2, + sym_number, + sym_private_property_identifier, + STATE(1898), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, anon_sym_async, - ACTIONS(1917), 1, + sym_identifier, anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, + anon_sym_get, + anon_sym_set, + [49840] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 2, + ACTIONS(2747), 2, sym_number, sym_private_property_identifier, - ACTIONS(1919), 2, + STATE(1994), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1911), 3, + [49872] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2749), 2, + sym_number, + sym_private_property_identifier, + STATE(1998), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49904] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2751), 2, + sym_number, + sym_private_property_identifier, + STATE(1886), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34155] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [49936] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2753), 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, + [49958] = 7, + ACTIONS(988), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(990), 1, anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1923), 1, - anon_sym_RBRACE, - ACTIONS(1925), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2755), 2, + sym_number, + sym_private_property_identifier, + STATE(2005), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, anon_sym_async, - ACTIONS(1927), 1, + sym_identifier, anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, + anon_sym_get, + anon_sym_set, + [49990] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 2, + ACTIONS(2671), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + STATE(1830), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1921), 3, + [50022] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2757), 2, + sym_number, + sym_private_property_identifier, + STATE(1972), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [50054] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2759), 2, + sym_number, + sym_private_property_identifier, + STATE(2008), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34241] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [50086] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2761), 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, + [50108] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2763), 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, + [50130] = 7, + ACTIONS(988), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(990), 1, anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1933), 1, - anon_sym_RBRACE, - ACTIONS(1935), 1, - anon_sym_async, - ACTIONS(1937), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 2, + ACTIONS(2513), 2, sym_number, sym_private_property_identifier, - ACTIONS(1939), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1931), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, + STATE(1942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34327] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [50162] = 7, + ACTIONS(988), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(990), 1, anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1943), 1, - anon_sym_RBRACE, - ACTIONS(1945), 1, - anon_sym_async, - ACTIONS(1947), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 2, + ACTIONS(2709), 2, sym_number, sym_private_property_identifier, - ACTIONS(1949), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1941), 3, + STATE(1990), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [50194] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(994), 2, + sym_number, + sym_private_property_identifier, + STATE(1982), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34413] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [50226] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 11, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1240), 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, - [34463] = 26, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(2477), 2, + sym_number, + sym_private_property_identifier, + STATE(1976), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [50258] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - ACTIONS(1951), 1, - anon_sym_SEMI, - ACTIONS(1953), 1, - sym__automatic_semicolon, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [34553] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2765), 2, + sym_number, + sym_private_property_identifier, + STATE(2015), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [50290] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1687), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [34641] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2767), 2, + sym_number, + sym_private_property_identifier, + STATE(1977), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [50322] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1699), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [34729] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2549), 2, + sym_number, + sym_private_property_identifier, + STATE(1936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [50354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1594), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [34817] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(2769), 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, + [50376] = 7, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(990), 1, + anon_sym_SQUOTE, + ACTIONS(2289), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1402), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [34905] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2771), 2, + sym_number, + sym_private_property_identifier, + STATE(1789), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1018), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [50408] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1568), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2773), 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, + [50430] = 11, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [34993] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2783), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2785), 1, + anon_sym_DQUOTE, + ACTIONS(2787), 1, + anon_sym_SQUOTE, + STATE(1533), 1, + sym_string, + STATE(2074), 1, + sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1598), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [35081] = 25, - ACTIONS(1333), 1, + STATE(2185), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(2781), 3, anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_BQUOTE, + [50468] = 11, + ACTIONS(2775), 1, + sym_identifier, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2783), 1, + anon_sym_DOT, + ACTIONS(2785), 1, + anon_sym_DQUOTE, + ACTIONS(2787), 1, + anon_sym_SQUOTE, + STATE(1527), 1, + sym_string, + STATE(1912), 1, + sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1446), 2, - anon_sym_of, + STATE(2185), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(2781), 3, + anon_sym_LPAREN, + sym_optional_chain, anon_sym_BQUOTE, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, + [50506] = 8, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, anon_sym_LT, + ACTIONS(2795), 1, + anon_sym_LT_SLASH, + STATE(1239), 1, + sym_jsx_opening_element, + STATE(1422), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2791), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1258), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [50536] = 11, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2801), 1, + anon_sym_COLON, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [35169] = 15, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2807), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2809), 1, + anon_sym_SLASH_GT, + STATE(1269), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 7, - anon_sym_in, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [50572] = 8, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 12, - sym__ternary_qmark, - anon_sym_of, - 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, - [35237] = 10, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2795), 1, + anon_sym_LT_SLASH, + STATE(1239), 1, + sym_jsx_opening_element, + STATE(1413), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, - anon_sym_STAR, - anon_sym_in, + ACTIONS(2811), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1237), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [50602] = 8, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, 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(1546), 15, - 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, - [35295] = 21, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2815), 1, + anon_sym_LT_SLASH, + STATE(661), 1, + sym_jsx_closing_element, + STATE(1239), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, + ACTIONS(2813), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1241), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [50632] = 8, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 6, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [35375] = 22, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2815), 1, + anon_sym_LT_SLASH, + STATE(648), 1, + sym_jsx_closing_element, + STATE(1239), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, + ACTIONS(2791), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1258), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [50662] = 8, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 5, - sym__ternary_qmark, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [35457] = 13, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2817), 1, + anon_sym_LT_SLASH, + STATE(1059), 1, + sym_jsx_closing_element, + STATE(1239), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 8, - anon_sym_in, + ACTIONS(2791), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1258), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [50692] = 8, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, 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(1546), 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, - [35521] = 19, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2817), 1, + anon_sym_LT_SLASH, + STATE(956), 1, + sym_jsx_closing_element, + STATE(1239), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, + ACTIONS(2819), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1242), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [50722] = 8, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 7, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [35597] = 20, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2821), 1, + anon_sym_LT_SLASH, + STATE(775), 1, + sym_jsx_closing_element, + STATE(1239), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, + ACTIONS(2791), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1258), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [50752] = 8, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, anon_sym_LT, + ACTIONS(2821), 1, + anon_sym_LT_SLASH, + STATE(759), 1, + sym_jsx_closing_element, + STATE(1239), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2823), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1244), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [50782] = 11, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2801), 1, + anon_sym_COLON, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 7, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [35675] = 21, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2807), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2825), 1, + anon_sym_SLASH_GT, + STATE(1276), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [50818] = 11, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2801), 1, + anon_sym_COLON, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 6, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [35755] = 12, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2807), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2827), 1, + anon_sym_SLASH_GT, + STATE(1273), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [50854] = 8, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + anon_sym_LT, + ACTIONS(2831), 1, + anon_sym_LT_SLASH, + STATE(1239), 1, + sym_jsx_opening_element, + STATE(1364), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1554), 10, - anon_sym_in, + ACTIONS(2829), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1249), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [50884] = 8, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, anon_sym_LT, + ACTIONS(2831), 1, + anon_sym_LT_SLASH, + STATE(1239), 1, + sym_jsx_opening_element, + STATE(1368), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2791), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1258), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [50914] = 11, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2801), 1, + anon_sym_COLON, + ACTIONS(2803), 1, 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(1546), 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, - [35817] = 10, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2807), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2833), 1, + anon_sym_SLASH_GT, + STATE(1286), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [50950] = 11, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2801), 1, + anon_sym_COLON, + ACTIONS(2803), 1, 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(1546), 15, - 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, - [35875] = 17, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2807), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2835), 1, + anon_sym_SLASH_GT, + STATE(1290), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [50986] = 10, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1554), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 9, - 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, - [35947] = 23, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2807), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2835), 1, + anon_sym_SLASH_GT, + STATE(1268), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51019] = 10, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 4, - sym__ternary_qmark, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [36031] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2807), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2809), 1, + anon_sym_SLASH_GT, + STATE(1270), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1466), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51052] = 10, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2801), 1, + anon_sym_COLON, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36119] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2835), 1, + anon_sym_SLASH_GT, + STATE(1280), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1490), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51085] = 10, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2801), 1, + anon_sym_COLON, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36207] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2825), 1, + anon_sym_SLASH_GT, + STATE(1265), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51118] = 10, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36295] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2807), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2833), 1, + anon_sym_SLASH_GT, + STATE(1288), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1502), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51151] = 10, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2801), 1, + anon_sym_COLON, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36383] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2833), 1, + anon_sym_SLASH_GT, + STATE(1285), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1600), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51184] = 7, + ACTIONS(2837), 1, + anon_sym_LBRACE, + ACTIONS(2843), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36471] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2846), 1, + anon_sym_LT_SLASH, + STATE(1239), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2840), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1258), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [51211] = 10, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2801), 1, + anon_sym_COLON, + ACTIONS(2803), 1, + anon_sym_GT, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2827), 1, + anon_sym_SLASH_GT, + STATE(1283), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1596), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51244] = 10, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36559] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2807), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - ACTIONS(1955), 1, - anon_sym_COLON, - STATE(528), 1, - sym_arguments, + ACTIONS(2825), 1, + anon_sym_SLASH_GT, + STATE(1277), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51277] = 10, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36646] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2807), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - ACTIONS(1957), 1, - anon_sym_LBRACE, - STATE(528), 1, - sym_arguments, + ACTIONS(2827), 1, + anon_sym_SLASH_GT, + STATE(1275), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36733] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - ACTIONS(1959), 1, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51310] = 10, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2801), 1, anon_sym_COLON, - STATE(528), 1, - sym_arguments, + ACTIONS(2803), 1, + anon_sym_GT, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2809), 1, + anon_sym_SLASH_GT, + STATE(1266), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51343] = 9, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36820] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - ACTIONS(1961), 1, - anon_sym_COLON, - STATE(528), 1, - sym_arguments, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2833), 1, + anon_sym_SLASH_GT, + STATE(1289), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51373] = 9, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36907] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1963), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2835), 1, + anon_sym_SLASH_GT, + STATE(1272), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51403] = 9, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2848), 1, anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36994] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - ACTIONS(1965), 1, - anon_sym_COLON, - STATE(528), 1, - sym_arguments, + ACTIONS(2850), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51433] = 9, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2848), 1, anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [37081] = 26, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1689), 1, - anon_sym_of, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - ACTIONS(1967), 1, - anon_sym_in, - STATE(528), 1, - sym_arguments, + ACTIONS(2852), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1849), 2, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51463] = 9, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2803), 1, anon_sym_GT, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [37170] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - ACTIONS(1970), 1, - anon_sym_COLON, - STATE(528), 1, - sym_arguments, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2825), 1, + anon_sym_SLASH_GT, + STATE(1282), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51493] = 9, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2854), 1, anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [37257] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1972), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, + ACTIONS(2856), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51523] = 9, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2858), 1, anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [37344] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, + ACTIONS(2860), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51553] = 9, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1979), 1, - anon_sym_async, - ACTIONS(1981), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2854), 1, + anon_sym_GT, + ACTIONS(2862), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1976), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1983), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1974), 3, - anon_sym_export, - anon_sym_let, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51583] = 9, + ACTIONS(2797), 1, sym_identifier, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1421), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1430), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [37422] = 24, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2864), 1, + anon_sym_GT, + ACTIONS(2866), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51613] = 9, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2864), 1, anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [37506] = 24, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(2868), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51643] = 9, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2858), 1, anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [37590] = 20, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(702), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(1989), 1, - anon_sym_RBRACE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(1993), 1, - anon_sym_async, - ACTIONS(1997), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1292), 1, - aux_sym_object_repeat1, + ACTIONS(2870), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1999), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1985), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1291), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1301), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37660] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2005), 1, - anon_sym_RBRACE, - ACTIONS(2007), 1, - anon_sym_SEMI, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51673] = 7, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(2874), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(2876), 1, anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - STATE(876), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, + STATE(1248), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, + STATE(1374), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [51699] = 9, + ACTIONS(2797), 1, sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37731] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - ACTIONS(2025), 1, - anon_sym_RBRACE, - ACTIONS(2027), 1, - anon_sym_SEMI, - STATE(872), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2854), 1, + anon_sym_GT, + ACTIONS(2878), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51729] = 9, + ACTIONS(2797), 1, sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37802] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2007), 1, - anon_sym_SEMI, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - ACTIONS(2029), 1, - anon_sym_RBRACE, - STATE(876), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2858), 1, + anon_sym_GT, + ACTIONS(2880), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51759] = 9, + ACTIONS(2797), 1, sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37873] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2007), 1, - anon_sym_SEMI, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - ACTIONS(2031), 1, - anon_sym_RBRACE, - STATE(876), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2854), 1, + anon_sym_GT, + ACTIONS(2882), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51789] = 9, + ACTIONS(2797), 1, sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37944] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - ACTIONS(2033), 1, - anon_sym_RBRACE, - ACTIONS(2035), 1, - anon_sym_SEMI, - STATE(873), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2803), 1, + anon_sym_GT, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2809), 1, + anon_sym_SLASH_GT, + STATE(1271), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51819] = 9, + ACTIONS(2797), 1, sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [38015] = 18, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(702), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2041), 1, - anon_sym_async, - ACTIONS(2043), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2864), 1, + anon_sym_GT, + ACTIONS(2884), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2039), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2045), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2037), 3, - anon_sym_export, - anon_sym_let, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51849] = 9, + ACTIONS(2797), 1, sym_identifier, - STATE(1301), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1430), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - [38080] = 21, - ACTIONS(2050), 1, - anon_sym_STAR, - ACTIONS(2053), 1, - anon_sym_RBRACE, - ACTIONS(2055), 1, - anon_sym_SEMI, - ACTIONS(2058), 1, - anon_sym_LBRACK, - ACTIONS(2061), 1, - anon_sym_DQUOTE, - ACTIONS(2064), 1, - anon_sym_SQUOTE, - ACTIONS(2067), 1, - anon_sym_async, - ACTIONS(2073), 1, - anon_sym_AT, - ACTIONS(2076), 1, - anon_sym_static, - ACTIONS(2079), 1, - aux_sym_method_definition_token1, - STATE(876), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2848), 1, + anon_sym_GT, + ACTIONS(2886), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2070), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2082), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2047), 3, - anon_sym_export, - anon_sym_let, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51879] = 8, + ACTIONS(2888), 1, sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [38151] = 14, - ACTIONS(673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, + ACTIONS(2891), 1, anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(2089), 1, - anon_sym_RBRACE, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2896), 1, + sym_jsx_identifier, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2091), 2, - sym_number, - sym_private_property_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1620), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2085), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(2894), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51907] = 9, + ACTIONS(2797), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [38208] = 14, - ACTIONS(673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, + ACTIONS(2799), 1, anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(2095), 1, - anon_sym_RBRACE, - STATE(1335), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2864), 1, + anon_sym_GT, + ACTIONS(2899), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2091), 2, - sym_number, - sym_private_property_identifier, - STATE(1332), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1620), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2093), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51937] = 9, + ACTIONS(2797), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [38265] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2848), 1, + anon_sym_GT, + ACTIONS(2901), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [51967] = 7, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(2874), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(2876), 1, anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - ACTIONS(2097), 1, - anon_sym_RBRACE, - ACTIONS(2099), 1, - anon_sym_SEMI, - STATE(870), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, + STATE(1248), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1376), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [51993] = 9, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2848), 1, + anon_sym_GT, + ACTIONS(2903), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [52023] = 9, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2858), 1, + anon_sym_GT, + ACTIONS(2905), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [52053] = 9, + ACTIONS(2797), 1, sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [38336] = 12, - ACTIONS(673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, + ACTIONS(2799), 1, anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, + ACTIONS(2803), 1, + anon_sym_GT, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2827), 1, + anon_sym_SLASH_GT, + STATE(1279), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2091), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2103), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1421), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1620), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2101), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [52083] = 9, + ACTIONS(2797), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [38388] = 15, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2107), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2854), 1, + anon_sym_GT, + ACTIONS(2907), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [52113] = 9, + ACTIONS(2797), 1, sym_identifier, - anon_sym_static, - [38444] = 16, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2113), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2864), 1, + anon_sym_GT, + ACTIONS(2909), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [52143] = 9, + ACTIONS(2797), 1, sym_identifier, - anon_sym_static, - [38502] = 15, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2805), 1, + sym_jsx_identifier, + ACTIONS(2858), 1, + anon_sym_GT, + ACTIONS(2911), 1, + anon_sym_SLASH_GT, + STATE(1281), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1329), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1381), 2, + sym_jsx_expression, + sym_jsx_attribute, + [52173] = 8, + ACTIONS(2343), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2345), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2115), 1, + ACTIONS(2913), 1, + sym_identifier, + ACTIONS(2915), 1, + anon_sym_COMMA, + ACTIONS(2917), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + STATE(1624), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, + STATE(2128), 2, + sym__module_export_name, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [38558] = 16, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(854), 1, + [52200] = 8, + ACTIONS(2343), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2345), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2115), 1, + ACTIONS(2919), 1, + sym_identifier, + ACTIONS(2921), 1, + anon_sym_COMMA, + ACTIONS(2923), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + STATE(1595), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, + STATE(1607), 2, + sym__module_export_name, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [38616] = 15, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, + [52227] = 6, + ACTIONS(2929), 1, anon_sym_EQ, - STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2931), 1, + sym__automatic_semicolon, + STATE(1581), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [38672] = 16, + ACTIONS(2925), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2927), 2, + anon_sym_in, + anon_sym_of, + [52249] = 7, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2107), 1, + ACTIONS(894), 1, anon_sym_RBRACE, - ACTIONS(2111), 1, + ACTIONS(2433), 1, anon_sym_EQ, - STATE(1311), 1, + STATE(1627), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1662), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2431), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, + [52273] = 5, + ACTIONS(2801), 1, + anon_sym_COLON, + ACTIONS(2934), 1, sym_identifier, - anon_sym_static, - [38730] = 16, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2938), 1, anon_sym_EQ, - STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [38788] = 16, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(2936), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [52293] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [38846] = 15, - ACTIONS(101), 1, + ACTIONS(2940), 7, anon_sym_COMMA, - ACTIONS(800), 1, anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + anon_sym_RBRACK, + [52307] = 6, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, + anon_sym_LBRACK, + ACTIONS(2942), 1, + sym_identifier, + STATE(1491), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, + STATE(1319), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [52329] = 6, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, + anon_sym_LBRACK, + ACTIONS(2944), 1, sym_identifier, - anon_sym_static, - [38902] = 16, + STATE(1493), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1293), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [52351] = 7, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(766), 1, + ACTIONS(902), 1, anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2433), 1, anon_sym_EQ, - STATE(1311), 1, + STATE(1627), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1662), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2431), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [38960] = 15, + [52375] = 7, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2433), 1, anon_sym_EQ, - ACTIONS(2113), 1, + ACTIONS(2435), 1, anon_sym_RBRACE, - STATE(1311), 1, + STATE(1627), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1662), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2431), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [39016] = 15, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(766), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + [52399] = 3, + ACTIONS(1662), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [39072] = 13, - ACTIONS(101), 1, + ACTIONS(617), 6, anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2113), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [52415] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39123] = 13, - ACTIONS(101), 1, + ACTIONS(2946), 7, anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2111), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - ACTIONS(2115), 1, + anon_sym_RBRACK, + [52429] = 7, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(904), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + ACTIONS(2433), 1, + anon_sym_EQ, + STATE(1619), 1, aux_sym_object_repeat1, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2431), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39174] = 14, - ACTIONS(2009), 1, + [52453] = 6, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, + ACTIONS(2948), 1, + sym_identifier, + STATE(1493), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [52475] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2950), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [52489] = 7, + ACTIONS(2343), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(2345), 1, anon_sym_SQUOTE, - ACTIONS(2117), 1, - anon_sym_STAR, - ACTIONS(2119), 1, - anon_sym_LBRACE, - ACTIONS(2121), 1, - anon_sym_async, - ACTIONS(2127), 1, - sym__automatic_semicolon, - STATE(962), 1, - sym_statement_block, + ACTIONS(2913), 1, + sym_identifier, + ACTIONS(2952), 1, + anon_sym_RBRACE, + STATE(2061), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2123), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2125), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 3, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - STATE(1111), 3, + STATE(2128), 2, + sym__module_export_name, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2001), 4, - anon_sym_export, - anon_sym_let, + [52513] = 7, + ACTIONS(2343), 1, + anon_sym_DQUOTE, + ACTIONS(2345), 1, + anon_sym_SQUOTE, + ACTIONS(2919), 1, sym_identifier, - anon_sym_static, - [39227] = 13, + ACTIONS(2954), 1, + anon_sym_RBRACE, + STATE(2082), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1607), 2, + sym__module_export_name, + sym_string, + [52537] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2956), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [52551] = 7, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2107), 1, + ACTIONS(864), 1, anon_sym_RBRACE, - ACTIONS(2111), 1, + ACTIONS(2433), 1, anon_sym_EQ, - STATE(1311), 1, + STATE(1627), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1689), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2431), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39278] = 13, - ACTIONS(101), 1, + [52575] = 4, + ACTIONS(2958), 1, anon_sym_COMMA, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2111), 1, - anon_sym_EQ, STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, - anon_sym_LPAREN, + ACTIONS(1760), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39329] = 13, + anon_sym_RBRACK, + [52593] = 7, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(766), 1, + ACTIONS(2429), 1, anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2433), 1, anon_sym_EQ, - STATE(1311), 1, + STATE(1627), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1662), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2431), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39380] = 13, + [52617] = 7, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2433), 1, anon_sym_EQ, - STATE(1311), 1, + ACTIONS(2437), 1, + anon_sym_RBRACE, + STATE(1627), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1662), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2431), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39431] = 13, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + [52641] = 6, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, + ACTIONS(2948), 1, + sym_identifier, + STATE(1491), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, + STATE(1436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [52663] = 4, + ACTIONS(2031), 1, + anon_sym_COMMA, + STATE(1310), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2961), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2130), 2, + anon_sym_RBRACK, + [52681] = 3, + ACTIONS(2963), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(651), 6, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [39481] = 13, - ACTIONS(854), 1, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [52697] = 7, + ACTIONS(2343), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2345), 1, anon_sym_SQUOTE, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2133), 1, + ACTIONS(2913), 1, + sym_identifier, + ACTIONS(2965), 1, anon_sym_RBRACE, - STATE(1296), 1, - aux_sym_object_repeat1, + STATE(2061), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, + STATE(2128), 2, + sym__module_export_name, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [39531] = 14, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(1991), 1, + [52721] = 6, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2133), 1, - anon_sym_RBRACE, - STATE(1296), 1, - aux_sym_object_repeat1, + ACTIONS(2948), 1, + sym_identifier, + STATE(1668), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [39583] = 18, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + STATE(1436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [52743] = 6, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, - anon_sym_export, - ACTIONS(2137), 1, - anon_sym_STAR, - ACTIONS(2139), 1, - anon_sym_class, - ACTIONS(2141), 1, - anon_sym_async, - ACTIONS(2145), 1, - anon_sym_static, - ACTIONS(2147), 1, - aux_sym_method_definition_token1, - ACTIONS(2149), 1, - anon_sym_get, - ACTIONS(2151), 1, - anon_sym_set, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + ACTIONS(2948), 1, + sym_identifier, + STATE(1534), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(872), 2, - anon_sym_let, - sym_identifier, - ACTIONS(2143), 2, - sym_number, - sym_private_property_identifier, - STATE(1588), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [39643] = 12, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, + STATE(1436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [52765] = 5, + ACTIONS(2967), 1, anon_sym_EQ, + STATE(1432), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2130), 2, + ACTIONS(2927), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(2925), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [39691] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + anon_sym_SEMI, + [52785] = 6, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, + ACTIONS(2948), 1, + sym_identifier, + STATE(1536), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2153), 2, + STATE(1436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [52807] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2969), 7, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [39736] = 10, - ACTIONS(854), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [52821] = 7, + ACTIONS(2343), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2345), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2155), 1, - anon_sym_STAR, + ACTIONS(2919), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_RBRACE, + STATE(2082), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2159), 2, - anon_sym_get, - anon_sym_set, - STATE(1484), 3, + STATE(1607), 2, + sym__module_export_name, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, + [52845] = 6, + ACTIONS(2929), 1, + anon_sym_EQ, + ACTIONS(2973), 1, anon_sym_LPAREN, + STATE(1916), 1, + sym_formal_parameters, + STATE(2109), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2975), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [52866] = 3, + ACTIONS(2977), 1, sym_identifier, - anon_sym_static, - [39779] = 11, - ACTIONS(854), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2979), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + [52881] = 6, + ACTIONS(2343), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2345), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2161), 1, - anon_sym_STAR, - ACTIONS(2165), 1, - anon_sym_get, - ACTIONS(2167), 1, - anon_sym_set, + ACTIONS(2919), 1, + sym_identifier, + STATE(2082), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2163), 2, - sym_number, - sym_private_property_identifier, - STATE(1486), 3, + STATE(1607), 2, + sym__module_export_name, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2109), 4, + [52902] = 5, + ACTIONS(2981), 1, + anon_sym_default, + ACTIONS(2984), 1, + anon_sym_RBRACE, + ACTIONS(2986), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1326), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [52921] = 5, + ACTIONS(2991), 1, + anon_sym_BQUOTE, + ACTIONS(2993), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2989), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1336), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [52940] = 5, + ACTIONS(2993), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2997), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2995), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1360), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [52959] = 4, + ACTIONS(2999), 1, + sym_identifier, + ACTIONS(3003), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3001), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [52976] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2950), 6, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [39824] = 10, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2117), 1, - anon_sym_STAR, + [52989] = 5, + ACTIONS(2993), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3005), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2171), 2, - anon_sym_get, - anon_sym_set, - STATE(1458), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2989), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1336), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [53008] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2956), 6, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [53021] = 5, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(3007), 1, sym_identifier, - anon_sym_static, - [39867] = 12, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(3009), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2153), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [39914] = 16, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2009), 1, + STATE(2178), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [53040] = 5, + ACTIONS(1070), 1, + anon_sym_LBRACE, + ACTIONS(1072), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2173), 1, - anon_sym_STAR, - ACTIONS(2175), 1, - anon_sym_async, - ACTIONS(2179), 1, - anon_sym_static, - ACTIONS(2181), 1, - aux_sym_method_definition_token1, - ACTIONS(2183), 1, - anon_sym_get, - ACTIONS(2185), 1, - anon_sym_set, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + ACTIONS(3011), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1688), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [53059] = 6, + ACTIONS(2929), 1, + anon_sym_EQ, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1708), 1, + sym__initializer, + STATE(1917), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3013), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53080] = 5, + ACTIONS(3018), 1, + anon_sym_BQUOTE, + ACTIONS(3020), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3015), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1336), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [53099] = 6, + ACTIONS(607), 1, + anon_sym_BQUOTE, + ACTIONS(1831), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(3023), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2177), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1114), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [39969] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2187), 1, - anon_sym_STAR, - ACTIONS(2191), 1, - anon_sym_get, - ACTIONS(2193), 1, - anon_sym_set, + STATE(887), 2, + sym_template_string, + sym_arguments, + [53120] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2189), 2, - sym_number, - sym_private_property_identifier, - STATE(1504), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2969), 6, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [40014] = 10, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2111), 1, - anon_sym_EQ, + [53133] = 6, + ACTIONS(3025), 1, + anon_sym_catch, + ACTIONS(3027), 1, + anon_sym_finally, + STATE(1444), 1, + sym_catch_clause, + STATE(1781), 1, + sym_finally_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2130), 2, + ACTIONS(1082), 2, + anon_sym_else, + anon_sym_while, + [53154] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(651), 6, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40057] = 12, - ACTIONS(2009), 1, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [53167] = 5, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(3009), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2195), 1, - anon_sym_STAR, - ACTIONS(2197), 1, - anon_sym_async, - ACTIONS(2201), 1, - anon_sym_get, - ACTIONS(2203), 1, - anon_sym_set, + ACTIONS(3029), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2199), 2, - sym_number, - sym_private_property_identifier, - STATE(1109), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2001), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - ACTIONS(2109), 4, + STATE(2220), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [53186] = 5, + ACTIONS(3031), 1, + anon_sym_default, + ACTIONS(3033), 1, + anon_sym_RBRACE, + ACTIONS(3035), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1326), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [53205] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2946), 6, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - [40104] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2133), 1, + [53218] = 5, + ACTIONS(3031), 1, + anon_sym_default, + ACTIONS(3035), 1, + anon_sym_case, + ACTIONS(3037), 1, anon_sym_RBRACE, - STATE(1296), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40149] = 16, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2137), 1, - anon_sym_STAR, - ACTIONS(2141), 1, - anon_sym_async, - ACTIONS(2145), 1, - anon_sym_static, - ACTIONS(2147), 1, - aux_sym_method_definition_token1, - ACTIONS(2149), 1, - anon_sym_get, - ACTIONS(2151), 1, - anon_sym_set, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + STATE(1342), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [53237] = 5, + ACTIONS(2993), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3041), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2143), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(872), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1588), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [40204] = 8, - ACTIONS(854), 1, + ACTIONS(3039), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1331), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [53256] = 6, + ACTIONS(2343), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2345), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(2913), 1, + sym_identifier, + STATE(2061), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, - sym_number, - sym_private_property_identifier, - STATE(1484), 3, + STATE(2128), 2, + sym__module_export_name, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40242] = 6, - ACTIONS(2209), 1, + [53277] = 5, + ACTIONS(3043), 1, anon_sym_LPAREN, - ACTIONS(2211), 1, + ACTIONS(3045), 1, anon_sym_DOT, - STATE(1004), 1, + STATE(1578), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2205), 8, + ACTIONS(2537), 3, anon_sym_export, - anon_sym_let, anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2207), 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, - [40276] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + [53296] = 5, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(3009), 1, anon_sym_LBRACK, + ACTIONS(3047), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2213), 2, - sym_number, - sym_private_property_identifier, - STATE(1489), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, + STATE(1472), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [53315] = 6, + ACTIONS(459), 1, + anon_sym_BQUOTE, + ACTIONS(1505), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1509), 1, + anon_sym_DOT, + ACTIONS(3049), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(596), 2, + sym_template_string, + sym_arguments, + [53336] = 6, + ACTIONS(2929), 1, anon_sym_EQ, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40314] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1740), 1, + sym__initializer, + STATE(1967), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2215), 2, - sym_number, - sym_private_property_identifier, - STATE(1488), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(3051), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40352] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + [53357] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2217), 2, - sym_number, - sym_private_property_identifier, - STATE(1505), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, + ACTIONS(637), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [53370] = 5, + ACTIONS(3031), 1, + anon_sym_default, + ACTIONS(3035), 1, + anon_sym_case, + ACTIONS(3053), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1326), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [53389] = 6, + ACTIONS(81), 1, + anon_sym_BQUOTE, + ACTIONS(1525), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40390] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_DOT, + ACTIONS(3055), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, - sym_number, - sym_private_property_identifier, - STATE(1458), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2109), 4, + STATE(695), 2, + sym_template_string, + sym_arguments, + [53410] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1736), 6, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40428] = 9, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + [53423] = 5, + ACTIONS(2993), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3059), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2153), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40468] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3057), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1327), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [53442] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2219), 2, - sym_number, - sym_private_property_identifier, - STATE(1506), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(1744), 6, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40506] = 3, + [53455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2221), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2223), 11, - anon_sym_STAR, + ACTIONS(2940), 6, + sym__automatic_semicolon, 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, - [40533] = 3, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [53468] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 11, - anon_sym_STAR, + ACTIONS(1738), 6, + sym__automatic_semicolon, 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, - [40560] = 3, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [53481] = 5, + ACTIONS(3031), 1, + anon_sym_default, + ACTIONS(3035), 1, + anon_sym_case, + ACTIONS(3061), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2231), 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, - [40587] = 3, + STATE(1352), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [53500] = 5, + ACTIONS(2993), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3063), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(2989), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1336), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [53519] = 6, + ACTIONS(2929), 1, + anon_sym_EQ, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1835), 1, + sym_formal_parameters, + STATE(2120), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3065), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53540] = 3, + ACTIONS(3067), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 11, - anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3069), 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53555] = 3, + ACTIONS(3071), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1448), 4, 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, - [40614] = 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + [53569] = 3, + ACTIONS(1704), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(1706), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53583] = 6, + ACTIONS(3074), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2231), 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, - [40641] = 3, + ACTIONS(3076), 1, + anon_sym_LBRACE, + ACTIONS(3078), 1, + anon_sym_extends, + STATE(609), 1, + sym_class_body, + STATE(1909), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2233), 9, - anon_sym_export, - anon_sym_let, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, + [53603] = 3, + ACTIONS(1740), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2235), 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, - [40668] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(1742), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53617] = 3, + ACTIONS(1670), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 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, - [40695] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(1672), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53631] = 3, + ACTIONS(1674), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 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, - [40722] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(1676), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53645] = 3, + ACTIONS(1690), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2231), 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, - [40749] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(1692), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53659] = 3, + ACTIONS(1690), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2231), 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, - [40776] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2237), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(1692), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53673] = 3, + ACTIONS(1690), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2239), 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, - [40803] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(1692), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53687] = 3, + ACTIONS(1690), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 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, - [40830] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2241), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(1692), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53701] = 3, + ACTIONS(1722), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2243), 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, - [40857] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(1724), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53715] = 3, + ACTIONS(3080), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2247), 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, - [40884] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2247), 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, - [40911] = 3, + ACTIONS(3082), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53729] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2247), 11, - anon_sym_STAR, + ACTIONS(1448), 5, 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, - [40938] = 3, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACK, + [53741] = 3, + ACTIONS(3084), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(3086), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53755] = 3, + ACTIONS(3090), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3088), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [53769] = 3, + ACTIONS(3094), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3092), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [53783] = 6, + ACTIONS(3078), 1, + anon_sym_extends, + ACTIONS(3096), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2247), 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, - [40965] = 3, + ACTIONS(3098), 1, + anon_sym_LBRACE, + STATE(688), 1, + sym_class_body, + STATE(1905), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [53803] = 3, + ACTIONS(3102), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3100), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [53817] = 3, + ACTIONS(3104), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2247), 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, - [40992] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(3106), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53831] = 6, + ACTIONS(3078), 1, + anon_sym_extends, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(3108), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2247), 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, - [41019] = 3, + STATE(688), 1, + sym_class_body, + STATE(1905), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [53851] = 6, + ACTIONS(1505), 1, + anon_sym_LPAREN, + ACTIONS(3110), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2231), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3112), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, + ACTIONS(3114), 1, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41046] = 6, - ACTIONS(2253), 1, - anon_sym_AT, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + STATE(607), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2251), 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(2249), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, + [53871] = 6, + ACTIONS(3116), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [41079] = 3, + ACTIONS(3118), 1, + anon_sym_GT, + ACTIONS(3120), 1, + sym_jsx_identifier, + STATE(1906), 1, + sym_nested_identifier, + STATE(2221), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [53891] = 3, + ACTIONS(3122), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2231), 11, - anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3124), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53905] = 6, + ACTIONS(2337), 1, anon_sym_COMMA, + ACTIONS(2431), 1, + anon_sym_COLON, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(3126), 1, 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, - [41106] = 3, + STATE(1627), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [53925] = 6, + ACTIONS(3078), 1, + anon_sym_extends, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(3128), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 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, - [41133] = 3, + STATE(712), 1, + sym_class_body, + STATE(1899), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [53945] = 6, + ACTIONS(1525), 1, + anon_sym_LPAREN, + ACTIONS(3130), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3132), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, + ACTIONS(3134), 1, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41160] = 4, - ACTIONS(2256), 1, - sym__automatic_semicolon, + STATE(711), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [53965] = 6, + ACTIONS(3136), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(499), 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, - [41189] = 3, + ACTIONS(3138), 1, + anon_sym_GT, + ACTIONS(3140), 1, + sym_jsx_identifier, + STATE(1876), 1, + sym_nested_identifier, + STATE(2155), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [53985] = 3, + ACTIONS(3094), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 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, - [41216] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2258), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(3092), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [53999] = 3, + ACTIONS(3142), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2260), 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, - [41243] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(3144), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [54013] = 6, + ACTIONS(3078), 1, + anon_sym_extends, + ACTIONS(3146), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 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, + ACTIONS(3148), 1, + anon_sym_LBRACE, + STATE(884), 1, + sym_class_body, + STATE(1745), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54033] = 6, + ACTIONS(91), 1, anon_sym_AT, - aux_sym_method_definition_token1, - [41270] = 3, + ACTIONS(3150), 1, + anon_sym_export, + ACTIONS(3152), 1, + anon_sym_class, + STATE(1399), 1, + aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [54053] = 6, + ACTIONS(1831), 1, + anon_sym_LPAREN, + ACTIONS(3154), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3156), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, + ACTIONS(3158), 1, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41297] = 4, - ACTIONS(2262), 1, - sym__automatic_semicolon, + STATE(921), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [54073] = 6, + ACTIONS(3160), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(503), 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, - [41326] = 3, + ACTIONS(3162), 1, + anon_sym_GT, + ACTIONS(3164), 1, + sym_jsx_identifier, + STATE(1782), 1, + sym_nested_identifier, + STATE(2130), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [54093] = 6, + ACTIONS(3078), 1, + anon_sym_extends, + ACTIONS(3148), 1, + anon_sym_LBRACE, + ACTIONS(3166), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 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, - [41353] = 3, + STATE(922), 1, + sym_class_body, + STATE(1783), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2264), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [54113] = 6, + ACTIONS(3078), 1, + anon_sym_extends, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2266), 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, - [41380] = 3, + STATE(712), 1, + sym_class_body, + STATE(1899), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [54133] = 6, + ACTIONS(3170), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(499), 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, - [41406] = 3, + ACTIONS(3172), 1, + anon_sym_GT, + ACTIONS(3174), 1, + sym_jsx_identifier, + STATE(1842), 1, + sym_nested_identifier, + STATE(2156), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(521), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(519), 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, + [54153] = 5, + ACTIONS(3176), 1, anon_sym_AT, - aux_sym_method_definition_token1, - [41432] = 4, - ACTIONS(2272), 1, - anon_sym_SEMI, + STATE(1399), 1, + aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2268), 7, + ACTIONS(2557), 2, anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2270), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41460] = 9, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_EQ_GT, + anon_sym_class, + [54171] = 3, + ACTIONS(3122), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, - sym_number, - sym_private_property_identifier, - STATE(1610), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [41498] = 11, - ACTIONS(854), 1, + ACTIONS(3124), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54185] = 5, + ACTIONS(2343), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2345), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2279), 1, - anon_sym_STAR, - ACTIONS(2283), 1, - anon_sym_get, - ACTIONS(2285), 1, - anon_sym_set, + ACTIONS(3179), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2281), 2, - sym_number, - sym_private_property_identifier, - STATE(1462), 3, + STATE(2204), 2, + sym__module_export_name, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [54203] = 6, + ACTIONS(3181), 1, sym_identifier, - anon_sym_static, - [41540] = 10, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2287), 1, - anon_sym_STAR, + ACTIONS(3183), 1, + anon_sym_GT, + ACTIONS(3185), 1, + sym_jsx_identifier, + STATE(1871), 1, + sym_nested_identifier, + STATE(2131), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2289), 2, - anon_sym_get, - anon_sym_set, - STATE(1610), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [54223] = 3, + ACTIONS(3090), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3088), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54237] = 6, + ACTIONS(2337), 1, + anon_sym_COMMA, + ACTIONS(2431), 1, + anon_sym_COLON, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(3187), 1, + anon_sym_RBRACE, + STATE(1669), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54257] = 3, + ACTIONS(3189), 1, sym_identifier, - anon_sym_static, - [41580] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2291), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(3191), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [54271] = 6, + ACTIONS(3193), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2293), 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, - [41606] = 3, + ACTIONS(3195), 1, + anon_sym_GT, + ACTIONS(3197), 1, + sym_jsx_identifier, + STATE(1253), 1, + sym_nested_identifier, + STATE(1278), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2295), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [54291] = 6, + ACTIONS(3078), 1, + anon_sym_extends, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(3199), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2297), 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, - [41632] = 13, + STATE(688), 1, + sym_class_body, + STATE(1905), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54311] = 6, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(768), 1, - anon_sym_var, - ACTIONS(782), 1, + ACTIONS(3201), 1, + anon_sym_export, + ACTIONS(3203), 1, anon_sym_class, - ACTIONS(784), 1, - anon_sym_async, - ACTIONS(786), 1, - anon_sym_function, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2299), 1, - anon_sym_default, - STATE(378), 1, - sym_declaration, - STATE(1006), 1, - sym_decorator, - STATE(1220), 1, + STATE(1399), 1, aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(770), 2, - anon_sym_let, - anon_sym_const, - STATE(412), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [41678] = 11, - ACTIONS(854), 1, + [54331] = 5, + ACTIONS(2343), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2345), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2301), 1, - anon_sym_STAR, - ACTIONS(2305), 1, - anon_sym_get, - ACTIONS(2307), 1, - anon_sym_set, + ACTIONS(3205), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2303), 2, - sym_number, - sym_private_property_identifier, - STATE(1578), 3, + STATE(1692), 2, + sym__module_export_name, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [41720] = 12, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2309), 1, - anon_sym_STAR, - ACTIONS(2311), 1, - anon_sym_async, - ACTIONS(2315), 1, - anon_sym_get, - ACTIONS(2317), 1, - anon_sym_set, + [54349] = 3, + ACTIONS(3207), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2313), 2, - sym_number, - sym_private_property_identifier, - STATE(1558), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, + ACTIONS(1448), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [54363] = 6, + ACTIONS(3195), 1, + anon_sym_GT, + ACTIONS(3210), 1, sym_identifier, - anon_sym_static, - [41764] = 10, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2155), 1, - anon_sym_STAR, + ACTIONS(3212), 1, + sym_jsx_identifier, + STATE(1260), 1, + sym_nested_identifier, + STATE(1267), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2159), 2, - anon_sym_get, - anon_sym_set, - STATE(1484), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [54383] = 6, + ACTIONS(3078), 1, + anon_sym_extends, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(3214), 1, sym_identifier, - anon_sym_static, - [41804] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2319), 1, - anon_sym_STAR, - ACTIONS(2323), 1, - anon_sym_get, - ACTIONS(2325), 1, - anon_sym_set, + STATE(712), 1, + sym_class_body, + STATE(1899), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2321), 2, - sym_number, - sym_private_property_identifier, - STATE(1508), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [41846] = 3, + [54403] = 3, + ACTIONS(1704), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2327), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2329), 10, - anon_sym_STAR, + ACTIONS(1706), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54417] = 3, + ACTIONS(3216), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1453), 4, + 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, - [41872] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR, - ACTIONS(2335), 1, - anon_sym_get, - ACTIONS(2337), 1, - anon_sym_set, + anon_sym_RPAREN, + anon_sym_RBRACK, + [54431] = 3, + ACTIONS(1740), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 2, - sym_number, - sym_private_property_identifier, - STATE(1405), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(1742), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54445] = 6, + ACTIONS(3076), 1, + anon_sym_LBRACE, + ACTIONS(3078), 1, + anon_sym_extends, + ACTIONS(3218), 1, sym_identifier, - anon_sym_static, - [41914] = 3, + STATE(594), 1, + sym_class_body, + STATE(1760), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2268), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2270), 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, - [41940] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, + [54465] = 4, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2431), 2, anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2472), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54481] = 6, + ACTIONS(3195), 1, + anon_sym_GT, + ACTIONS(3220), 1, + sym_identifier, + ACTIONS(3222), 1, + sym_jsx_identifier, + STATE(1252), 1, + sym_nested_identifier, + STATE(1264), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54501] = 6, + ACTIONS(3195), 1, + anon_sym_GT, + ACTIONS(3224), 1, + sym_identifier, + ACTIONS(3226), 1, + sym_jsx_identifier, + STATE(1261), 1, + sym_nested_identifier, + STATE(1287), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, - sym_number, - sym_private_property_identifier, - STATE(1484), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [54521] = 6, + ACTIONS(3195), 1, + anon_sym_GT, + ACTIONS(3228), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [41975] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(3230), 1, + sym_jsx_identifier, + STATE(1256), 1, + sym_nested_identifier, + STATE(1263), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2339), 2, - sym_number, - sym_private_property_identifier, - STATE(1605), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42010] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + [54541] = 3, + ACTIONS(1670), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2341), 2, - sym_number, - sym_private_property_identifier, - STATE(1409), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42045] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(1672), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54555] = 3, + ACTIONS(1674), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2343), 2, - sym_number, - sym_private_property_identifier, - STATE(1585), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42080] = 3, + ACTIONS(1676), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54569] = 3, + ACTIONS(1690), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1448), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1450), 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, - [42105] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(1692), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54583] = 3, + ACTIONS(1690), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2345), 2, - sym_number, - sym_private_property_identifier, - STATE(1408), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42140] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2347), 1, - anon_sym_STAR, - ACTIONS(2349), 1, - anon_sym_async, - ACTIONS(2353), 1, - anon_sym_get, - ACTIONS(2355), 1, - anon_sym_set, + ACTIONS(1692), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54597] = 3, + ACTIONS(1690), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2351), 2, - sym_number, - sym_private_property_identifier, - STATE(1410), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [42181] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(1692), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54611] = 3, + ACTIONS(1690), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1692), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54625] = 5, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(2470), 1, + anon_sym_RBRACE, + STATE(1682), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2431), 2, anon_sym_LPAREN, + anon_sym_COLON, + [54643] = 3, + ACTIONS(3090), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2357), 2, - sym_number, - sym_private_property_identifier, - STATE(1414), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42216] = 10, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2117), 1, - anon_sym_STAR, - ACTIONS(2359), 1, - anon_sym_async, + ACTIONS(3088), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54657] = 3, + ACTIONS(1722), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2171), 2, - anon_sym_get, - anon_sym_set, - STATE(1458), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [42255] = 12, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(768), 1, - anon_sym_var, - ACTIONS(782), 1, - anon_sym_class, - ACTIONS(784), 1, - anon_sym_async, - ACTIONS(786), 1, - anon_sym_function, - ACTIONS(2361), 1, - anon_sym_default, - STATE(378), 1, - sym_declaration, - STATE(1006), 1, - sym_decorator, - STATE(1220), 1, - aux_sym_export_statement_repeat1, + ACTIONS(1724), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54671] = 3, + ACTIONS(3234), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(770), 2, - anon_sym_let, - anon_sym_const, - STATE(412), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [42298] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(3232), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54685] = 3, + ACTIONS(3090), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, - sym_number, - sym_private_property_identifier, - STATE(1610), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42333] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(3088), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [54699] = 4, + ACTIONS(3238), 1, + anon_sym_in, + ACTIONS(3240), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2363), 2, - sym_number, - sym_private_property_identifier, - STATE(1571), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42368] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2365), 1, - anon_sym_STAR, - ACTIONS(2367), 1, - anon_sym_async, - ACTIONS(2371), 1, - anon_sym_get, - ACTIONS(2373), 1, - anon_sym_set, + ACTIONS(3236), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [54715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2369), 2, - sym_number, - sym_private_property_identifier, - STATE(1487), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [42409] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(1643), 5, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_COLON, + [54727] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2375), 2, - sym_number, - sym_private_property_identifier, - STATE(1499), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42444] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(1647), 5, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_COLON, + [54739] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2377), 2, - sym_number, - sym_private_property_identifier, - STATE(1501), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(2545), 5, anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42479] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_class, + anon_sym_AT, + [54751] = 4, + ACTIONS(2929), 1, + anon_sym_EQ, + STATE(1581), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2379), 2, - sym_number, - sym_private_property_identifier, - STATE(1467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42514] = 10, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, + ACTIONS(2925), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [54767] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [42553] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(1643), 4, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [54778] = 5, + ACTIONS(3242), 1, + anon_sym_COMMA, + ACTIONS(3244), 1, + anon_sym_RPAREN, + ACTIONS(3246), 1, + anon_sym_EQ, + STATE(1591), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2381), 2, - sym_number, - sym_private_property_identifier, - STATE(1509), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42588] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + [54795] = 5, + ACTIONS(769), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3248), 1, + anon_sym_RBRACK, + STATE(1610), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2383), 2, - sym_number, - sym_private_property_identifier, - STATE(1614), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42623] = 8, - ACTIONS(854), 1, + [54812] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3250), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + STATE(1447), 1, + aux_sym_string_repeat1, + ACTIONS(3252), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [54829] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3250), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + STATE(1451), 1, + aux_sym_string_repeat2, + ACTIONS(3254), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [54846] = 5, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(3256), 1, + anon_sym_extends, + STATE(694), 1, + sym_class_body, + STATE(1880), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2385), 2, - sym_number, - sym_private_property_identifier, - STATE(1531), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42658] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + [54863] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2387), 2, - sym_number, - sym_private_property_identifier, - STATE(1532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42693] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(1647), 4, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [54874] = 4, + ACTIONS(3027), 1, + anon_sym_finally, + STATE(2112), 1, + sym_finally_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1120), 2, + anon_sym_else, + anon_sym_while, + [54889] = 5, + ACTIONS(3256), 1, + anon_sym_extends, + ACTIONS(3258), 1, + anon_sym_LBRACE, + STATE(1612), 1, + sym_class_body, + STATE(1911), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2389), 2, - sym_number, - sym_private_property_identifier, - STATE(1516), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42728] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + [54906] = 5, + ACTIONS(3260), 1, + anon_sym_with, + ACTIONS(3262), 1, + anon_sym_SEMI, + ACTIONS(3264), 1, + sym__automatic_semicolon, + STATE(1925), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2391), 2, - sym_number, - sym_private_property_identifier, - STATE(1517), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42763] = 8, - ACTIONS(854), 1, + [54923] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3266), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + STATE(1447), 1, + aux_sym_string_repeat1, + ACTIONS(3268), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [54940] = 4, + ACTIONS(3271), 1, + anon_sym_COMMA, + STATE(1531), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2393), 2, - sym_number, - sym_private_property_identifier, - STATE(1519), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42798] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(3273), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54955] = 4, + ACTIONS(3271), 1, + anon_sym_COMMA, + STATE(1531), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, - sym_number, - sym_private_property_identifier, - STATE(1520), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42833] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(3275), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54970] = 5, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(3256), 1, + anon_sym_extends, + STATE(653), 1, + sym_class_body, + STATE(1928), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2397), 2, - sym_number, - sym_private_property_identifier, - STATE(1422), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42868] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, + [54987] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3277), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + STATE(1451), 1, + aux_sym_string_repeat2, + ACTIONS(3279), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [55004] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2399), 2, - sym_number, - sym_private_property_identifier, - STATE(1553), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42903] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(1128), 4, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_SEMI, + anon_sym_while, + [55015] = 5, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(3256), 1, + anon_sym_extends, + STATE(667), 1, + sym_class_body, + STATE(1945), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2401), 2, - sym_number, - sym_private_property_identifier, - STATE(1554), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42938] = 3, + [55032] = 5, + ACTIONS(3256), 1, + anon_sym_extends, + ACTIONS(3258), 1, + anon_sym_LBRACE, + STATE(1577), 1, + sym_class_body, + STATE(1952), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1512), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1514), 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, - [42963] = 3, + [55049] = 5, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(3256), 1, + anon_sym_extends, + STATE(671), 1, + sym_class_body, + STATE(2013), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1528), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1530), 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, - [42988] = 3, + [55066] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2205), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2207), 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, - [43013] = 12, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(768), 1, - anon_sym_var, - ACTIONS(782), 1, - anon_sym_class, - ACTIONS(784), 1, - anon_sym_async, - ACTIONS(786), 1, - anon_sym_function, - ACTIONS(2299), 1, - anon_sym_default, - STATE(378), 1, - sym_declaration, - STATE(1006), 1, - sym_decorator, - STATE(1220), 1, - aux_sym_export_statement_repeat1, + ACTIONS(1738), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [55077] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(770), 2, - anon_sym_let, - anon_sym_const, - STATE(412), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [43056] = 3, + ACTIONS(1148), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(3282), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55090] = 4, + ACTIONS(1923), 1, + anon_sym_COMMA, + STATE(1478), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2403), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2405), 8, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(2961), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55105] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3284), 1, + sym_html_character_reference, + ACTIONS(3286), 1, anon_sym_DQUOTE, + ACTIONS(3288), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1466), 1, + aux_sym__jsx_string_repeat1, + [55124] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3286), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [43081] = 8, - ACTIONS(854), 1, + ACTIONS(3290), 1, + sym_html_character_reference, + ACTIONS(3292), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1467), 1, + aux_sym__jsx_string_repeat2, + [55143] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3294), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + STATE(1468), 1, + aux_sym_string_repeat1, + ACTIONS(3296), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [55160] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3294), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + STATE(1469), 1, + aux_sym_string_repeat2, + ACTIONS(3298), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [55177] = 5, + ACTIONS(3256), 1, + anon_sym_extends, + ACTIONS(3300), 1, + anon_sym_LBRACE, + STATE(82), 1, + sym_class_body, + STATE(2087), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2407), 2, - sym_number, - sym_private_property_identifier, - STATE(1465), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43116] = 3, + [55194] = 5, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3302), 1, + anon_sym_COMMA, + ACTIONS(3304), 1, + anon_sym_RPAREN, + STATE(1597), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2409), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2411), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [55211] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1736), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [55222] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3306), 1, + sym_html_character_reference, + ACTIONS(3308), 1, anon_sym_DQUOTE, + ACTIONS(3310), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1490), 1, + aux_sym__jsx_string_repeat1, + [55241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3308), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [43141] = 8, - ACTIONS(854), 1, + ACTIONS(3312), 1, + sym_html_character_reference, + ACTIONS(3314), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1492), 1, + aux_sym__jsx_string_repeat2, + [55260] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3316), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + STATE(1447), 1, + aux_sym_string_repeat1, + ACTIONS(3252), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [55277] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3316), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + STATE(1451), 1, + aux_sym_string_repeat2, + ACTIONS(3254), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [55294] = 5, + ACTIONS(3148), 1, + anon_sym_LBRACE, + ACTIONS(3256), 1, + anon_sym_extends, + STATE(927), 1, + sym_class_body, + STATE(1785), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2413), 2, - sym_number, - sym_private_property_identifier, - STATE(1502), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43176] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + [55311] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, - sym_number, - sym_private_property_identifier, - STATE(1610), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43208] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(1744), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [55322] = 4, + ACTIONS(3318), 1, + anon_sym_EQ, + STATE(1705), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2415), 2, - sym_number, - sym_private_property_identifier, - STATE(1515), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43240] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(2927), 2, + anon_sym_in, + anon_sym_of, + [55337] = 5, + ACTIONS(3148), 1, + anon_sym_LBRACE, + ACTIONS(3256), 1, + anon_sym_extends, + STATE(863), 1, + sym_class_body, + STATE(1793), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2417), 2, - sym_number, - sym_private_property_identifier, - STATE(1485), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43272] = 7, - ACTIONS(854), 1, + [55354] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3320), 1, + anon_sym_DQUOTE, + STATE(1476), 1, + aux_sym_string_repeat1, + ACTIONS(3322), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [55371] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3320), 1, + anon_sym_SQUOTE, + STATE(1477), 1, + aux_sym_string_repeat2, + ACTIONS(3324), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [55388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3326), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + STATE(1447), 1, + aux_sym_string_repeat1, + ACTIONS(3252), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [55405] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3326), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + STATE(1451), 1, + aux_sym_string_repeat2, + ACTIONS(3254), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [55422] = 4, + ACTIONS(3328), 1, + anon_sym_COMMA, + STATE(1478), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2419), 2, - sym_number, - sym_private_property_identifier, - STATE(1463), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43304] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1760), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55437] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3331), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + STATE(1541), 1, + aux_sym_string_repeat2, + ACTIONS(3333), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [55454] = 4, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2421), 2, - sym_number, - sym_private_property_identifier, - STATE(1518), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43336] = 7, - ACTIONS(854), 1, + STATE(2176), 2, + sym_namespace_import, + sym_named_imports, + [55469] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3335), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + STATE(1484), 1, + aux_sym_string_repeat1, + ACTIONS(3337), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [55486] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3335), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + STATE(1485), 1, + aux_sym_string_repeat2, + ACTIONS(3339), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [55503] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(3341), 1, + anon_sym_class, + STATE(1399), 1, + aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2423), 2, - sym_number, - sym_private_property_identifier, - STATE(1530), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43368] = 7, - ACTIONS(854), 1, + [55520] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3343), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + STATE(1447), 1, + aux_sym_string_repeat1, + ACTIONS(3252), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [55537] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3343), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + STATE(1451), 1, + aux_sym_string_repeat2, + ACTIONS(3254), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [55554] = 5, + ACTIONS(3260), 1, + anon_sym_with, + ACTIONS(3345), 1, + anon_sym_SEMI, + ACTIONS(3347), 1, + sym__automatic_semicolon, + STATE(2081), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2375), 2, - sym_number, - sym_private_property_identifier, - STATE(1499), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43400] = 2, - ACTIONS(5), 2, - sym_html_comment, + [55571] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 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, - [43422] = 7, - ACTIONS(854), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3349), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + STATE(1489), 1, + aux_sym_string_repeat1, + ACTIONS(3351), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [55588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3349), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, + STATE(1544), 1, + aux_sym_string_repeat2, + ACTIONS(3353), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [55605] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(1447), 1, + aux_sym_string_repeat1, + ACTIONS(3252), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [55622] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 2, - sym_number, - sym_private_property_identifier, - STATE(1552), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43454] = 7, - ACTIONS(854), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3357), 1, + sym_html_character_reference, + ACTIONS(3360), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3362), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1490), 1, + aux_sym__jsx_string_repeat1, + [55641] = 4, + ACTIONS(3271), 1, + anon_sym_COMMA, + STATE(1502), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2429), 2, - sym_number, - sym_private_property_identifier, - STATE(1500), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43486] = 2, - ACTIONS(5), 2, - sym_html_comment, + ACTIONS(3365), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55656] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2431), 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, - [43508] = 2, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(2433), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43530] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(3367), 1, + sym_html_character_reference, + ACTIONS(3370), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3372), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1492), 1, + aux_sym__jsx_string_repeat2, + [55675] = 4, + ACTIONS(3271), 1, + anon_sym_COMMA, + STATE(1507), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, - sym_number, - sym_private_property_identifier, - STATE(1458), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43562] = 7, - ACTIONS(854), 1, + ACTIONS(3375), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55690] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3377), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, + STATE(1496), 1, + aux_sym_string_repeat1, + ACTIONS(3379), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [55707] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(3377), 1, + anon_sym_SQUOTE, + STATE(1497), 1, + aux_sym_string_repeat2, + ACTIONS(3381), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [55724] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2435), 2, - sym_number, - sym_private_property_identifier, - STATE(1503), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43594] = 7, - ACTIONS(854), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3383), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + STATE(1447), 1, + aux_sym_string_repeat1, + ACTIONS(3252), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [55741] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + STATE(1451), 1, + aux_sym_string_repeat2, + ACTIONS(3254), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [55758] = 5, + ACTIONS(3256), 1, + anon_sym_extends, + ACTIONS(3300), 1, + anon_sym_LBRACE, + STATE(91), 1, + sym_class_body, + STATE(1893), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2437), 2, - sym_number, - sym_private_property_identifier, - STATE(1507), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43626] = 2, + [55775] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(3152), 1, + anon_sym_class, + STATE(1399), 1, + aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2439), 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, - [43648] = 7, - ACTIONS(854), 1, + [55792] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + STATE(1440), 1, + aux_sym_string_repeat1, + ACTIONS(3387), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [55809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3385), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + STATE(1441), 1, + aux_sym_string_repeat2, + ACTIONS(3389), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [55826] = 4, + ACTIONS(3271), 1, + anon_sym_COMMA, + STATE(1531), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2441), 2, - sym_number, - sym_private_property_identifier, - STATE(1416), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43680] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3391), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55841] = 3, + ACTIONS(3393), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2443), 2, - sym_number, - sym_private_property_identifier, - STATE(1380), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(2781), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [55854] = 5, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3395), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43712] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3397), 1, + anon_sym_STAR, + STATE(2095), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43744] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + [55871] = 4, + ACTIONS(3399), 1, + anon_sym_from, + STATE(1962), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, - sym_number, - sym_private_property_identifier, - STATE(1484), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43776] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3401), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55886] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(3403), 1, + anon_sym_class, + STATE(1399), 1, + aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2445), 2, - sym_number, - sym_private_property_identifier, - STATE(1583), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43808] = 2, + [55903] = 4, + ACTIONS(3271), 1, + anon_sym_COMMA, + STATE(1531), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2447), 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, - [43830] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3405), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55918] = 5, + ACTIONS(3256), 1, + anon_sym_extends, + ACTIONS(3407), 1, + anon_sym_LBRACE, + STATE(422), 1, + sym_class_body, + STATE(1702), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, - sym_comment, - ACTIONS(2363), 2, - sym_number, - sym_private_property_identifier, - STATE(1571), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43862] = 11, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2449), 1, - sym_identifier, - ACTIONS(2451), 1, - anon_sym_STAR, - ACTIONS(2453), 1, + sym_comment, + [55935] = 5, + ACTIONS(3256), 1, + anon_sym_extends, + ACTIONS(3407), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + STATE(409), 1, + sym_class_body, + STATE(1918), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55952] = 3, + ACTIONS(3409), 1, anon_sym_DOT, - STATE(1223), 1, - sym_string, - STATE(1446), 1, - sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2455), 2, + ACTIONS(2781), 3, anon_sym_LPAREN, sym_optional_chain, - STATE(1713), 2, - sym_namespace_import, - sym_named_imports, - [43899] = 8, - ACTIONS(2459), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2465), 1, - anon_sym_LT_SLASH, - STATE(547), 1, - sym_jsx_closing_element, - STATE(1033), 1, - sym_jsx_opening_element, + anon_sym_BQUOTE, + [55965] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(3203), 1, + anon_sym_class, + STATE(1399), 1, + aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1045), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [43929] = 8, - ACTIONS(2459), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2469), 1, - anon_sym_LT_SLASH, - STATE(1033), 1, - sym_jsx_opening_element, - STATE(1172), 1, - sym_jsx_closing_element, + [55982] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(3411), 1, + anon_sym_class, + STATE(1399), 1, + aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2467), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1035), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [43959] = 11, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2475), 1, + [55999] = 4, + ACTIONS(2431), 1, anon_sym_COLON, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2483), 1, - anon_sym_SLASH_GT, - STATE(1054), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(2433), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [43995] = 8, - ACTIONS(2459), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2469), 1, - anon_sym_LT_SLASH, - STATE(1033), 1, - sym_jsx_opening_element, - STATE(1134), 1, - sym_jsx_closing_element, + ACTIONS(3413), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56014] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1045), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [44025] = 11, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2431), 2, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2485), 1, - anon_sym_SLASH_GT, - STATE(1066), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(2503), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56027] = 5, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3415), 1, + sym_identifier, + ACTIONS(3417), 1, + anon_sym_STAR, + STATE(2096), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44061] = 8, - ACTIONS(2459), 1, + [56044] = 5, + ACTIONS(3076), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2465), 1, - anon_sym_LT_SLASH, - STATE(531), 1, - sym_jsx_closing_element, - STATE(1033), 1, - sym_jsx_opening_element, + ACTIONS(3256), 1, + anon_sym_extends, + STATE(586), 1, + sym_class_body, + STATE(1932), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1032), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [44091] = 8, - ACTIONS(2459), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2489), 1, - anon_sym_LT_SLASH, - STATE(726), 1, - sym_jsx_closing_element, - STATE(1033), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, + [56061] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1045), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [44121] = 8, - ACTIONS(2459), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2493), 1, - anon_sym_LT_SLASH, - STATE(1033), 1, - sym_jsx_opening_element, - STATE(1162), 1, - sym_jsx_closing_element, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3331), 1, + anon_sym_DQUOTE, + STATE(1540), 1, + aux_sym_string_repeat1, + ACTIONS(3419), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [56078] = 5, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3421), 1, + sym_identifier, + ACTIONS(3423), 1, + anon_sym_STAR, + STATE(1766), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2491), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1041), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [44151] = 11, - ACTIONS(2471), 1, + [56095] = 5, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3425), 1, sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2495), 1, - anon_sym_SLASH_GT, - STATE(1072), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3427), 1, + anon_sym_STAR, + STATE(1749), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44187] = 8, - ACTIONS(2459), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2493), 1, - anon_sym_LT_SLASH, - STATE(1033), 1, - sym_jsx_opening_element, - STATE(1178), 1, - sym_jsx_closing_element, + [56112] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(3429), 1, + anon_sym_class, + STATE(1399), 1, + aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1045), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [44217] = 11, - ACTIONS(2471), 1, + [56129] = 5, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2497), 1, - anon_sym_SLASH_GT, - STATE(1055), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3433), 1, + anon_sym_STAR, + STATE(1771), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44253] = 8, - ACTIONS(2459), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2489), 1, - anon_sym_LT_SLASH, - STATE(678), 1, - sym_jsx_closing_element, - STATE(1033), 1, - sym_jsx_opening_element, + [56146] = 4, + ACTIONS(3399), 1, + anon_sym_from, + STATE(1826), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2499), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1038), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [44283] = 10, - ACTIONS(2471), 1, + ACTIONS(3435), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56161] = 4, + ACTIONS(3437), 1, + anon_sym_COMMA, + STATE(1523), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2095), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [56176] = 5, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3440), 1, sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2497), 1, - anon_sym_SLASH_GT, - STATE(1061), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3442), 1, + anon_sym_STAR, + STATE(2095), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44316] = 7, - ACTIONS(2501), 1, - anon_sym_LBRACE, - ACTIONS(2507), 1, - anon_sym_LT, - ACTIONS(2510), 1, - anon_sym_LT_SLASH, - STATE(1033), 1, - sym_jsx_opening_element, + [56193] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(3444), 1, + anon_sym_class, + STATE(1399), 1, + aux_sym_export_statement_repeat1, + STATE(1583), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2504), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1045), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [44343] = 10, - ACTIONS(2471), 1, + [56210] = 5, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3446), 1, sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2483), 1, - anon_sym_SLASH_GT, - STATE(1064), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3448), 1, + anon_sym_STAR, + STATE(2096), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44376] = 10, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2497), 1, - anon_sym_SLASH_GT, - STATE(1058), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + [56227] = 4, + ACTIONS(3260), 1, + anon_sym_with, + STATE(1839), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44409] = 10, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2483), 1, - anon_sym_SLASH_GT, - STATE(1059), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3450), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56242] = 5, + ACTIONS(769), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3452), 1, + anon_sym_RBRACK, + STATE(1635), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44442] = 10, - ACTIONS(2471), 1, + [56259] = 5, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2485), 1, - anon_sym_SLASH_GT, - STATE(1067), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3456), 1, + anon_sym_STAR, + STATE(2095), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44475] = 10, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2495), 1, - anon_sym_SLASH_GT, - STATE(1071), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + [56276] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44508] = 10, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2495), 1, - anon_sym_SLASH_GT, - STATE(1068), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(1823), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [56287] = 4, + ACTIONS(3458), 1, + anon_sym_COMMA, + STATE(1531), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44541] = 10, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2485), 1, - anon_sym_SLASH_GT, - STATE(1069), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3461), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56302] = 3, + ACTIONS(3463), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44574] = 7, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2512), 1, - anon_sym_LT, - ACTIONS(2514), 1, - anon_sym_DQUOTE, - ACTIONS(2516), 1, - anon_sym_SQUOTE, - STATE(1039), 1, - sym_jsx_opening_element, + ACTIONS(1453), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [56315] = 4, + ACTIONS(3260), 1, + anon_sym_with, + STATE(1866), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1192), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [44600] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2518), 1, - anon_sym_GT, - ACTIONS(2520), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3465), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56330] = 4, + ACTIONS(3271), 1, + anon_sym_COMMA, + STATE(1448), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44630] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3467), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56345] = 5, + ACTIONS(3076), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2518), 1, - anon_sym_GT, - ACTIONS(2522), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3256), 1, + anon_sym_extends, + STATE(608), 1, + sym_class_body, + STATE(1734), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44660] = 7, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2512), 1, - anon_sym_LT, - ACTIONS(2514), 1, - anon_sym_DQUOTE, - ACTIONS(2516), 1, - anon_sym_SQUOTE, - STATE(1039), 1, - sym_jsx_opening_element, + [56362] = 4, + ACTIONS(3271), 1, + anon_sym_COMMA, + STATE(1449), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1193), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [44686] = 9, - ACTIONS(2471), 1, + ACTIONS(3469), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56377] = 5, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3471), 1, sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2483), 1, - anon_sym_SLASH_GT, - STATE(1063), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3473), 1, + anon_sym_STAR, + STATE(1882), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44716] = 9, - ACTIONS(2471), 1, + [56394] = 5, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3475), 1, sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2524), 1, - anon_sym_GT, - ACTIONS(2526), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3477), 1, + anon_sym_STAR, + STATE(2096), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44746] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2524), 1, - anon_sym_GT, - ACTIONS(2528), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + [56411] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44776] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2485), 1, - anon_sym_SLASH_GT, - STATE(1074), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(2431), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [56422] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3479), 1, + anon_sym_DQUOTE, + STATE(1447), 1, + aux_sym_string_repeat1, + ACTIONS(3252), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [56439] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3479), 1, + anon_sym_SQUOTE, + STATE(1451), 1, + aux_sym_string_repeat2, + ACTIONS(3254), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [56456] = 3, + ACTIONS(2783), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44806] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2530), 1, - anon_sym_GT, - ACTIONS(2532), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(2781), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [56469] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3481), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [56480] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3355), 1, + anon_sym_SQUOTE, + STATE(1451), 1, + aux_sym_string_repeat2, + ACTIONS(3254), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [56497] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(2105), 1, + anon_sym_RPAREN, + STATE(1676), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44836] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2534), 1, - anon_sym_GT, - ACTIONS(2536), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + [56511] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(2071), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44866] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2534), 1, - anon_sym_GT, - ACTIONS(2538), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + [56525] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44896] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(1154), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [56535] = 4, + ACTIONS(3483), 1, + anon_sym_COLON, + ACTIONS(3485), 1, anon_sym_GT, - ACTIONS(2540), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3487), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44926] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2495), 1, - anon_sym_SLASH_GT, - STATE(1073), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + [56549] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(3489), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44956] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2518), 1, - anon_sym_GT, - ACTIONS(2542), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + [56563] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44986] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2530), 1, - anon_sym_GT, - ACTIONS(2544), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(637), 3, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + [56573] = 3, + ACTIONS(3491), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45016] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2530), 1, - anon_sym_GT, - ACTIONS(2546), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(651), 2, + anon_sym_else, + anon_sym_while, + [56585] = 4, + ACTIONS(3493), 1, + anon_sym_COMMA, + ACTIONS(3496), 1, + anon_sym_RBRACE, + STATE(1552), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45046] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2524), 1, - anon_sym_GT, - ACTIONS(2548), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + [56599] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45076] = 8, - ACTIONS(2550), 1, - sym_identifier, - ACTIONS(2553), 1, - anon_sym_LBRACE, - ACTIONS(2558), 1, - sym_jsx_identifier, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(1134), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [56609] = 3, + ACTIONS(1885), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2556), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45104] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2524), 1, - anon_sym_GT, - ACTIONS(2561), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(1818), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [56621] = 4, + ACTIONS(2785), 1, + anon_sym_DQUOTE, + ACTIONS(2787), 1, + anon_sym_SQUOTE, + STATE(1586), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45134] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2518), 1, - anon_sym_GT, - ACTIONS(2563), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + [56635] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45164] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, + ACTIONS(629), 3, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + [56645] = 4, + ACTIONS(3498), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2534), 1, - anon_sym_GT, - ACTIONS(2565), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3500), 1, + anon_sym_LPAREN, + STATE(420), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45194] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2534), 1, - anon_sym_GT, - ACTIONS(2567), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + [56659] = 4, + ACTIONS(3502), 1, + anon_sym_LPAREN, + ACTIONS(3504), 1, + anon_sym_await, + STATE(61), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45224] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2497), 1, - anon_sym_SLASH_GT, - STATE(1062), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + [56673] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45254] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2571), 1, + ACTIONS(3506), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [56683] = 4, + ACTIONS(2285), 1, anon_sym_COMMA, - ACTIONS(2573), 1, + ACTIONS(3508), 1, anon_sym_RBRACE, - STATE(1295), 1, - sym_export_specifier, + STATE(1615), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, - sym__module_export_name, - sym_string, - [45281] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2575), 1, + [56697] = 3, + ACTIONS(3510), 1, sym_identifier, - ACTIONS(2577), 1, - anon_sym_COMMA, - ACTIONS(2579), 1, - anon_sym_RBRACE, - STATE(1299), 1, - sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1628), 2, - sym__module_export_name, - sym_string, - [45308] = 4, - ACTIONS(2581), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(3512), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56709] = 4, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + anon_sym_COLON, + STATE(2110), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1602), 5, - anon_sym_RBRACE, - anon_sym_SEMI, + [56723] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(2079), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [45326] = 6, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(2584), 1, - sym_identifier, - STATE(1308), 1, - sym_variable_declarator, + STATE(1566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45348] = 6, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - sym_identifier, - STATE(1255), 1, - sym_variable_declarator, + [56737] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(2079), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1092), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45370] = 6, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(2588), 1, - sym_identifier, - STATE(1260), 1, - sym_variable_declarator, + [56751] = 4, + ACTIONS(3483), 1, + anon_sym_COLON, + ACTIONS(3487), 1, + anon_sym_DOT, + ACTIONS(3516), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1099), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45392] = 7, - ACTIONS(101), 1, + [56765] = 4, + ACTIONS(820), 1, anon_sym_COMMA, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2115), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(3518), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, + [56779] = 4, + ACTIONS(3483), 1, anon_sym_COLON, - [45416] = 7, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(2107), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(3487), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45440] = 7, - ACTIONS(101), 1, + [56793] = 4, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(766), 1, + ACTIONS(3525), 1, anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1568), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45464] = 7, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + [56807] = 4, + ACTIONS(3110), 1, + sym_identifier, + ACTIONS(3112), 1, + anon_sym_LBRACK, + ACTIONS(3114), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45488] = 4, - ACTIONS(1735), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym_sequence_expression_repeat1, + [56821] = 3, + ACTIONS(3527), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2590), 5, - anon_sym_RBRACE, + ACTIONS(3529), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [45506] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2575), 1, + [56833] = 3, + ACTIONS(3531), 1, sym_identifier, - ACTIONS(2592), 1, - anon_sym_RBRACE, - STATE(1491), 1, - sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1628), 2, - sym__module_export_name, - sym_string, - [45530] = 2, + ACTIONS(3533), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56845] = 4, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3535), 1, + sym_identifier, + STATE(2122), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2594), 7, + [56859] = 4, + ACTIONS(3242), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3244), 1, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [45544] = 2, + STATE(1591), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56873] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2596), 7, + ACTIONS(2095), 3, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, anon_sym_RBRACK, - [45558] = 7, - ACTIONS(101), 1, + [56883] = 3, + ACTIONS(1698), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(689), 2, + anon_sym_else, + anon_sym_while, + [56895] = 3, + ACTIONS(1720), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(699), 2, + anon_sym_else, + anon_sym_while, + [56907] = 3, + ACTIONS(1726), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(709), 2, + anon_sym_else, + anon_sym_while, + [56919] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2729), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [56929] = 4, + ACTIONS(820), 1, anon_sym_COMMA, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2103), 1, + anon_sym_RBRACK, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45582] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_RBRACE, - STATE(1468), 1, - sym_export_specifier, + [56943] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, - sym__module_export_name, - sym_string, - [45606] = 5, - ACTIONS(2604), 1, - anon_sym_EQ, - STATE(1194), 1, - sym__initializer, + ACTIONS(633), 3, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + [56953] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2602), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(2600), 3, + ACTIONS(3236), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [45626] = 2, + [56963] = 4, + ACTIONS(769), 1, + anon_sym_COMMA, + ACTIONS(3248), 1, + anon_sym_RBRACK, + STATE(1645), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2606), 7, + [56977] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2733), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [56987] = 4, + ACTIONS(3537), 1, + anon_sym_LPAREN, + ACTIONS(3539), 1, + anon_sym_await, + STATE(46), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57001] = 4, + ACTIONS(820), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2039), 1, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [45640] = 5, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - anon_sym_EQ, + STATE(1646), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2610), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [45660] = 6, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(2584), 1, - sym_identifier, - STATE(1255), 1, - sym_variable_declarator, + [57015] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45682] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2614), 1, + ACTIONS(3541), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [57025] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(2039), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57039] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3543), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [57049] = 4, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(3545), 1, anon_sym_RBRACE, - STATE(1468), 1, - sym_export_specifier, + STATE(1622), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, - sym__module_export_name, - sym_string, - [45706] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2575), 1, - sym_identifier, - ACTIONS(2616), 1, + [57063] = 4, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(3545), 1, anon_sym_RBRACE, - STATE(1491), 1, - sym_import_specifier, + STATE(1568), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1628), 2, - sym__module_export_name, - sym_string, - [45730] = 6, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(2584), 1, - sym_identifier, - STATE(1260), 1, - sym_variable_declarator, + [57077] = 4, + ACTIONS(830), 1, + anon_sym_RPAREN, + ACTIONS(3547), 1, + anon_sym_COMMA, + STATE(1680), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45752] = 6, - ACTIONS(2618), 1, + [57091] = 3, + ACTIONS(3246), 1, anon_sym_EQ, - ACTIONS(2620), 1, - sym__automatic_semicolon, - STATE(1318), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2600), 2, + ACTIONS(3549), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [57103] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3551), 3, + sym__automatic_semicolon, + anon_sym_from, anon_sym_SEMI, - ACTIONS(2602), 2, - anon_sym_in, - anon_sym_of, - [45774] = 2, + [57113] = 4, + ACTIONS(3399), 1, + anon_sym_from, + ACTIONS(3553), 1, + anon_sym_as, + STATE(1812), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2623), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [45788] = 7, - ACTIONS(101), 1, + [57127] = 4, + ACTIONS(3555), 1, anon_sym_COMMA, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2113), 1, + ACTIONS(3557), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + STATE(1596), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45812] = 2, + [57141] = 4, + ACTIONS(2971), 1, + anon_sym_RBRACE, + ACTIONS(3559), 1, + anon_sym_COMMA, + STATE(1552), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2625), 7, - anon_sym_COMMA, - anon_sym_RBRACE, + [57155] = 4, + ACTIONS(836), 1, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [45826] = 5, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(2627), 1, - sym_identifier, + ACTIONS(3561), 1, + anon_sym_COMMA, + STATE(1680), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1313), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45845] = 5, - ACTIONS(2629), 1, - anon_sym_default, - ACTIONS(2631), 1, + [57169] = 4, + ACTIONS(3563), 1, + anon_sym_COMMA, + ACTIONS(3566), 1, anon_sym_RBRACE, - ACTIONS(2633), 1, - anon_sym_case, + STATE(1598), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1108), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [45864] = 3, - ACTIONS(2635), 1, - sym_identifier, + [57183] = 4, + ACTIONS(769), 1, + anon_sym_COMMA, + ACTIONS(3248), 1, + anon_sym_RBRACK, + STATE(1610), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2637), 5, + [57197] = 4, + ACTIONS(3568), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - [45879] = 5, - ACTIONS(2641), 1, - anon_sym_BQUOTE, - ACTIONS(2643), 1, - anon_sym_DOLLAR_LBRACE, + ACTIONS(3570), 1, + anon_sym_LPAREN, + STATE(1547), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2639), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1123), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [45898] = 6, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2575), 1, - sym_identifier, - STATE(1491), 1, - sym_import_specifier, + [57211] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(2045), 1, + anon_sym_RBRACK, + STATE(1636), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1628), 2, - sym__module_export_name, - sym_string, - [45919] = 5, - ACTIONS(2629), 1, - anon_sym_default, - ACTIONS(2633), 1, - anon_sym_case, - ACTIONS(2645), 1, - anon_sym_RBRACE, + [57225] = 4, + ACTIONS(3399), 1, + anon_sym_from, + ACTIONS(3553), 1, + anon_sym_as, + STATE(1852), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1131), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [45938] = 6, - ACTIONS(2618), 1, - anon_sym_EQ, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1451), 1, - sym__initializer, - STATE(1601), 1, - sym_formal_parameters, + [57239] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(2045), 1, + anon_sym_RBRACK, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2649), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [45959] = 2, + [57253] = 4, + ACTIONS(1140), 1, + anon_sym_while, + ACTIONS(3572), 1, + anon_sym_else, + STATE(2084), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1648), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [45972] = 6, - ACTIONS(2618), 1, - anon_sym_EQ, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1447), 1, - sym__initializer, - STATE(1586), 1, - sym_formal_parameters, + [57267] = 3, + ACTIONS(3574), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2651), 2, + ACTIONS(3576), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45993] = 2, + [57279] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(3578), 1, + anon_sym_RBRACK, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1534), 6, + [57293] = 3, + ACTIONS(3580), 1, anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3582), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_from, + [57305] = 4, + ACTIONS(2973), 1, anon_sym_LPAREN, - anon_sym_COLON, - [46006] = 5, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(2653), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(2655), 1, - anon_sym_LBRACK, + STATE(2107), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1251), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46025] = 6, - ACTIONS(2618), 1, - anon_sym_EQ, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1448), 1, - sym__initializer, - STATE(1587), 1, - sym_formal_parameters, + [57319] = 4, + ACTIONS(769), 1, + anon_sym_COMMA, + ACTIONS(3452), 1, + anon_sym_RBRACK, + STATE(1635), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2657), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46046] = 5, - ACTIONS(2643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2661), 1, - anon_sym_BQUOTE, + [57333] = 4, + ACTIONS(769), 1, + anon_sym_COMMA, + ACTIONS(3586), 1, + anon_sym_RBRACK, + STATE(1645), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2659), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1106), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [46065] = 2, + [57347] = 4, + ACTIONS(3588), 1, + sym_identifier, + STATE(1124), 1, + sym_decorator_member_expression, + STATE(1203), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2596), 6, + [57361] = 3, + ACTIONS(1746), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46078] = 5, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(2655), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(641), 2, + anon_sym_else, + anon_sym_while, + [57373] = 4, + ACTIONS(3154), 1, sym_identifier, + ACTIONS(3156), 1, + anon_sym_LBRACK, + ACTIONS(3158), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1634), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46097] = 2, + [57387] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(3590), 1, + anon_sym_RBRACK, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1646), 6, - sym__automatic_semicolon, + [57401] = 4, + ACTIONS(2285), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46110] = 4, - ACTIONS(2665), 1, - sym_identifier, - ACTIONS(2669), 1, - anon_sym_EQ, + ACTIONS(3592), 1, + anon_sym_RBRACE, + STATE(1568), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2667), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46127] = 2, + [57415] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1538), 6, - anon_sym_as, + ACTIONS(1647), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [57425] = 4, + ACTIONS(2337), 1, anon_sym_COMMA, + ACTIONS(3594), 1, anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [46140] = 2, + STATE(1683), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2594), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + [57439] = 3, + ACTIONS(3216), 1, anon_sym_EQ, - [46153] = 5, - ACTIONS(2643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, - anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2639), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1123), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [46172] = 5, - ACTIONS(2676), 1, - anon_sym_BQUOTE, - ACTIONS(2678), 1, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1476), 2, + anon_sym_in, + anon_sym_of, + [57451] = 4, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(3596), 1, + anon_sym_RBRACE, + STATE(1568), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2673), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1123), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [46191] = 3, - ACTIONS(2681), 1, + [57465] = 4, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3598), 1, sym_identifier, + STATE(2107), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2683), 5, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46206] = 6, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - STATE(1468), 1, - sym_export_specifier, + [57479] = 4, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_COLON, + STATE(2110), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, - sym__module_export_name, - sym_string, - [46227] = 2, + [57493] = 4, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(3602), 1, + anon_sym_RBRACE, + STATE(1568), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1644), 6, - sym__automatic_semicolon, + [57507] = 4, + ACTIONS(2285), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46240] = 2, + ACTIONS(3508), 1, + anon_sym_RBRACE, + STATE(1568), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2625), 6, - sym__automatic_semicolon, + [57521] = 4, + ACTIONS(3604), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46253] = 2, + ACTIONS(3606), 1, + anon_sym_RBRACE, + STATE(1661), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2623), 6, - sym__automatic_semicolon, + [57535] = 4, + ACTIONS(820), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + ACTIONS(2071), 1, + anon_sym_RPAREN, + STATE(1549), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57549] = 3, + ACTIONS(3463), 1, anon_sym_EQ, - [46266] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2606), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(1476), 2, anon_sym_in, anon_sym_of, - anon_sym_EQ, - [46279] = 6, - ACTIONS(2618), 1, - anon_sym_EQ, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1455), 1, - sym__initializer, - STATE(1551), 1, - sym_formal_parameters, + [57561] = 4, + ACTIONS(2337), 1, + anon_sym_COMMA, + ACTIONS(3608), 1, + anon_sym_RBRACE, + STATE(1598), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2685), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46300] = 5, - ACTIONS(2687), 1, - anon_sym_default, - ACTIONS(2690), 1, + [57575] = 4, + ACTIONS(2337), 1, + anon_sym_COMMA, + ACTIONS(3594), 1, anon_sym_RBRACE, - ACTIONS(2692), 1, - anon_sym_case, + STATE(1598), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1131), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [46319] = 5, - ACTIONS(2643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2697), 1, - anon_sym_BQUOTE, + [57589] = 4, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3610), 1, + sym_identifier, + STATE(2021), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2695), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1122), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [46338] = 5, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2699), 1, + [57603] = 4, + ACTIONS(3130), 1, sym_identifier, + ACTIONS(3132), 1, + anon_sym_LBRACK, + ACTIONS(3134), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1654), 2, - sym__module_export_name, - sym_string, - [46356] = 3, - ACTIONS(1460), 1, - anon_sym_LT, + [57617] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1462), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46370] = 3, - ACTIONS(2701), 1, + ACTIONS(1595), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [57627] = 3, + ACTIONS(3246), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 4, + ACTIONS(3612), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + [57639] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(2093), 1, anon_sym_RBRACK, - [46384] = 3, - ACTIONS(2706), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2704), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46398] = 6, - ACTIONS(2708), 1, - sym_identifier, - ACTIONS(2710), 1, - anon_sym_GT, - ACTIONS(2712), 1, - sym_jsx_identifier, - STATE(1044), 1, - sym_nested_identifier, - STATE(1075), 1, - sym_jsx_namespace_name, + STATE(1614), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46418] = 2, + [57653] = 3, + ACTIONS(3614), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 5, + ACTIONS(617), 2, + anon_sym_else, + anon_sym_while, + [57665] = 4, + ACTIONS(769), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(3616), 1, anon_sym_RBRACK, - [46430] = 6, - ACTIONS(2710), 1, - anon_sym_GT, - ACTIONS(2714), 1, - sym_identifier, - ACTIONS(2716), 1, - sym_jsx_identifier, - STATE(1051), 1, - sym_nested_identifier, - STATE(1065), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46450] = 3, - ACTIONS(2718), 1, - sym_identifier, + STATE(1645), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2720), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46464] = 6, - ACTIONS(2722), 1, - sym_identifier, - ACTIONS(2724), 1, - anon_sym_LBRACE, - ACTIONS(2726), 1, - anon_sym_extends, - STATE(526), 1, - sym_class_body, - STATE(1533), 1, - sym_class_heritage, + [57679] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(3618), 1, + anon_sym_RBRACK, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46484] = 6, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2728), 1, - anon_sym_export, - ACTIONS(2730), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + [57693] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(2105), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46504] = 3, - ACTIONS(2732), 1, - sym_identifier, + [57707] = 3, + ACTIONS(1728), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2734), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46518] = 6, - ACTIONS(2736), 1, + ACTIONS(679), 2, + anon_sym_else, + anon_sym_while, + [57719] = 4, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3620), 1, sym_identifier, - ACTIONS(2738), 1, - anon_sym_GT, - ACTIONS(2740), 1, - sym_jsx_identifier, - STATE(1417), 1, - sym_nested_identifier, - STATE(1721), 1, - sym_jsx_namespace_name, + STATE(1774), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46538] = 6, - ACTIONS(2742), 1, + [57733] = 4, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(2744), 1, - anon_sym_GT, - ACTIONS(2746), 1, - sym_jsx_identifier, - STATE(1536), 1, - sym_nested_identifier, - STATE(1706), 1, - sym_jsx_namespace_name, + STATE(1788), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46558] = 3, - ACTIONS(1484), 1, - anon_sym_LT, + [57747] = 3, + ACTIONS(1730), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46572] = 3, - ACTIONS(1484), 1, - anon_sym_LT, + ACTIONS(669), 2, + anon_sym_else, + anon_sym_while, + [57759] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(2047), 1, + anon_sym_RPAREN, + STATE(1666), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46586] = 6, - ACTIONS(2710), 1, - anon_sym_GT, - ACTIONS(2748), 1, - sym_identifier, - ACTIONS(2750), 1, - sym_jsx_identifier, - STATE(1046), 1, - sym_nested_identifier, - STATE(1057), 1, - sym_jsx_namespace_name, + [57773] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(2047), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46606] = 3, - ACTIONS(1484), 1, - anon_sym_LT, + [57787] = 3, + ACTIONS(1732), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46620] = 3, - ACTIONS(1484), 1, - anon_sym_LT, + ACTIONS(719), 2, + anon_sym_else, + anon_sym_while, + [57799] = 4, + ACTIONS(3549), 1, + anon_sym_RBRACK, + ACTIONS(3624), 1, + anon_sym_COMMA, + STATE(1645), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46634] = 6, - ACTIONS(2087), 1, + [57813] = 4, + ACTIONS(820), 1, anon_sym_COMMA, - ACTIONS(2109), 1, - anon_sym_COLON, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2752), 1, - anon_sym_RBRACE, - STATE(1352), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3627), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46654] = 3, - ACTIONS(2756), 1, - anon_sym_LT, + [57827] = 4, + ACTIONS(3483), 1, + anon_sym_COLON, + ACTIONS(3487), 1, + anon_sym_DOT, + ACTIONS(3629), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46668] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2758), 1, + [57841] = 4, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(731), 1, - sym_class_body, - STATE(1566), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46688] = 3, - ACTIONS(2756), 1, - anon_sym_LT, + STATE(2107), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46702] = 3, - ACTIONS(1516), 1, - anon_sym_LT, + [57855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1518), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46716] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2762), 1, + ACTIONS(1643), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [57865] = 4, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3633), 1, sym_identifier, - STATE(637), 1, - sym_class_body, - STATE(1560), 1, - sym_class_heritage, + STATE(2021), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46736] = 3, - ACTIONS(2756), 1, - anon_sym_LT, + [57879] = 4, + ACTIONS(3635), 1, + anon_sym_COMMA, + ACTIONS(3638), 1, + anon_sym_RBRACE, + STATE(1651), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46750] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2764), 1, - sym_identifier, - STATE(637), 1, - sym_class_body, - STATE(1560), 1, - sym_class_heritage, + [57893] = 4, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(2547), 1, + anon_sym_EQ_GT, + ACTIONS(2551), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46770] = 3, - ACTIONS(2766), 1, - anon_sym_EQ, + [57907] = 4, + ACTIONS(2337), 1, + anon_sym_COMMA, + ACTIONS(3640), 1, + anon_sym_RBRACE, + STATE(1670), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 4, + [57921] = 4, + ACTIONS(2285), 1, anon_sym_COMMA, + ACTIONS(3642), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46784] = 4, - ACTIONS(2111), 1, - anon_sym_EQ, + STATE(1677), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2130), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [46800] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2768), 1, + [57935] = 4, + ACTIONS(3644), 1, sym_identifier, - STATE(731), 1, - sym_class_body, - STATE(1566), 1, - sym_class_heritage, + STATE(1347), 1, + sym_decorator_member_expression, + STATE(1684), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46820] = 3, - ACTIONS(1396), 1, - sym_identifier, + [57949] = 4, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(3642), 1, + anon_sym_RBRACE, + STATE(1568), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1398), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46834] = 3, - ACTIONS(2706), 1, - sym_identifier, + [57963] = 4, + ACTIONS(2337), 1, + anon_sym_COMMA, + ACTIONS(3640), 1, + anon_sym_RBRACE, + STATE(1598), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57977] = 4, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(3646), 1, + anon_sym_EQ_GT, + ACTIONS(3648), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2704), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46848] = 6, - ACTIONS(2710), 1, + [57991] = 4, + ACTIONS(3483), 1, + anon_sym_COLON, + ACTIONS(3487), 1, + anon_sym_DOT, + ACTIONS(3650), 1, anon_sym_GT, - ACTIONS(2770), 1, - sym_identifier, - ACTIONS(2772), 1, - sym_jsx_identifier, - STATE(1049), 1, - sym_nested_identifier, - STATE(1060), 1, - sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46868] = 3, - ACTIONS(2776), 1, - anon_sym_LT, + [58005] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2774), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46882] = 6, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2778), 1, + ACTIONS(1631), 3, anon_sym_export, - ACTIONS(2780), 1, anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + anon_sym_AT, + [58015] = 4, + ACTIONS(2952), 1, + anon_sym_RBRACE, + ACTIONS(3652), 1, + anon_sym_COMMA, + STATE(1651), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46902] = 2, + [58029] = 4, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(3654), 1, + anon_sym_RBRACE, + STATE(1568), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1534), 5, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_LPAREN, - anon_sym_SEMI, + [58043] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(2093), 1, + anon_sym_RBRACK, + STATE(1523), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58057] = 3, + ACTIONS(3246), 1, anon_sym_EQ, - [46914] = 3, - ACTIONS(2782), 1, - sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2784), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46928] = 6, - ACTIONS(2724), 1, - anon_sym_LBRACE, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2786), 1, - sym_identifier, - STATE(549), 1, - sym_class_body, - STATE(1584), 1, - sym_class_heritage, + ACTIONS(3656), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58069] = 4, + ACTIONS(769), 1, + anon_sym_COMMA, + ACTIONS(3452), 1, + anon_sym_RBRACK, + STATE(1645), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46948] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2788), 1, - sym_identifier, - STATE(637), 1, - sym_class_body, - STATE(1560), 1, - sym_class_heritage, + [58083] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(3658), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46968] = 5, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2790), 1, - sym_identifier, + [58097] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1479), 2, - sym__module_export_name, - sym_string, - [46986] = 3, - ACTIONS(1396), 1, - anon_sym_LT, + ACTIONS(3660), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [58107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1398), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [47000] = 3, - ACTIONS(1425), 1, - sym_identifier, + ACTIONS(3461), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [58117] = 4, + ACTIONS(2337), 1, + anon_sym_COMMA, + ACTIONS(3662), 1, + anon_sym_RBRACE, + STATE(1598), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1427), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47014] = 6, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(2792), 1, - sym_identifier, - ACTIONS(2794), 1, - anon_sym_LBRACK, - ACTIONS(2796), 1, - sym_private_property_identifier, - STATE(545), 1, - sym_arguments, + [58131] = 4, + ACTIONS(2337), 1, + anon_sym_COMMA, + ACTIONS(3664), 1, + anon_sym_RBRACE, + STATE(1598), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47034] = 3, - ACTIONS(2798), 1, - anon_sym_EQ, + [58145] = 3, + ACTIONS(3666), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 4, + ACTIONS(3668), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47048] = 5, - ACTIONS(1987), 1, + [58157] = 4, + ACTIONS(2285), 1, anon_sym_COMMA, - ACTIONS(2133), 1, + ACTIONS(3670), 1, anon_sym_RBRACE, - STATE(1296), 1, + STATE(1685), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [47066] = 3, - ACTIONS(1456), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1458), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47080] = 3, - ACTIONS(1460), 1, - sym_identifier, + [58171] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1462), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47094] = 3, - ACTIONS(1425), 1, - anon_sym_LT, + ACTIONS(1523), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [58181] = 4, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(3670), 1, + anon_sym_RBRACE, + STATE(1568), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1427), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [47108] = 3, - ACTIONS(1484), 1, - sym_identifier, + [58195] = 3, + ACTIONS(1734), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47122] = 3, - ACTIONS(1484), 1, - sym_identifier, + ACTIONS(659), 2, + anon_sym_else, + anon_sym_while, + [58207] = 4, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(3672), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47136] = 3, - ACTIONS(1484), 1, - sym_identifier, + [58221] = 4, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(3674), 1, + anon_sym_RBRACE, + STATE(1568), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47150] = 3, - ACTIONS(1484), 1, + [58235] = 4, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3676), 1, sym_identifier, + STATE(1885), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47164] = 3, - ACTIONS(1516), 1, + [58249] = 4, + ACTIONS(2973), 1, + anon_sym_LPAREN, + ACTIONS(3678), 1, sym_identifier, + STATE(2021), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1518), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47178] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2801), 1, - sym_identifier, - STATE(731), 1, - sym_class_body, - STATE(1566), 1, - sym_class_heritage, + [58263] = 4, + ACTIONS(3656), 1, + anon_sym_RPAREN, + ACTIONS(3680), 1, + anon_sym_COMMA, + STATE(1680), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47198] = 3, - ACTIONS(2805), 1, - anon_sym_LT, + [58277] = 4, + ACTIONS(3302), 1, + anon_sym_COMMA, + ACTIONS(3304), 1, + anon_sym_RPAREN, + STATE(1597), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2803), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [47212] = 6, - ACTIONS(2807), 1, - sym_identifier, - ACTIONS(2809), 1, - anon_sym_GT, - ACTIONS(2811), 1, - sym_jsx_identifier, - STATE(1582), 1, - sym_nested_identifier, - STATE(1679), 1, - sym_jsx_namespace_name, + [58291] = 4, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(3683), 1, + anon_sym_RBRACE, + STATE(1568), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47232] = 6, - ACTIONS(2813), 1, - sym_identifier, - ACTIONS(2815), 1, - anon_sym_GT, - ACTIONS(2817), 1, - sym_jsx_identifier, - STATE(1392), 1, - sym_nested_identifier, - STATE(1624), 1, - sym_jsx_namespace_name, + [58305] = 4, + ACTIONS(2337), 1, + anon_sym_COMMA, + ACTIONS(3685), 1, + anon_sym_RBRACE, + STATE(1598), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47252] = 3, - ACTIONS(2756), 1, - anon_sym_LT, + [58319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [47266] = 6, - ACTIONS(2087), 1, + ACTIONS(2537), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [58329] = 4, + ACTIONS(2285), 1, anon_sym_COMMA, - ACTIONS(2109), 1, - anon_sym_COLON, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2819), 1, + ACTIONS(3687), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, + STATE(1568), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47286] = 4, - ACTIONS(2618), 1, - anon_sym_EQ, - STATE(1318), 1, - sym__initializer, + [58343] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2600), 3, + ACTIONS(651), 3, sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + [58353] = 4, + ACTIONS(820), 1, anon_sym_COMMA, - anon_sym_SEMI, - [47302] = 3, - ACTIONS(2821), 1, - sym_identifier, + ACTIONS(2103), 1, + anon_sym_RBRACK, + STATE(1606), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2823), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47316] = 3, - ACTIONS(2825), 1, - sym_identifier, + [58367] = 3, + ACTIONS(3689), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2827), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47330] = 4, - ACTIONS(2831), 1, + ACTIONS(2927), 2, anon_sym_in, - ACTIONS(2833), 1, anon_sym_of, + [58379] = 4, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(3691), 1, + anon_sym_RBRACE, + STATE(1568), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2829), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [47346] = 3, - ACTIONS(1456), 1, - anon_sym_LT, + [58393] = 3, + ACTIONS(3483), 1, + anon_sym_COLON, + ACTIONS(3650), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1458), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [47360] = 2, + [58404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1538), 5, + ACTIONS(1611), 2, sym__automatic_semicolon, - anon_sym_with, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - [47372] = 6, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(2835), 1, - sym_identifier, - ACTIONS(2837), 1, - anon_sym_LBRACK, - ACTIONS(2839), 1, - sym_private_property_identifier, - STATE(723), 1, - sym_arguments, + [58413] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47392] = 3, - ACTIONS(2805), 1, - sym_identifier, + ACTIONS(3693), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [58422] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2803), 4, - anon_sym_LBRACE, + ACTIONS(2979), 2, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47406] = 3, - ACTIONS(2843), 1, - anon_sym_LT, + anon_sym_DOT, + [58431] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1712), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2841), 4, - sym_jsx_text, + [58442] = 3, + ACTIONS(3695), 1, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [47420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2845), 1, - anon_sym_SQUOTE, - STATE(1236), 1, - aux_sym_string_repeat2, - ACTIONS(2847), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47437] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2849), 1, - sym_identifier, - ACTIONS(2851), 1, - anon_sym_STAR, - STATE(1550), 1, - sym_formal_parameters, + STATE(1735), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47454] = 4, - ACTIONS(2109), 1, - anon_sym_COLON, - ACTIONS(2111), 1, - anon_sym_EQ, + [58453] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [47469] = 5, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(2857), 1, - anon_sym_RBRACK, - STATE(1356), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(1258), 2, + anon_sym_else, + anon_sym_while, + [58462] = 3, + ACTIONS(3697), 1, + anon_sym_LPAREN, + STATE(64), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47486] = 5, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2859), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + [58473] = 3, + ACTIONS(3699), 1, + anon_sym_LBRACE, + STATE(421), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47503] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [58484] = 3, + ACTIONS(3701), 1, + anon_sym_LPAREN, + STATE(59), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2861), 1, - sym_html_character_reference, - ACTIONS(2863), 1, - anon_sym_DQUOTE, - ACTIONS(2865), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1213), 1, - aux_sym__jsx_string_repeat1, - [47522] = 5, - ACTIONS(2867), 1, + sym_comment, + [58495] = 3, + ACTIONS(3699), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(341), 1, - sym_class_body, - STATE(1572), 1, - sym_class_heritage, + STATE(416), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47539] = 5, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(2871), 1, - anon_sym_RBRACK, - STATE(1284), 1, - aux_sym_array_pattern_repeat1, + [58506] = 3, + ACTIONS(3646), 1, + anon_sym_EQ_GT, + ACTIONS(3648), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47556] = 5, - ACTIONS(2760), 1, + [58517] = 3, + ACTIONS(3407), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(69), 1, + STATE(417), 1, sym_class_body, - STATE(1427), 1, - sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47573] = 6, - ACTIONS(3), 1, + [58528] = 3, + ACTIONS(3703), 1, + anon_sym_EQ_GT, + ACTIONS(3705), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [58539] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2863), 1, - anon_sym_SQUOTE, - ACTIONS(2873), 1, - sym_html_character_reference, - ACTIONS(2875), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1218), 1, - aux_sym__jsx_string_repeat2, - [47592] = 5, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(646), 1, - sym_class_body, - STATE(1597), 1, - sym_class_heritage, + sym_comment, + ACTIONS(1823), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [58548] = 3, + ACTIONS(3238), 1, + anon_sym_in, + ACTIONS(3240), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47609] = 4, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(1242), 1, - aux_sym_sequence_expression_repeat1, + [58559] = 3, + ACTIONS(3707), 1, + anon_sym_LBRACE, + STATE(590), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2590), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47624] = 5, - ACTIONS(2647), 1, + [58570] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - ACTIONS(2877), 1, - sym_identifier, - ACTIONS(2879), 1, - anon_sym_STAR, - STATE(1537), 1, + STATE(2077), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47641] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [58581] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2881), 1, - sym_html_character_reference, - ACTIONS(2883), 1, - anon_sym_DQUOTE, - ACTIONS(2885), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1263), 1, - aux_sym__jsx_string_repeat1, - [47660] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + ACTIONS(3709), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58590] = 3, + ACTIONS(3701), 1, + anon_sym_LPAREN, + STATE(60), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2887), 1, - anon_sym_DQUOTE, - STATE(1244), 1, - aux_sym_string_repeat1, - ACTIONS(2889), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [47677] = 2, + sym_comment, + [58601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1648), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [47688] = 2, + ACTIONS(2588), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [58610] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1644), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [47699] = 5, - ACTIONS(2760), 1, + ACTIONS(1266), 2, + anon_sym_else, + anon_sym_while, + [58619] = 3, + ACTIONS(3699), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(649), 1, - sym_class_body, - STATE(1611), 1, - sym_class_heritage, + STATE(408), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47716] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2883), 1, - anon_sym_SQUOTE, - ACTIONS(2891), 1, - sym_html_character_reference, - ACTIONS(2893), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1264), 1, - aux_sym__jsx_string_repeat2, - [47735] = 3, - ACTIONS(2895), 1, - anon_sym_EQ, + [58630] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1755), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [47748] = 5, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2897), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + [58641] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47765] = 4, - ACTIONS(2899), 1, - anon_sym_COMMA, - STATE(1221), 1, - aux_sym_array_repeat1, + ACTIONS(1294), 2, + anon_sym_else, + anon_sym_while, + [58650] = 3, + ACTIONS(3399), 1, + anon_sym_from, + STATE(1948), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47780] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [58661] = 3, + ACTIONS(3701), 1, + anon_sym_LPAREN, + STATE(62), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2887), 1, - anon_sym_SQUOTE, - STATE(1252), 1, - aux_sym_string_repeat2, - ACTIONS(2902), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47797] = 4, - ACTIONS(2904), 1, - anon_sym_with, - STATE(1401), 1, - sym_import_attribute, + sym_comment, + [58672] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2906), 2, + ACTIONS(3711), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47812] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [58681] = 3, + ACTIONS(3498), 1, + anon_sym_LBRACE, + STATE(411), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2908), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - aux_sym_string_repeat2, - ACTIONS(2910), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47829] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [58692] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2912), 1, - anon_sym_SQUOTE, - STATE(1252), 1, - aux_sym_string_repeat2, - ACTIONS(2902), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47846] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + ACTIONS(3713), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58701] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2914), 1, - anon_sym_DQUOTE, - STATE(1249), 1, - aux_sym_string_repeat1, - ACTIONS(2916), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [47863] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + ACTIONS(1286), 2, + anon_sym_else, + anon_sym_while, + [58710] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2914), 1, - anon_sym_SQUOTE, - STATE(1250), 1, - aux_sym_string_repeat2, - ACTIONS(2918), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47880] = 5, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(71), 1, - sym_class_body, - STATE(1456), 1, - sym_class_heritage, + sym_comment, + ACTIONS(1286), 2, + anon_sym_else, + anon_sym_while, + [58719] = 3, + ACTIONS(3715), 1, + anon_sym_EQ_GT, + ACTIONS(3717), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47897] = 5, - ACTIONS(2724), 1, + [58730] = 3, + ACTIONS(3719), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(515), 1, - sym_class_body, - STATE(1450), 1, - sym_class_heritage, + STATE(1002), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47914] = 5, - ACTIONS(2647), 1, + [58741] = 3, + ACTIONS(3701), 1, anon_sym_LPAREN, - ACTIONS(2920), 1, - sym_identifier, - ACTIONS(2922), 1, - anon_sym_STAR, - STATE(1565), 1, - sym_formal_parameters, + STATE(49), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47931] = 4, - ACTIONS(2924), 1, - anon_sym_COMMA, - STATE(1231), 1, - aux_sym_variable_declaration_repeat1, + [58752] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2927), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47946] = 5, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2929), 1, - sym_optional_chain, - STATE(651), 1, - sym_arguments, + ACTIONS(1298), 2, + anon_sym_else, + anon_sym_while, + [58761] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47963] = 5, - ACTIONS(2724), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(518), 1, - sym_class_body, - STATE(1425), 1, - sym_class_heritage, + ACTIONS(1969), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58770] = 3, + ACTIONS(3721), 1, + anon_sym_EQ_GT, + ACTIONS(3723), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47980] = 5, - ACTIONS(2647), 1, + [58781] = 3, + ACTIONS(3725), 1, anon_sym_LPAREN, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_STAR, - STATE(1434), 1, - sym_formal_parameters, + STATE(1921), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47997] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [58792] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2935), 1, - anon_sym_DQUOTE, - STATE(1244), 1, - aux_sym_string_repeat1, - ACTIONS(2889), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48014] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2935), 1, - anon_sym_SQUOTE, - STATE(1252), 1, - aux_sym_string_repeat2, - ACTIONS(2902), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [48031] = 5, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2780), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + ACTIONS(1973), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58801] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48048] = 3, + ACTIONS(3727), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2153), 2, + ACTIONS(2596), 2, anon_sym_COMMA, anon_sym_RBRACE, - [48061] = 5, - ACTIONS(3), 1, + [58819] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(1302), 2, + anon_sym_else, + anon_sym_while, + [58828] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1339), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2937), 1, - anon_sym_SQUOTE, - STATE(1225), 1, - aux_sym_string_repeat2, - ACTIONS(2939), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [48078] = 2, + sym_comment, + [58839] = 3, + ACTIONS(3076), 1, + anon_sym_LBRACE, + STATE(584), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58850] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1198), 2, + anon_sym_else, + anon_sym_while, + [58859] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 4, + ACTIONS(3729), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - [48089] = 5, - ACTIONS(2760), 1, + [58868] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3549), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [58877] = 3, + ACTIONS(3568), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(634), 1, - sym_class_body, - STATE(1589), 1, - sym_class_heritage, + STATE(1779), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58888] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48106] = 4, - ACTIONS(2941), 1, + ACTIONS(2574), 2, anon_sym_COMMA, - STATE(1242), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_RBRACE, + [58897] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(3731), 2, sym__automatic_semicolon, anon_sym_SEMI, - [48121] = 5, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(2944), 1, - anon_sym_COMMA, - ACTIONS(2946), 1, - anon_sym_RPAREN, - STATE(1276), 1, - aux_sym_formal_parameters_repeat1, + [58906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48138] = 5, - ACTIONS(3), 1, + ACTIONS(1314), 2, + anon_sym_else, + anon_sym_while, + [58915] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1784), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [58926] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1790), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2948), 1, - anon_sym_DQUOTE, - STATE(1244), 1, - aux_sym_string_repeat1, - ACTIONS(2950), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48155] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [58937] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2937), 1, - anon_sym_DQUOTE, - STATE(1269), 1, - aux_sym_string_repeat1, - ACTIONS(2953), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48172] = 5, - ACTIONS(2760), 1, + sym_comment, + ACTIONS(1318), 2, + anon_sym_else, + anon_sym_while, + [58946] = 3, + ACTIONS(3148), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(661), 1, + STATE(909), 1, sym_class_body, - STATE(1564), 1, - sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48189] = 5, - ACTIONS(3), 1, + [58957] = 3, + ACTIONS(3733), 1, + anon_sym_EQ_GT, + ACTIONS(3735), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [58968] = 3, + ACTIONS(3737), 1, + anon_sym_EQ_GT, + ACTIONS(3739), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2908), 1, - anon_sym_DQUOTE, - STATE(1214), 1, - aux_sym_string_repeat1, - ACTIONS(2955), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48206] = 4, - ACTIONS(2957), 1, - anon_sym_COMMA, - STATE(1231), 1, - aux_sym_variable_declaration_repeat1, + sym_comment, + [58979] = 3, + ACTIONS(3741), 1, + anon_sym_EQ_GT, + ACTIONS(3743), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2959), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48221] = 5, - ACTIONS(3), 1, + [58990] = 3, + ACTIONS(3745), 1, + anon_sym_LBRACE, + STATE(911), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [59001] = 3, + ACTIONS(3498), 1, + anon_sym_LBRACE, + STATE(386), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2961), 1, - anon_sym_DQUOTE, - STATE(1244), 1, - aux_sym_string_repeat1, - ACTIONS(2889), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48238] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [59012] = 3, + ACTIONS(3719), 1, + anon_sym_LBRACE, + STATE(1007), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2961), 1, - anon_sym_SQUOTE, - STATE(1252), 1, - aux_sym_string_repeat2, - ACTIONS(2902), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [48255] = 4, - ACTIONS(2963), 1, - anon_sym_EQ, - STATE(1388), 1, - sym__initializer, + sym_comment, + [59023] = 3, + ACTIONS(3747), 1, + anon_sym_LBRACE, + STATE(776), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2602), 2, - anon_sym_in, - anon_sym_of, - [48270] = 5, - ACTIONS(3), 1, + [59034] = 3, + ACTIONS(3749), 1, + sym_identifier, + ACTIONS(3751), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [59045] = 3, + ACTIONS(3154), 1, + sym_identifier, + ACTIONS(3158), 1, + sym_private_property_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2965), 1, - anon_sym_SQUOTE, - STATE(1252), 1, - aux_sym_string_repeat2, - ACTIONS(2967), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [48287] = 5, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2970), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + sym_comment, + [59056] = 3, + ACTIONS(3707), 1, + anon_sym_LBRACE, + STATE(587), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48304] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2972), 1, - sym_identifier, - ACTIONS(2974), 1, - anon_sym_STAR, - STATE(1550), 1, - sym_formal_parameters, + [59067] = 3, + ACTIONS(3707), 1, + anon_sym_LBRACE, + STATE(588), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48321] = 4, - ACTIONS(2957), 1, - anon_sym_COMMA, - STATE(1268), 1, - aux_sym_variable_declaration_repeat1, + [59078] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1795), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2976), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48336] = 2, + [59089] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1646), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [48347] = 4, - ACTIONS(2451), 1, - anon_sym_STAR, - ACTIONS(2453), 1, + ACTIONS(1354), 2, + anon_sym_else, + anon_sym_while, + [59098] = 3, + ACTIONS(3719), 1, anon_sym_LBRACE, + STATE(1024), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1643), 2, - sym_namespace_import, - sym_named_imports, - [48362] = 5, - ACTIONS(2867), 1, + [59109] = 3, + ACTIONS(3076), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(354), 1, + STATE(602), 1, sym_class_body, - STATE(1546), 1, - sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48379] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(2980), 1, - anon_sym_STAR, - STATE(1434), 1, - sym_formal_parameters, + [59120] = 3, + ACTIONS(3733), 1, + anon_sym_EQ_GT, + ACTIONS(3753), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48396] = 4, - ACTIONS(2957), 1, - anon_sym_COMMA, - STATE(1248), 1, - aux_sym_variable_declaration_repeat1, + [59131] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2982), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48411] = 5, - ACTIONS(2904), 1, - anon_sym_with, - ACTIONS(2984), 1, - anon_sym_SEMI, - ACTIONS(2986), 1, - sym__automatic_semicolon, - STATE(1528), 1, - sym_import_attribute, + ACTIONS(1334), 2, + anon_sym_else, + anon_sym_while, + [59140] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1731), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48428] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - sym_identifier, - ACTIONS(2990), 1, - anon_sym_STAR, - STATE(1550), 1, - sym_formal_parameters, + [59151] = 3, + ACTIONS(3737), 1, + anon_sym_EQ_GT, + ACTIONS(3755), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48445] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [59162] = 3, + ACTIONS(3741), 1, + anon_sym_EQ_GT, + ACTIONS(3757), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2992), 1, - sym_html_character_reference, - ACTIONS(2995), 1, - anon_sym_DQUOTE, - ACTIONS(2997), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1263), 1, - aux_sym__jsx_string_repeat1, - [48464] = 6, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [59173] = 3, + ACTIONS(3707), 1, + anon_sym_LBRACE, + STATE(603), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3000), 1, - sym_html_character_reference, - ACTIONS(3003), 1, - anon_sym_SQUOTE, - ACTIONS(3005), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1264), 1, - aux_sym__jsx_string_repeat2, - [48483] = 2, + sym_comment, + [59184] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3008), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [48494] = 5, - ACTIONS(3), 1, + ACTIONS(1338), 2, + anon_sym_else, + anon_sym_while, + [59193] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(1338), 2, + anon_sym_else, + anon_sym_while, + [59202] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2845), 1, - anon_sym_DQUOTE, - STATE(1235), 1, - aux_sym_string_repeat1, - ACTIONS(3010), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48511] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3012), 1, - sym_identifier, - ACTIONS(3014), 1, - anon_sym_STAR, - STATE(1434), 1, - sym_formal_parameters, + sym_comment, + ACTIONS(1158), 2, + anon_sym_else, + anon_sym_while, + [59211] = 3, + ACTIONS(3719), 1, + anon_sym_LBRACE, + STATE(1027), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48528] = 4, - ACTIONS(2957), 1, - anon_sym_COMMA, - STATE(1231), 1, - aux_sym_variable_declaration_repeat1, + [59222] = 3, + ACTIONS(3745), 1, + anon_sym_LBRACE, + STATE(942), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3016), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48543] = 5, - ACTIONS(3), 1, + [59233] = 3, + ACTIONS(3719), 1, + anon_sym_LBRACE, + STATE(1029), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [59244] = 3, + ACTIONS(3719), 1, + anon_sym_LBRACE, + STATE(1031), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2912), 1, - anon_sym_DQUOTE, - STATE(1244), 1, - aux_sym_string_repeat1, - ACTIONS(2889), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48560] = 2, + sym_comment, + [59255] = 3, + ACTIONS(3745), 1, + anon_sym_LBRACE, + STATE(943), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [48571] = 4, - ACTIONS(3018), 1, - anon_sym_from, - STATE(1402), 1, - sym__from_clause, + [59266] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3020), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48586] = 5, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(3022), 1, - sym_optional_chain, - STATE(528), 1, - sym_arguments, + ACTIONS(2574), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59275] = 3, + ACTIONS(3759), 1, + anon_sym_LBRACE, + STATE(704), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48603] = 5, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2730), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + [59286] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1796), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48620] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3024), 1, + [59297] = 3, + ACTIONS(3761), 1, sym_identifier, - STATE(1437), 1, - sym_formal_parameters, + ACTIONS(3763), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48634] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3026), 1, - sym_identifier, - STATE(1567), 1, - sym_formal_parameters, + [59308] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48648] = 4, - ACTIONS(704), 1, - anon_sym_RPAREN, - ACTIONS(3028), 1, + ACTIONS(2608), 2, anon_sym_COMMA, - STATE(1307), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_RBRACE, + [59317] = 3, + ACTIONS(3110), 1, + sym_identifier, + ACTIONS(3114), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48662] = 4, - ACTIONS(2944), 1, - anon_sym_COMMA, - ACTIONS(2946), 1, - anon_sym_RPAREN, - STATE(1276), 1, - aux_sym_formal_parameters_repeat1, + [59328] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48676] = 4, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(3032), 1, - anon_sym_LPAREN, - STATE(342), 1, - sym_statement_block, + ACTIONS(1322), 2, + anon_sym_else, + anon_sym_while, + [59337] = 3, + ACTIONS(3487), 1, + anon_sym_DOT, + ACTIONS(3650), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48690] = 2, + [59348] = 3, + ACTIONS(3148), 1, + anon_sym_LBRACE, + STATE(858), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [48700] = 3, - ACTIONS(2855), 1, - anon_sym_EQ, + [59359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3034), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [48712] = 4, - ACTIONS(2087), 1, + ACTIONS(2566), 2, anon_sym_COMMA, - ACTIONS(3036), 1, anon_sym_RBRACE, - STATE(1324), 1, - aux_sym_object_pattern_repeat1, + [59368] = 3, + ACTIONS(3148), 1, + anon_sym_LBRACE, + STATE(860), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48726] = 3, - ACTIONS(2855), 1, - anon_sym_EQ, + [59379] = 3, + ACTIONS(3745), 1, + anon_sym_LBRACE, + STATE(861), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3038), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [48738] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(3040), 1, - anon_sym_RBRACK, - STATE(1221), 1, - aux_sym_array_repeat1, + [59390] = 3, + ACTIONS(3765), 1, + anon_sym_LBRACE, + STATE(86), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48752] = 4, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(3042), 1, - anon_sym_RBRACK, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, + [59401] = 3, + ACTIONS(3745), 1, + anon_sym_LBRACE, + STATE(864), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48766] = 4, - ACTIONS(2647), 1, + [59412] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - ACTIONS(3044), 1, - sym_identifier, - STATE(1592), 1, + STATE(1797), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48780] = 4, - ACTIONS(3046), 1, + [59423] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2566), 2, anon_sym_COMMA, - ACTIONS(3049), 1, anon_sym_RBRACE, - STATE(1286), 1, - aux_sym_named_imports_repeat1, + [59432] = 3, + ACTIONS(3745), 1, + anon_sym_LBRACE, + STATE(865), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48794] = 4, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - STATE(1359), 1, - sym_string, + [59443] = 3, + ACTIONS(3745), 1, + anon_sym_LBRACE, + STATE(866), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48808] = 4, - ACTIONS(3034), 1, - anon_sym_RBRACK, - ACTIONS(3051), 1, - anon_sym_COMMA, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, + [59454] = 3, + ACTIONS(3148), 1, + anon_sym_LBRACE, + STATE(867), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48822] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RBRACE, - STATE(1336), 1, - aux_sym_object_repeat1, + [59465] = 3, + ACTIONS(3745), 1, + anon_sym_LBRACE, + STATE(868), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48836] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3056), 1, - anon_sym_COLON, - STATE(1521), 1, - sym_formal_parameters, + [59476] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48850] = 4, - ACTIONS(1987), 1, + ACTIONS(2566), 2, anon_sym_COMMA, - ACTIONS(3058), 1, anon_sym_RBRACE, - STATE(1297), 1, - aux_sym_object_repeat1, + [59485] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48864] = 4, - ACTIONS(1987), 1, + ACTIONS(2566), 2, anon_sym_COMMA, - ACTIONS(3058), 1, anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [59494] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1889), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48878] = 2, + [59505] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3060), 3, + ACTIONS(3767), 2, sym__automatic_semicolon, - anon_sym_from, anon_sym_SEMI, - [48888] = 3, - ACTIONS(3062), 1, - anon_sym_as, + [59514] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1890), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3064), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [48900] = 4, - ACTIONS(3066), 1, - anon_sym_COMMA, - ACTIONS(3068), 1, - anon_sym_RBRACE, - STATE(1361), 1, - aux_sym_export_clause_repeat1, + [59525] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48914] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3070), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + ACTIONS(1326), 2, + anon_sym_else, + anon_sym_while, + [59534] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1799), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48928] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3072), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [59545] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48942] = 3, - ACTIONS(2855), 1, - anon_sym_EQ, + ACTIONS(1362), 2, + anon_sym_else, + anon_sym_while, + [59554] = 3, + ACTIONS(3759), 1, + anon_sym_LBRACE, + STATE(645), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3074), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48954] = 4, - ACTIONS(3076), 1, + [59565] = 3, + ACTIONS(3769), 1, + anon_sym_EQ_GT, + ACTIONS(3771), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [59576] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1891), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [59587] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2566), 2, anon_sym_COMMA, - ACTIONS(3078), 1, anon_sym_RBRACE, - STATE(1321), 1, - aux_sym_named_imports_repeat1, + [59596] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48968] = 3, - ACTIONS(3080), 1, - anon_sym_as, + ACTIONS(2566), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59605] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3082), 2, + ACTIONS(2566), 2, anon_sym_COMMA, anon_sym_RBRACE, - [48980] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3084), 1, - anon_sym_COLON, - STATE(1521), 1, - sym_formal_parameters, + [59614] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1202), 2, + anon_sym_else, + anon_sym_while, + [59623] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1330), 2, + anon_sym_else, + anon_sym_while, + [59632] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1278), 2, + anon_sym_else, + anon_sym_while, + [59641] = 3, + ACTIONS(3773), 1, + anon_sym_SEMI, + ACTIONS(3775), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48994] = 3, - ACTIONS(3086), 1, - sym_identifier, + [59652] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3088), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49006] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1745), 1, - anon_sym_RPAREN, - STATE(1306), 1, - aux_sym_array_repeat1, + ACTIONS(1310), 2, + anon_sym_else, + anon_sym_while, + [59661] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1805), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49020] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1745), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + [59672] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49034] = 4, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3090), 1, - anon_sym_GT, + ACTIONS(2566), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59681] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1894), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49048] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(3092), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + [59692] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1895), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49062] = 4, - ACTIONS(3074), 1, - anon_sym_RPAREN, - ACTIONS(3094), 1, - anon_sym_COMMA, - STATE(1307), 1, - aux_sym_formal_parameters_repeat1, + [59703] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1900), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49076] = 2, + [59714] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2927), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [49086] = 4, - ACTIONS(1987), 1, + ACTIONS(2566), 2, anon_sym_COMMA, - ACTIONS(3054), 1, anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [59723] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1806), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49100] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3097), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [59734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49114] = 4, - ACTIONS(2087), 1, + ACTIONS(2566), 2, anon_sym_COMMA, - ACTIONS(3099), 1, anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [59743] = 3, + ACTIONS(3777), 1, + anon_sym_EQ_GT, + ACTIONS(3779), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49128] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3036), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [59754] = 3, + ACTIONS(3781), 1, + anon_sym_EQ_GT, + ACTIONS(3783), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49142] = 3, - ACTIONS(3101), 1, - sym__automatic_semicolon, + [59765] = 3, + ACTIONS(3785), 1, + anon_sym_EQ_GT, + ACTIONS(3787), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2602), 2, - anon_sym_in, - anon_sym_of, - [49154] = 4, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_GT, + [59776] = 3, + ACTIONS(3789), 1, + anon_sym_SEMI, + ACTIONS(3791), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49168] = 4, - ACTIONS(3105), 1, - anon_sym_LPAREN, - ACTIONS(3107), 1, - anon_sym_await, - STATE(33), 1, - sym__for_header, + [59787] = 3, + ACTIONS(3793), 1, + anon_sym_SEMI, + ACTIONS(3795), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49182] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3109), 1, - sym_identifier, - STATE(1375), 1, - sym_formal_parameters, + [59798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49196] = 4, - ACTIONS(698), 1, + ACTIONS(2566), 2, anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [59807] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49210] = 2, + ACTIONS(1342), 2, + anon_sym_else, + anon_sym_while, + [59816] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2829), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [49220] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1743), 1, - anon_sym_RPAREN, - STATE(1317), 1, - aux_sym_array_repeat1, + ACTIONS(1346), 2, + anon_sym_else, + anon_sym_while, + [59825] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1738), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49234] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1743), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + [59836] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49248] = 4, - ACTIONS(2592), 1, - anon_sym_RBRACE, - ACTIONS(3113), 1, - anon_sym_COMMA, - STATE(1286), 1, - aux_sym_named_imports_repeat1, + ACTIONS(1282), 2, + anon_sym_else, + anon_sym_while, + [59845] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1739), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49262] = 4, - ACTIONS(2835), 1, - sym_identifier, - ACTIONS(2837), 1, - anon_sym_LBRACK, - ACTIONS(2839), 1, - sym_private_property_identifier, + [59856] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49276] = 4, - ACTIONS(968), 1, + ACTIONS(1190), 2, + anon_sym_else, anon_sym_while, - ACTIONS(3115), 1, + [59865] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1194), 2, anon_sym_else, - STATE(404), 1, - sym_else_clause, + anon_sym_while, + [59874] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1165), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49290] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3117), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [59885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49304] = 3, - ACTIONS(2766), 1, - anon_sym_EQ, + ACTIONS(1382), 2, + anon_sym_else, + anon_sym_while, + [59894] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1807), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1321), 2, - anon_sym_in, - anon_sym_of, - [49316] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1841), 1, - anon_sym_RBRACK, - STATE(1283), 1, - aux_sym_array_repeat1, + [59905] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49330] = 2, + ACTIONS(1366), 2, + anon_sym_else, + anon_sym_while, + [59914] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3119), 3, + ACTIONS(3797), 2, sym__automatic_semicolon, - anon_sym_from, anon_sym_SEMI, - [49340] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1841), 1, - anon_sym_RBRACK, - STATE(1221), 1, - aux_sym_array_repeat1, + [59923] = 3, + ACTIONS(3483), 1, + anon_sym_COLON, + ACTIONS(3485), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49354] = 3, - ACTIONS(3121), 1, - sym_identifier, + [59934] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1170), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3123), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49366] = 4, - ACTIONS(3125), 1, - anon_sym_COMMA, - ACTIONS(3128), 1, - anon_sym_RBRACE, - STATE(1330), 1, - aux_sym_export_clause_repeat1, + [59945] = 3, + ACTIONS(3485), 1, + anon_sym_GT, + ACTIONS(3487), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49380] = 2, + [59956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3130), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49390] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3132), 1, - anon_sym_RBRACE, - STATE(1353), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1370), 2, + anon_sym_else, + anon_sym_while, + [59965] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1742), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49404] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3134), 1, - anon_sym_RBRACE, - STATE(1354), 1, - aux_sym_object_repeat1, + [59976] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1706), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49418] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3134), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [59987] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1808), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49432] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3132), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [59998] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49446] = 4, - ACTIONS(1987), 1, + ACTIONS(2574), 2, anon_sym_COMMA, - ACTIONS(3136), 1, anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49460] = 3, - ACTIONS(3138), 1, - anon_sym_DOT, + [60007] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2455), 2, - anon_sym_LPAREN, - sym_optional_chain, - [49472] = 4, - ACTIONS(2647), 1, + ACTIONS(1378), 2, + anon_sym_else, + anon_sym_while, + [60016] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - ACTIONS(3140), 1, - sym_identifier, - STATE(1375), 1, + STATE(1743), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49486] = 4, - ACTIONS(3142), 1, - sym_identifier, - STATE(917), 1, - sym_decorator_member_expression, - STATE(1002), 1, - sym_decorator_call_expression, + [60027] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49500] = 3, - ACTIONS(2457), 1, - anon_sym_DOT, + ACTIONS(1166), 2, + anon_sym_else, + anon_sym_while, + [60036] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1815), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2455), 2, - anon_sym_LPAREN, - sym_optional_chain, - [49512] = 4, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(2871), 1, - anon_sym_RBRACK, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, + [60047] = 3, + ACTIONS(3799), 1, + anon_sym_SEMI, + ACTIONS(3801), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49526] = 3, - ACTIONS(2895), 1, - anon_sym_EQ, + [60058] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1321), 2, - anon_sym_in, - anon_sym_of, - [49538] = 4, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(2857), 1, - anon_sym_RBRACK, - STATE(1356), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(1170), 2, + anon_sym_else, + anon_sym_while, + [60067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49552] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1791), 1, - anon_sym_RBRACK, - STATE(1355), 1, - aux_sym_array_repeat1, + ACTIONS(1937), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49566] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1791), 1, - anon_sym_RBRACK, - STATE(1221), 1, - aux_sym_array_repeat1, + ACTIONS(1162), 2, + anon_sym_else, + anon_sym_while, + [60085] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49580] = 4, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(2857), 1, - anon_sym_RBRACK, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(1174), 2, + anon_sym_else, + anon_sym_while, + [60094] = 3, + ACTIONS(3715), 1, + anon_sym_EQ_GT, + ACTIONS(3803), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49594] = 4, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3144), 1, - anon_sym_GT, + [60105] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49608] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3146), 1, - sym_identifier, - STATE(1437), 1, - sym_formal_parameters, + ACTIONS(1178), 2, + anon_sym_else, + anon_sym_while, + [60114] = 3, + ACTIONS(3498), 1, + anon_sym_LBRACE, + STATE(452), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49622] = 4, - ACTIONS(2792), 1, - sym_identifier, - ACTIONS(2794), 1, - anon_sym_LBRACK, - ACTIONS(2796), 1, - sym_private_property_identifier, + [60125] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49636] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3148), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + ACTIONS(1186), 2, + anon_sym_else, + anon_sym_while, + [60134] = 3, + ACTIONS(3759), 1, + anon_sym_LBRACE, + STATE(664), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49650] = 4, - ACTIONS(2647), 1, + [60145] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - ACTIONS(3150), 1, - sym_identifier, - STATE(1375), 1, + STATE(1757), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49664] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [60156] = 3, + ACTIONS(3805), 1, + anon_sym_LPAREN, + STATE(1457), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49678] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3154), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [60167] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1775), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49692] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3156), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [60178] = 3, + ACTIONS(3807), 1, + anon_sym_LBRACE, + STATE(2083), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49706] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(3158), 1, - anon_sym_RBRACK, - STATE(1221), 1, - aux_sym_array_repeat1, + [60189] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49720] = 4, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(3160), 1, - anon_sym_RBRACK, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(3809), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60198] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49734] = 3, - ACTIONS(1632), 1, - anon_sym_in, + ACTIONS(1358), 2, + anon_sym_else, + anon_sym_while, + [60207] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(2111), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1715), 2, - anon_sym_LPAREN, + [60218] = 3, + ACTIONS(3483), 1, anon_sym_COLON, - [49746] = 4, - ACTIONS(3162), 1, - anon_sym_LPAREN, - ACTIONS(3164), 1, - anon_sym_await, - STATE(27), 1, - sym__for_header, + ACTIONS(3516), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49760] = 2, + [60229] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3166), 3, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [49770] = 2, + ACTIONS(3811), 2, + sym__shorthand_arrow, + anon_sym_EQ_GT, + [60238] = 3, + ACTIONS(3487), 1, + anon_sym_DOT, + ACTIONS(3516), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3168), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49780] = 4, - ACTIONS(2614), 1, - anon_sym_RBRACE, - ACTIONS(3170), 1, - anon_sym_COMMA, - STATE(1330), 1, - aux_sym_export_clause_repeat1, + [60249] = 3, + ACTIONS(3813), 1, + sym_identifier, + ACTIONS(3815), 1, + sym_jsx_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49794] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1795), 1, - anon_sym_RPAREN, - STATE(1367), 1, - aux_sym_array_repeat1, + [60260] = 3, + ACTIONS(3483), 1, + anon_sym_COLON, + ACTIONS(3520), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49808] = 4, - ACTIONS(3018), 1, - anon_sym_from, - ACTIONS(3172), 1, - anon_sym_as, - STATE(1543), 1, - sym__from_clause, + [60271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49822] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1795), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + ACTIONS(1170), 2, + anon_sym_else, + anon_sym_while, + [60280] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49836] = 4, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2481), 1, + ACTIONS(1182), 2, + anon_sym_else, + anon_sym_while, + [60289] = 3, + ACTIONS(3487), 1, anon_sym_DOT, - ACTIONS(3174), 1, + ACTIONS(3520), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49850] = 4, - ACTIONS(3176), 1, - anon_sym_COMMA, - ACTIONS(3179), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [60300] = 3, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3819), 1, + sym_jsx_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49864] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(3181), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + [60311] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49878] = 4, - ACTIONS(3183), 1, - anon_sym_COMMA, - ACTIONS(3186), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1170), 2, + anon_sym_else, + anon_sym_while, + [60320] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49892] = 4, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(2871), 1, - anon_sym_RBRACK, - STATE(1284), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(1170), 2, + anon_sym_else, + anon_sym_while, + [60329] = 3, + ACTIONS(3098), 1, + anon_sym_LBRACE, + STATE(659), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49906] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3188), 1, - sym_identifier, - STATE(1437), 1, - sym_formal_parameters, + [60340] = 3, + ACTIONS(3759), 1, + anon_sym_LBRACE, + STATE(660), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49920] = 3, - ACTIONS(2119), 1, + [60351] = 3, + ACTIONS(3707), 1, anon_sym_LBRACE, - STATE(954), 1, + STATE(614), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49931] = 3, - ACTIONS(2119), 1, + [60362] = 3, + ACTIONS(3759), 1, anon_sym_LBRACE, - STATE(951), 1, + STATE(662), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49942] = 3, - ACTIONS(3190), 1, + [60373] = 3, + ACTIONS(3759), 1, anon_sym_LBRACE, - STATE(517), 1, + STATE(663), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [60384] = 3, + ACTIONS(3707), 1, + anon_sym_LBRACE, + STATE(615), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49953] = 3, - ACTIONS(2647), 1, + [60395] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1449), 1, + STATE(1777), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49964] = 3, - ACTIONS(3192), 1, + [60406] = 3, + ACTIONS(3821), 1, anon_sym_LBRACE, - STATE(663), 1, + STATE(665), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49975] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(925), 1, - sym_statement_block, + [60417] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49986] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1373), 1, - sym_formal_parameters, + ACTIONS(1170), 2, + anon_sym_else, + anon_sym_while, + [60426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49997] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(73), 1, - sym_statement_block, + ACTIONS(2578), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [60435] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50008] = 2, + ACTIONS(2578), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [60444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3194), 2, - anon_sym_LBRACE, + ACTIONS(2578), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [60453] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3823), 2, + sym__shorthand_arrow, anon_sym_EQ_GT, - [50017] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1580), 1, - sym_formal_parameters, + [60462] = 3, + ACTIONS(3300), 1, + anon_sym_LBRACE, + STATE(92), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50028] = 2, + [60473] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3074), 2, + ACTIONS(2578), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [50037] = 2, + anon_sym_RBRACE, + [60482] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3196), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [50046] = 2, + ACTIONS(2578), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [60491] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3198), 2, - anon_sym_in, - anon_sym_of, - [50055] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(946), 1, - sym_statement_block, + ACTIONS(1170), 2, + anon_sym_else, + anon_sym_while, + [60500] = 3, + ACTIONS(3701), 1, + anon_sym_LPAREN, + STATE(63), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50066] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(324), 1, - sym_statement_block, + [60511] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1816), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50077] = 3, - ACTIONS(2119), 1, + [60522] = 3, + ACTIONS(3098), 1, anon_sym_LBRACE, - STATE(949), 1, - sym_statement_block, + STATE(668), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [60533] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50088] = 3, - ACTIONS(3200), 1, + ACTIONS(2578), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [60542] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(358), 1, - sym_parenthesized_expression, + STATE(1817), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50099] = 3, - ACTIONS(2831), 1, - anon_sym_in, - ACTIONS(2833), 1, - anon_sym_of, + [60553] = 3, + ACTIONS(3725), 1, + anon_sym_LPAREN, + STATE(1695), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50110] = 3, - ACTIONS(3202), 1, - sym_identifier, - ACTIONS(3204), 1, - anon_sym_STAR, + [60564] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50121] = 3, - ACTIONS(2475), 1, + ACTIONS(1971), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60573] = 3, + ACTIONS(3483), 1, anon_sym_COLON, - ACTIONS(3090), 1, + ACTIONS(3629), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50132] = 3, - ACTIONS(2119), 1, + [60584] = 3, + ACTIONS(3098), 1, anon_sym_LBRACE, - STATE(952), 1, - sym_statement_block, + STATE(705), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50143] = 3, - ACTIONS(2481), 1, + [60595] = 3, + ACTIONS(3487), 1, anon_sym_DOT, - ACTIONS(3090), 1, + ACTIONS(3629), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50154] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(360), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50165] = 3, - ACTIONS(2647), 1, + [60606] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1576), 1, + STATE(1818), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50176] = 3, - ACTIONS(3206), 1, - sym_identifier, - ACTIONS(3208), 1, - sym_private_property_identifier, + [60617] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50187] = 3, - ACTIONS(3190), 1, + ACTIONS(1647), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [60626] = 3, + ACTIONS(3076), 1, anon_sym_LBRACE, - STATE(522), 1, - sym_statement_block, + STATE(618), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50198] = 2, + [60637] = 3, + ACTIONS(3399), 1, + anon_sym_from, + STATE(1825), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1415), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50207] = 3, - ACTIONS(3210), 1, - anon_sym_SEMI, - ACTIONS(3212), 1, - sym__automatic_semicolon, + [60648] = 3, + ACTIONS(3258), 1, + anon_sym_LBRACE, + STATE(1575), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50218] = 2, + [60659] = 3, + ACTIONS(3399), 1, + anon_sym_from, + STATE(1446), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50227] = 3, - ACTIONS(3216), 1, + [60670] = 3, + ACTIONS(3825), 1, anon_sym_LBRACE, - STATE(1562), 1, - sym_object, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50238] = 2, + STATE(1576), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50247] = 3, - ACTIONS(3220), 1, - anon_sym_SEMI, - ACTIONS(3222), 1, - sym__automatic_semicolon, + [60681] = 3, + ACTIONS(3130), 1, + sym_identifier, + ACTIONS(3134), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50258] = 3, - ACTIONS(2835), 1, - sym_identifier, - ACTIONS(2839), 1, - sym_private_property_identifier, + [60692] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1819), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50269] = 3, - ACTIONS(3192), 1, + [60703] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(74), 1, + STATE(1141), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50280] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1538), 1, - sym_formal_parameters, + [60714] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1142), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50291] = 2, + [60725] = 3, + ACTIONS(3407), 1, + anon_sym_LBRACE, + STATE(415), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1474), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50300] = 2, + [60736] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1478), 2, + ACTIONS(2029), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50309] = 3, - ACTIONS(2647), 1, + [60745] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1539), 1, + STATE(1887), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50320] = 3, - ACTIONS(2647), 1, + [60756] = 3, + ACTIONS(3827), 1, + anon_sym_LBRACE, + STATE(439), 1, + sym_switch_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [60767] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1544), 1, + STATE(1698), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50331] = 3, - ACTIONS(2647), 1, + [60778] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1471), 1, + STATE(1700), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50342] = 3, - ACTIONS(3030), 1, + [60789] = 3, + ACTIONS(3699), 1, anon_sym_LBRACE, - STATE(346), 1, + STATE(406), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50353] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1606), 1, - sym_formal_parameters, + [60800] = 3, + ACTIONS(3829), 1, + anon_sym_SEMI, + ACTIONS(3831), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50364] = 3, - ACTIONS(3030), 1, + [60811] = 3, + ACTIONS(3568), 1, anon_sym_LBRACE, - STATE(943), 1, + STATE(1821), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50375] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1472), 1, - sym_formal_parameters, + [60822] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1827), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50386] = 3, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(3103), 1, - anon_sym_GT, + [60833] = 3, + ACTIONS(3098), 1, + anon_sym_LBRACE, + STATE(669), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50397] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1547), 1, - sym_formal_parameters, + [60844] = 3, + ACTIONS(3821), 1, + anon_sym_LBRACE, + STATE(670), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50408] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_GT, + [60855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50419] = 3, - ACTIONS(2647), 1, + ACTIONS(2574), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [60864] = 3, + ACTIONS(3697), 1, anon_sym_LPAREN, - STATE(1396), 1, - sym_formal_parameters, + STATE(56), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50430] = 3, - ACTIONS(3190), 1, + [60875] = 3, + ACTIONS(3076), 1, anon_sym_LBRACE, - STATE(519), 1, - sym_statement_block, + STATE(589), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50441] = 3, - ACTIONS(3190), 1, + [60886] = 3, + ACTIONS(3568), 1, anon_sym_LBRACE, - STATE(520), 1, + STATE(1710), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50452] = 2, + [60897] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3186), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50461] = 3, - ACTIONS(2647), 1, + ACTIONS(3833), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60906] = 3, + ACTIONS(3821), 1, + anon_sym_LBRACE, + STATE(673), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [60917] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1475), 1, + STATE(1763), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50472] = 2, + [60928] = 3, + ACTIONS(3835), 1, + sym_identifier, + ACTIONS(3837), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3224), 2, + [60939] = 3, + ACTIONS(3821), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [50481] = 3, - ACTIONS(3018), 1, - anon_sym_from, - STATE(1398), 1, - sym__from_clause, + STATE(674), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50492] = 3, - ACTIONS(2724), 1, - anon_sym_LBRACE, - STATE(521), 1, - sym_class_body, + [60950] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50503] = 3, - ACTIONS(3226), 1, + ACTIONS(1643), 2, anon_sym_LPAREN, - STATE(25), 1, - sym_parenthesized_expression, + anon_sym_COLON, + [60959] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50514] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(72), 1, - sym_class_body, + ACTIONS(2574), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [60968] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1913), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50525] = 3, - ACTIONS(3226), 1, + [60979] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, + STATE(1916), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50536] = 2, + [60990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3034), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [50545] = 2, + ACTIONS(1124), 2, + anon_sym_else, + anon_sym_while, + [60999] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3179), 2, + ACTIONS(2574), 2, anon_sym_COMMA, anon_sym_RBRACE, - [50554] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, + [61008] = 3, + ACTIONS(3098), 1, + anon_sym_LBRACE, + STATE(675), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50565] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(947), 1, - sym_statement_block, + [61019] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50576] = 3, - ACTIONS(2647), 1, + ACTIONS(3839), 2, + sym__shorthand_arrow, + anon_sym_EQ_GT, + [61028] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1378), 1, + STATE(1924), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50587] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(627), 1, - sym_statement_block, + [61039] = 3, + ACTIONS(3841), 1, + anon_sym_SEMI, + ACTIONS(3843), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50598] = 2, + [61050] = 3, + ACTIONS(3825), 1, + anon_sym_LBRACE, + STATE(1638), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50607] = 3, - ACTIONS(2647), 1, + [61061] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1404), 1, + STATE(2108), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50618] = 3, - ACTIONS(3192), 1, + [61072] = 3, + ACTIONS(3825), 1, anon_sym_LBRACE, - STATE(633), 1, + STATE(1641), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50629] = 3, - ACTIONS(3228), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym__for_header, + [61083] = 3, + ACTIONS(3258), 1, + anon_sym_LBRACE, + STATE(1644), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50640] = 3, - ACTIONS(2119), 1, + [61094] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(1143), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50651] = 3, - ACTIONS(2109), 1, + [61105] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50662] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(924), 1, - sym_statement_block, + STATE(1929), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50673] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(70), 1, - sym_statement_block, + [61116] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1756), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50684] = 3, - ACTIONS(2109), 1, + [61127] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - ACTIONS(3230), 1, - anon_sym_EQ_GT, + STATE(1820), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50695] = 3, - ACTIONS(2647), 1, + [61138] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1569), 1, + STATE(1935), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50706] = 3, - ACTIONS(3232), 1, - anon_sym_COMMA, - ACTIONS(3234), 1, - anon_sym_from, + [61149] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50717] = 3, - ACTIONS(3018), 1, - anon_sym_from, - STATE(1261), 1, - sym__from_clause, + ACTIONS(1210), 2, + anon_sym_else, + anon_sym_while, + [61158] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1145), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50728] = 2, + [61169] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1938), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3236), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50737] = 2, + [61180] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3238), 2, - sym__automatic_semicolon, + ACTIONS(1274), 2, + anon_sym_else, + anon_sym_while, + [61189] = 3, + ACTIONS(3845), 1, anon_sym_SEMI, - [50746] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(68), 1, - sym_statement_block, + ACTIONS(3847), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50757] = 3, - ACTIONS(2724), 1, - anon_sym_LBRACE, - STATE(516), 1, - sym_class_body, + [61200] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1837), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50768] = 2, + [61211] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1846), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3240), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50777] = 3, - ACTIONS(2119), 1, + [61222] = 3, + ACTIONS(3568), 1, anon_sym_LBRACE, - STATE(930), 1, + STATE(1847), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50788] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3242), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50797] = 2, + [61233] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1156), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3038), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50806] = 2, + [61244] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1167), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3244), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50815] = 3, - ACTIONS(2760), 1, + [61255] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(75), 1, - sym_class_body, + STATE(1134), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50826] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(1464), 1, - sym_parenthesized_expression, + [61266] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1136), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50837] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1586), 1, - sym_formal_parameters, + [61277] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50848] = 3, - ACTIONS(2119), 1, + ACTIONS(1306), 2, + anon_sym_else, + anon_sym_while, + [61286] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(931), 1, + STATE(1138), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50859] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym_statement_block, + [61297] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1851), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50870] = 2, + [61308] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3246), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50879] = 3, - ACTIONS(2647), 1, + ACTIONS(1206), 2, + anon_sym_else, + anon_sym_while, + [61317] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1555), 1, + STATE(1949), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50890] = 3, - ACTIONS(2647), 1, + [61328] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1529), 1, + STATE(1951), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50901] = 3, - ACTIONS(3248), 1, - anon_sym_LBRACE, - STATE(400), 1, - sym_switch_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50912] = 3, - ACTIONS(2647), 1, + [61339] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1556), 1, + STATE(1953), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50923] = 3, - ACTIONS(2647), 1, + [61350] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1590), 1, + STATE(1959), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50934] = 3, - ACTIONS(2647), 1, + [61361] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1557), 1, + STATE(1966), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50945] = 2, + [61372] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1968), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3128), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50954] = 3, - ACTIONS(2647), 1, + [61383] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1593), 1, + STATE(1969), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50965] = 3, - ACTIONS(2647), 1, + [61394] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1594), 1, + STATE(1971), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50976] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(926), 1, - sym_statement_block, + [61405] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1933), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50987] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_statement_block, + [61416] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50998] = 3, - ACTIONS(3228), 1, + ACTIONS(1206), 2, + anon_sym_else, + anon_sym_while, + [61425] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(52), 1, - sym__for_header, + STATE(2002), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51009] = 3, - ACTIONS(3226), 1, + [61436] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(28), 1, - sym_parenthesized_expression, + STATE(2011), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51020] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(932), 1, - sym_statement_block, + [61447] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(2014), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51031] = 2, + [61458] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3250), 2, + ACTIONS(3849), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51040] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(969), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51051] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(937), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51062] = 2, + [61467] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3252), 2, + ACTIONS(3612), 2, anon_sym_COMMA, anon_sym_RBRACE, - [51071] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(938), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51082] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51093] = 3, - ACTIONS(3254), 1, - anon_sym_LBRACE, - STATE(338), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51104] = 2, + [61476] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(2016), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3256), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51113] = 3, - ACTIONS(2647), 1, + [61487] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1598), 1, + STATE(2018), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51124] = 3, - ACTIONS(2647), 1, + [61498] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1599), 1, + STATE(2019), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51135] = 3, - ACTIONS(2647), 1, + [61509] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1600), 1, + STATE(2023), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51146] = 3, - ACTIONS(2647), 1, + [61520] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1602), 1, + STATE(2024), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51157] = 3, - ACTIONS(2647), 1, + [61531] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1603), 1, + STATE(2027), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51168] = 3, - ACTIONS(2647), 1, + [61542] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1604), 1, + STATE(2031), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51179] = 2, + [61553] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(2034), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3258), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [51188] = 2, + [61564] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(2037), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3049), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51197] = 3, - ACTIONS(2647), 1, + [61575] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1607), 1, + STATE(2045), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51208] = 3, - ACTIONS(2647), 1, + [61586] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1609), 1, + STATE(2047), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51219] = 3, - ACTIONS(2647), 1, + [61597] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1442), 1, + STATE(2048), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51230] = 3, - ACTIONS(2647), 1, + [61608] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1612), 1, + STATE(2052), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51241] = 3, - ACTIONS(3030), 1, + [61619] = 3, + ACTIONS(3821), 1, anon_sym_LBRACE, - STATE(940), 1, + STATE(676), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51252] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(941), 1, - sym_statement_block, + [61630] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(2063), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51263] = 3, - ACTIONS(2647), 1, + [61641] = 3, + ACTIONS(3701), 1, anon_sym_LPAREN, - STATE(1482), 1, - sym_formal_parameters, + STATE(67), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51274] = 3, - ACTIONS(2647), 1, + [61652] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1613), 1, + STATE(2065), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51285] = 3, - ACTIONS(2647), 1, + [61663] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1372), 1, + STATE(2066), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51296] = 3, - ACTIONS(2647), 1, + [61674] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1371), 1, + STATE(2068), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51307] = 3, - ACTIONS(2647), 1, + [61685] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1510), 1, + STATE(2071), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51318] = 3, - ACTIONS(2647), 1, + [61696] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1376), 1, + STATE(2072), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51329] = 3, - ACTIONS(2647), 1, + [61707] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1384), 1, + STATE(2075), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51340] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1386), 1, - sym_formal_parameters, + [61718] = 3, + ACTIONS(3821), 1, + anon_sym_LBRACE, + STATE(716), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51351] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1391), 1, - sym_formal_parameters, + [61729] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51362] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1432), 1, - sym_formal_parameters, + ACTIONS(2650), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [61738] = 3, + ACTIONS(3098), 1, + anon_sym_LBRACE, + STATE(678), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51373] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1439), 1, - sym_formal_parameters, + [61749] = 3, + ACTIONS(3821), 1, + anon_sym_LBRACE, + STATE(679), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51384] = 3, - ACTIONS(2647), 1, + [61760] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1452), 1, + STATE(1832), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51395] = 3, - ACTIONS(2119), 1, + [61771] = 3, + ACTIONS(3825), 1, anon_sym_LBRACE, - STATE(935), 1, + STATE(1675), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51406] = 3, - ACTIONS(3254), 1, + [61782] = 3, + ACTIONS(3707), 1, anon_sym_LBRACE, - STATE(349), 1, + STATE(585), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51417] = 3, - ACTIONS(3030), 1, + [61793] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(934), 1, + STATE(1146), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51428] = 3, - ACTIONS(2647), 1, + [61804] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1148), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [61815] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1522), 1, + STATE(1787), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51439] = 3, - ACTIONS(3030), 1, + [61826] = 3, + ACTIONS(3821), 1, anon_sym_LBRACE, - STATE(942), 1, + STATE(698), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51450] = 3, - ACTIONS(2647), 1, + [61837] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1524), 1, + STATE(1915), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51461] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1535), 1, - sym_formal_parameters, + [61848] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1158), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51472] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1573), 1, - sym_formal_parameters, + [61859] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1159), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51483] = 3, - ACTIONS(2647), 1, + [61870] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1577), 1, + STATE(1786), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51494] = 3, - ACTIONS(2647), 1, + [61881] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1591), 1, + STATE(1864), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51505] = 3, - ACTIONS(2647), 1, + [61892] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1160), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [61903] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1596), 1, + STATE(1791), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51516] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_statement_block, + [61914] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1792), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51527] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(657), 1, - sym_statement_block, + [61925] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1794), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51538] = 3, - ACTIONS(3254), 1, + [61936] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(350), 1, + STATE(1161), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51549] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(937), 1, - sym_statement_block, + [61947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51560] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(951), 1, - sym_statement_block, + ACTIONS(3566), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [61956] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1926), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51571] = 3, - ACTIONS(3030), 1, + [61967] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(954), 1, + STATE(1164), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51582] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(935), 1, - sym_statement_block, + [61978] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1927), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51593] = 3, - ACTIONS(3260), 1, - anon_sym_SEMI, - ACTIONS(3262), 1, - sym__automatic_semicolon, + [61989] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(1965), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51604] = 3, - ACTIONS(3030), 1, + [62000] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(925), 1, + STATE(1132), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51615] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1478), 1, - sym_formal_parameters, + [62011] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51626] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1480), 1, - sym_formal_parameters, + ACTIONS(1234), 2, + anon_sym_else, + anon_sym_while, + [62020] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51637] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1481), 1, - sym_formal_parameters, + ACTIONS(1242), 2, + anon_sym_else, + anon_sym_while, + [62029] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51648] = 3, - ACTIONS(2724), 1, - anon_sym_LBRACE, - STATE(539), 1, - sym_class_body, + ACTIONS(1254), 2, + anon_sym_else, + anon_sym_while, + [62038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51659] = 3, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(3144), 1, - anon_sym_GT, + ACTIONS(1262), 2, + anon_sym_else, + anon_sym_while, + [62047] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51670] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(938), 1, - sym_statement_block, + ACTIONS(3525), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [62056] = 3, + ACTIONS(3721), 1, + anon_sym_EQ_GT, + ACTIONS(3851), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51681] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3144), 1, - anon_sym_GT, + [62067] = 3, + ACTIONS(3853), 1, + sym_identifier, + ACTIONS(3855), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51692] = 3, - ACTIONS(3190), 1, + [62078] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(1166), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51703] = 3, - ACTIONS(3030), 1, + [62089] = 3, + ACTIONS(3568), 1, anon_sym_LBRACE, - STATE(946), 1, + STATE(1930), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51714] = 3, - ACTIONS(3030), 1, + [62100] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(949), 1, + STATE(1168), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51725] = 3, - ACTIONS(3264), 1, - sym_identifier, - ACTIONS(3266), 1, - sym_jsx_identifier, + [62111] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1169), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51736] = 3, - ACTIONS(3268), 1, - sym_identifier, - ACTIONS(3270), 1, - sym_private_property_identifier, + [62122] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(2046), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51747] = 3, - ACTIONS(2792), 1, - sym_identifier, - ACTIONS(2796), 1, - sym_private_property_identifier, + [62133] = 3, + ACTIONS(3568), 1, + anon_sym_LBRACE, + STATE(1940), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51758] = 3, - ACTIONS(3272), 1, - anon_sym_SEMI, - ACTIONS(3274), 1, - sym__automatic_semicolon, + [62144] = 3, + ACTIONS(2547), 1, + anon_sym_EQ_GT, + ACTIONS(3857), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51769] = 3, - ACTIONS(3030), 1, + [62155] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(952), 1, + STATE(1172), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51780] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym_parenthesized_expression, + [62166] = 3, + ACTIONS(3646), 1, + anon_sym_EQ_GT, + ACTIONS(3859), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51791] = 3, - ACTIONS(2867), 1, - anon_sym_LBRACE, - STATE(351), 1, - sym_class_body, + [62177] = 3, + ACTIONS(3703), 1, + anon_sym_EQ_GT, + ACTIONS(3861), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51802] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(947), 1, - sym_statement_block, + [62188] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51813] = 3, - ACTIONS(2647), 1, + ACTIONS(1214), 2, + anon_sym_else, + anon_sym_while, + [62197] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1419), 1, + STATE(2050), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51824] = 2, + [62208] = 3, + ACTIONS(3863), 1, + sym_identifier, + ACTIONS(3865), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(509), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51833] = 3, - ACTIONS(3192), 1, + [62219] = 3, + ACTIONS(3568), 1, anon_sym_LBRACE, - STATE(680), 1, + STATE(1944), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51844] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_statement_block, + [62230] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51855] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1496), 1, - sym_formal_parameters, + ACTIONS(2592), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [62239] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51866] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1497), 1, - sym_formal_parameters, + ACTIONS(3867), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [62248] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51877] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1514), 1, - sym_formal_parameters, + ACTIONS(3638), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [62257] = 3, + ACTIONS(3765), 1, + anon_sym_LBRACE, + STATE(88), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51888] = 3, - ACTIONS(3030), 1, + [62268] = 3, + ACTIONS(3821), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(681), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51899] = 3, - ACTIONS(3030), 1, + [62279] = 3, + ACTIONS(3568), 1, anon_sym_LBRACE, - STATE(930), 1, + STATE(1553), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51910] = 3, - ACTIONS(3030), 1, + [62290] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(931), 1, + STATE(1147), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51921] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1413), 1, - sym_formal_parameters, + [62301] = 3, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1163), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51932] = 2, + [62312] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [51941] = 3, - ACTIONS(2760), 1, + ACTIONS(3869), 2, + sym__shorthand_arrow, + anon_sym_EQ_GT, + [62321] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(679), 1, - sym_class_body, + STATE(1154), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51952] = 2, + [62332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1406), 2, + ACTIONS(623), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51961] = 2, + [62341] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3276), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51970] = 3, - ACTIONS(3030), 1, + ACTIONS(1350), 2, + anon_sym_else, + anon_sym_while, + [62350] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(955), 1, + STATE(1152), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51981] = 3, - ACTIONS(2760), 1, + [62361] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(638), 1, - sym_class_body, + STATE(1135), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51992] = 3, - ACTIONS(3190), 1, - anon_sym_LBRACE, - STATE(559), 1, - sym_statement_block, + [62372] = 3, + ACTIONS(3871), 1, + anon_sym_COMMA, + ACTIONS(3873), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52003] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(640), 1, - sym_class_body, + [62383] = 3, + ACTIONS(3399), 1, + anon_sym_from, + STATE(1486), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52014] = 3, - ACTIONS(3190), 1, + [62394] = 3, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(562), 1, + STATE(1151), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52025] = 2, + [62405] = 3, + ACTIONS(2973), 1, + anon_sym_LPAREN, + STATE(2058), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1721), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52034] = 3, - ACTIONS(3192), 1, + [62416] = 3, + ACTIONS(3568), 1, anon_sym_LBRACE, - STATE(642), 1, + STATE(2059), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52045] = 2, + [62427] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1723), 2, - sym__automatic_semicolon, + ACTIONS(3656), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [62436] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1218), 2, + anon_sym_else, + anon_sym_while, + [62445] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1222), 2, + anon_sym_else, + anon_sym_while, + [62454] = 3, + ACTIONS(3875), 1, anon_sym_SEMI, - [52054] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1512), 1, - sym_formal_parameters, + ACTIONS(3877), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52065] = 3, - ACTIONS(2867), 1, - anon_sym_LBRACE, - STATE(347), 1, - sym_class_body, + [62465] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52076] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_statement_block, + ACTIONS(3496), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [62474] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52087] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1511), 1, - sym_formal_parameters, + ACTIONS(3879), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62483] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52098] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1523), 1, - sym_formal_parameters, + ACTIONS(1226), 2, + anon_sym_else, + anon_sym_while, + [62492] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52109] = 3, - ACTIONS(3254), 1, - anon_sym_LBRACE, - STATE(353), 1, - sym_statement_block, + ACTIONS(1230), 2, + anon_sym_else, + anon_sym_while, + [62501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52120] = 3, - ACTIONS(2119), 1, + ACTIONS(1238), 2, + anon_sym_else, + anon_sym_while, + [62510] = 3, + ACTIONS(3300), 1, anon_sym_LBRACE, - STATE(940), 1, - sym_statement_block, + STATE(89), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52131] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1460), 1, - sym_formal_parameters, + [62521] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52142] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(35), 1, - sym_parenthesized_expression, + ACTIONS(1559), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62530] = 3, + ACTIONS(3747), 1, + anon_sym_LBRACE, + STATE(778), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52153] = 3, - ACTIONS(3030), 1, + [62541] = 3, + ACTIONS(3747), 1, anon_sym_LBRACE, - STATE(945), 1, + STATE(772), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52164] = 3, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(3174), 1, - anon_sym_GT, + [62552] = 3, + ACTIONS(2547), 1, + anon_sym_EQ_GT, + ACTIONS(2551), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52175] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3174), 1, - anon_sym_GT, + [62563] = 3, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [62574] = 3, + ACTIONS(3765), 1, + anon_sym_LBRACE, + STATE(87), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52186] = 3, - ACTIONS(2647), 1, + [62585] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1525), 1, + STATE(2062), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52197] = 3, - ACTIONS(2724), 1, + [62596] = 3, + ACTIONS(3821), 1, anon_sym_LBRACE, - STATE(566), 1, - sym_class_body, + STATE(706), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52208] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1526), 1, - sym_formal_parameters, + [62607] = 3, + ACTIONS(3821), 1, + anon_sym_LBRACE, + STATE(652), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52219] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(950), 1, - sym_statement_block, + [62618] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52230] = 3, - ACTIONS(2119), 1, + ACTIONS(1925), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62627] = 3, + ACTIONS(3747), 1, anon_sym_LBRACE, - STATE(924), 1, + STATE(750), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52241] = 3, - ACTIONS(2647), 1, + [62638] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1441), 1, + STATE(2017), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52252] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(647), 1, - sym_class_body, + [62649] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52263] = 3, - ACTIONS(3192), 1, + ACTIONS(1290), 2, + anon_sym_else, + anon_sym_while, + [62658] = 3, + ACTIONS(3747), 1, anon_sym_LBRACE, - STATE(648), 1, + STATE(751), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52274] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(941), 1, - sym_statement_block, + [62669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52285] = 3, - ACTIONS(3190), 1, - anon_sym_LBRACE, - STATE(567), 1, - sym_statement_block, + ACTIONS(1374), 2, + anon_sym_else, + anon_sym_while, + [62678] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52296] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(650), 1, - sym_statement_block, + ACTIONS(3885), 2, + anon_sym_in, + anon_sym_of, + [62687] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52307] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(618), 1, - sym_statement_block, + ACTIONS(1270), 2, + anon_sym_else, + anon_sym_while, + [62696] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52318] = 3, - ACTIONS(2647), 1, + ACTIONS(1565), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62705] = 3, + ACTIONS(2973), 1, anon_sym_LPAREN, - STATE(1420), 1, + STATE(2093), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52329] = 3, - ACTIONS(2119), 1, + [62716] = 3, + ACTIONS(3821), 1, anon_sym_LBRACE, - STATE(942), 1, + STATE(685), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52340] = 3, - ACTIONS(2760), 1, + [62727] = 3, + ACTIONS(3765), 1, anon_sym_LBRACE, - STATE(652), 1, - sym_class_body, + STATE(90), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52351] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(955), 1, - sym_statement_block, + [62738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52362] = 3, - ACTIONS(2119), 1, + ACTIONS(3887), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62747] = 3, + ACTIONS(3568), 1, anon_sym_LBRACE, - STATE(945), 1, + STATE(2012), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52373] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym_statement_block, + [62758] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52384] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_statement_block, + ACTIONS(1246), 2, + anon_sym_else, + anon_sym_while, + [62767] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52395] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(926), 1, - sym_statement_block, + ACTIONS(1250), 2, + anon_sym_else, + anon_sym_while, + [62776] = 3, + ACTIONS(3889), 1, + anon_sym_LPAREN, + STATE(419), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52406] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_statement_block, + [62787] = 3, + ACTIONS(3715), 1, + anon_sym_EQ_GT, + ACTIONS(3891), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52417] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(932), 1, - sym_statement_block, + [62798] = 3, + ACTIONS(3733), 1, + anon_sym_EQ_GT, + ACTIONS(3893), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52428] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1527), 1, - sym_formal_parameters, + [62809] = 3, + ACTIONS(3737), 1, + anon_sym_EQ_GT, + ACTIONS(3895), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52439] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(950), 1, - sym_statement_block, + [62820] = 3, + ACTIONS(3741), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52450] = 3, - ACTIONS(3192), 1, + [62831] = 3, + ACTIONS(3747), 1, anon_sym_LBRACE, - STATE(653), 1, + STATE(771), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52461] = 3, - ACTIONS(3278), 1, + [62842] = 3, + ACTIONS(3899), 1, sym_identifier, - ACTIONS(3280), 1, - anon_sym_STAR, + ACTIONS(3901), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52472] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(654), 1, - sym_statement_block, + [62853] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52483] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1563), 1, - sym_formal_parameters, + ACTIONS(3903), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62862] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52494] = 3, - ACTIONS(2760), 1, + ACTIONS(1607), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62871] = 3, + ACTIONS(3707), 1, anon_sym_LBRACE, - STATE(655), 1, - sym_class_body, + STATE(619), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52505] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(656), 1, - sym_statement_block, + [62882] = 2, + ACTIONS(3905), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52516] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(934), 1, - sym_statement_block, + [62890] = 2, + ACTIONS(3907), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52527] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1459), 1, - sym_formal_parameters, + [62898] = 2, + ACTIONS(3909), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52538] = 2, - ACTIONS(1805), 1, + [62906] = 2, + ACTIONS(2065), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52546] = 2, - ACTIONS(3282), 1, - sym_identifier, + [62914] = 2, + ACTIONS(2431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52554] = 2, - ACTIONS(1809), 1, - anon_sym_RPAREN, + [62922] = 2, + ACTIONS(3911), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52562] = 2, - ACTIONS(3284), 1, - sym_identifier, + [62930] = 2, + ACTIONS(3463), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52570] = 2, - ACTIONS(3286), 1, - anon_sym_EQ_GT, + [62938] = 2, + ACTIONS(3650), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52578] = 2, - ACTIONS(3288), 1, - anon_sym_COLON, + [62946] = 2, + ACTIONS(3516), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52586] = 2, - ACTIONS(1819), 1, - anon_sym_SEMI, + [62954] = 2, + ACTIONS(3913), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [62962] = 2, + ACTIONS(3606), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3290), 1, - anon_sym_SLASH2, - [52604] = 2, - ACTIONS(3292), 1, - anon_sym_EQ_GT, + sym_comment, + [62970] = 2, + ACTIONS(3915), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52612] = 2, - ACTIONS(3090), 1, - anon_sym_GT, + [62978] = 2, + ACTIONS(3917), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52620] = 2, - ACTIONS(3294), 1, + [62986] = 2, + ACTIONS(2115), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52628] = 2, - ACTIONS(3296), 1, - ts_builtin_sym_end, + [62994] = 2, + ACTIONS(2111), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52636] = 2, - ACTIONS(3298), 1, + [63002] = 2, + ACTIONS(2101), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52644] = 2, - ACTIONS(3300), 1, - anon_sym_as, + [63010] = 2, + ACTIONS(3919), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52652] = 2, - ACTIONS(3302), 1, - sym_identifier, + [63018] = 2, + ACTIONS(2043), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3304), 1, - anon_sym_SLASH2, - [52670] = 2, - ACTIONS(2109), 1, - anon_sym_LPAREN, + [63026] = 2, + ACTIONS(3921), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52678] = 2, - ACTIONS(3230), 1, - anon_sym_EQ_GT, + [63034] = 2, + ACTIONS(2119), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52686] = 2, - ACTIONS(3306), 1, - anon_sym_EQ_GT, + [63042] = 2, + ACTIONS(3923), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52694] = 2, - ACTIONS(3308), 1, - anon_sym_RPAREN, + [63050] = 2, + ACTIONS(3839), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3310), 1, - sym_regex_pattern, - [52712] = 3, + [63058] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3312), 1, + ACTIONS(3925), 1, anon_sym_SLASH2, - [52722] = 2, - ACTIONS(1562), 1, - anon_sym_in, + [63068] = 2, + ACTIONS(3927), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52730] = 2, - ACTIONS(1831), 1, - anon_sym_SEMI, + [63076] = 2, + ACTIONS(3929), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52738] = 2, - ACTIONS(1813), 1, + [63084] = 2, + ACTIONS(2125), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52746] = 2, - ACTIONS(3314), 1, - anon_sym_from, + [63092] = 2, + ACTIONS(3931), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52754] = 2, - ACTIONS(1773), 1, - anon_sym_in, + [63100] = 2, + ACTIONS(3933), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [63108] = 2, + ACTIONS(3935), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52762] = 2, - ACTIONS(1817), 1, + [63116] = 2, + ACTIONS(2121), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52770] = 2, - ACTIONS(3316), 1, + [63124] = 2, + ACTIONS(3937), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52778] = 2, - ACTIONS(3318), 1, - anon_sym_EQ, + [63132] = 2, + ACTIONS(2081), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52786] = 2, - ACTIONS(1811), 1, - anon_sym_RPAREN, + [63140] = 2, + ACTIONS(3520), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52794] = 2, - ACTIONS(3078), 1, - anon_sym_RBRACE, + [63148] = 2, + ACTIONS(3485), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52802] = 2, - ACTIONS(1833), 1, - anon_sym_SEMI, + [63156] = 2, + ACTIONS(3939), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52810] = 2, - ACTIONS(1632), 1, - anon_sym_in, + [63164] = 2, + ACTIONS(2083), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52818] = 2, - ACTIONS(2895), 1, - anon_sym_EQ, + [63172] = 2, + ACTIONS(3941), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52826] = 2, - ACTIONS(1787), 1, + [63180] = 2, + ACTIONS(2069), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52834] = 2, - ACTIONS(1821), 1, - anon_sym_RPAREN, + [63188] = 2, + ACTIONS(1885), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52842] = 2, - ACTIONS(1839), 1, - anon_sym_RPAREN, + [63196] = 2, + ACTIONS(3943), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52850] = 2, - ACTIONS(3320), 1, - anon_sym_while, + [63204] = 2, + ACTIONS(3216), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52858] = 2, - ACTIONS(3322), 1, - anon_sym_from, + [63212] = 2, + ACTIONS(2051), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52866] = 2, - ACTIONS(3324), 1, - anon_sym_EQ_GT, + [63220] = 2, + ACTIONS(3931), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52874] = 2, - ACTIONS(1843), 1, - anon_sym_RPAREN, + [63228] = 2, + ACTIONS(3811), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52882] = 2, - ACTIONS(1737), 1, - anon_sym_RPAREN, + [63236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3945), 1, + anon_sym_SLASH2, + [63246] = 2, + ACTIONS(3947), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52890] = 2, - ACTIONS(1835), 1, + [63254] = 2, + ACTIONS(2059), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52898] = 2, - ACTIONS(3326), 1, - anon_sym_from, + [63262] = 2, + ACTIONS(3949), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52906] = 2, - ACTIONS(1783), 1, - anon_sym_RBRACK, + [63270] = 2, + ACTIONS(3951), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52914] = 2, - ACTIONS(3328), 1, - anon_sym_EQ, + [63278] = 2, + ACTIONS(3953), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52922] = 2, - ACTIONS(3330), 1, + [63286] = 2, + ACTIONS(3955), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52930] = 2, - ACTIONS(2766), 1, - anon_sym_EQ, + [63294] = 2, + ACTIONS(2117), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52938] = 2, - ACTIONS(1785), 1, - anon_sym_RPAREN, + [63302] = 2, + ACTIONS(2089), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52946] = 2, - ACTIONS(3332), 1, - sym_identifier, + [63310] = 2, + ACTIONS(3957), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52954] = 2, - ACTIONS(3334), 1, - anon_sym_EQ_GT, + [63318] = 2, + ACTIONS(2123), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52962] = 2, - ACTIONS(3336), 1, - sym_identifier, + [63326] = 2, + ACTIONS(3959), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52970] = 2, - ACTIONS(1807), 1, - anon_sym_COLON, + [63334] = 2, + ACTIONS(2077), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52978] = 2, - ACTIONS(1823), 1, - anon_sym_RPAREN, + [63342] = 2, + ACTIONS(3961), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52986] = 2, - ACTIONS(1741), 1, - anon_sym_RPAREN, + [63350] = 2, + ACTIONS(2075), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52994] = 2, - ACTIONS(3338), 1, - anon_sym_EQ_GT, + [63358] = 2, + ACTIONS(3069), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53002] = 2, - ACTIONS(1797), 1, - anon_sym_RBRACK, + [63366] = 2, + ACTIONS(2091), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53010] = 2, - ACTIONS(1825), 1, + [63374] = 2, + ACTIONS(2085), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53018] = 2, - ACTIONS(3340), 1, - sym_identifier, + [63382] = 2, + ACTIONS(3873), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53026] = 2, - ACTIONS(1799), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, + [63390] = 3, + ACTIONS(3), 1, sym_comment, - [53034] = 2, - ACTIONS(3342), 1, - anon_sym_as, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3963), 1, + sym_regex_pattern, + [63400] = 2, + ACTIONS(3965), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53042] = 2, - ACTIONS(3344), 1, - anon_sym_target, + [63408] = 2, + ACTIONS(3823), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53050] = 2, - ACTIONS(1827), 1, - anon_sym_RPAREN, + [63416] = 2, + ACTIONS(3869), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53058] = 2, - ACTIONS(3174), 1, - anon_sym_GT, + [63424] = 2, + ACTIONS(1784), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53066] = 2, - ACTIONS(3346), 1, + [63432] = 2, + ACTIONS(3967), 1, anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53074] = 2, - ACTIONS(1747), 1, - anon_sym_RPAREN, + [63440] = 2, + ACTIONS(3969), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53082] = 2, - ACTIONS(2275), 1, - anon_sym_EQ_GT, + [63448] = 2, + ACTIONS(3939), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53090] = 2, - ACTIONS(3348), 1, - anon_sym_from, + [63456] = 2, + ACTIONS(1823), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53098] = 2, - ACTIONS(3350), 1, - sym_identifier, + [63464] = 2, + ACTIONS(3971), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53106] = 2, - ACTIONS(3352), 1, + [63472] = 2, + ACTIONS(2037), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53114] = 2, - ACTIONS(3344), 1, - anon_sym_meta, + [63480] = 2, + ACTIONS(2097), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53122] = 2, - ACTIONS(1837), 1, - anon_sym_RBRACE, + [63488] = 2, + ACTIONS(2055), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53130] = 3, + [63496] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3354), 1, + ACTIONS(3973), 1, sym_regex_pattern, - [53140] = 2, - ACTIONS(3356), 1, - anon_sym_EQ_GT, + [63506] = 2, + ACTIONS(2041), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53148] = 2, - ACTIONS(1829), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, + [63514] = 3, + ACTIONS(3), 1, sym_comment, - [53156] = 2, - ACTIONS(3358), 1, - anon_sym_meta, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3975), 1, + anon_sym_SLASH2, + [63524] = 2, + ACTIONS(2252), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53164] = 3, + [63532] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3360), 1, - sym_regex_pattern, - [53174] = 2, - ACTIONS(3362), 1, - anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_SLASH2, + [63542] = 2, + ACTIONS(3979), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53182] = 2, - ACTIONS(1803), 1, - anon_sym_RBRACK, + [63550] = 2, + ACTIONS(3981), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53190] = 2, - ACTIONS(1793), 1, + [63558] = 2, + ACTIONS(2107), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53198] = 2, - ACTIONS(3364), 1, - anon_sym_EQ_GT, + [63566] = 2, + ACTIONS(2035), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53206] = 2, - ACTIONS(3366), 1, - anon_sym_from, + [63574] = 2, + ACTIONS(3557), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [63582] = 2, + ACTIONS(3983), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53214] = 3, + [63590] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3368), 1, - sym_regex_pattern, - [53224] = 2, - ACTIONS(1871), 1, - anon_sym_in, + ACTIONS(3985), 1, + anon_sym_SLASH2, + [63600] = 2, + ACTIONS(2109), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53232] = 2, - ACTIONS(1674), 1, - anon_sym_in, + [63608] = 2, + ACTIONS(3923), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53240] = 2, - ACTIONS(3370), 1, - anon_sym_EQ_GT, + [63616] = 2, + ACTIONS(2049), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53248] = 2, - ACTIONS(3372), 1, - anon_sym_EQ_GT, + [63624] = 2, + ACTIONS(2214), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53256] = 2, - ACTIONS(3374), 1, - anon_sym_EQ_GT, + [63632] = 2, + ACTIONS(2063), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53264] = 2, - ACTIONS(3376), 1, - anon_sym_EQ_GT, + [63640] = 2, + ACTIONS(3987), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53272] = 2, - ACTIONS(3378), 1, - anon_sym_EQ_GT, + [63648] = 2, + ACTIONS(1128), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53280] = 2, - ACTIONS(3144), 1, - anon_sym_GT, - ACTIONS(5), 2, + [63656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(3989), 1, + sym_regex_pattern, + [63666] = 3, + ACTIONS(3), 1, sym_comment, - [53288] = 2, - ACTIONS(3380), 1, - anon_sym_EQ_GT, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3991), 1, + sym_regex_pattern, + [63676] = 2, + ACTIONS(3993), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53296] = 2, - ACTIONS(3382), 1, - anon_sym_EQ, + [63684] = 2, + ACTIONS(3629), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53304] = 2, - ACTIONS(3384), 1, - anon_sym_EQ_GT, + [63692] = 2, + ACTIONS(2178), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53312] = 2, - ACTIONS(3386), 1, - anon_sym_EQ_GT, + [63700] = 2, + ACTIONS(2073), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53320] = 2, - ACTIONS(3068), 1, - anon_sym_RBRACE, + [63708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3995), 1, + sym_regex_pattern, + [63718] = 2, + ACTIONS(3997), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53328] = 2, - ACTIONS(3358), 1, - anon_sym_target, + [63726] = 2, + ACTIONS(2067), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53336] = 2, - ACTIONS(3234), 1, + [63734] = 2, + ACTIONS(3999), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53344] = 3, - ACTIONS(3), 1, + [63742] = 2, + ACTIONS(2099), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [63750] = 2, + ACTIONS(4001), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3388), 1, - anon_sym_SLASH2, - [53354] = 2, - ACTIONS(3390), 1, - anon_sym_from, + sym_comment, + [63758] = 2, + ACTIONS(4003), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53362] = 2, - ACTIONS(3392), 1, - anon_sym_EQ_GT, + [63766] = 2, + ACTIONS(2007), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [63774] = 2, + ACTIONS(4005), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53370] = 2, - ACTIONS(1789), 1, + [63782] = 2, + ACTIONS(2087), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53378] = 2, - ACTIONS(3394), 1, - anon_sym_EQ_GT, + [63790] = 2, + ACTIONS(4007), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53386] = 2, - ACTIONS(1845), 1, + [63798] = 2, + ACTIONS(2033), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53394] = 2, - ACTIONS(3396), 1, + [63806] = 2, + ACTIONS(4009), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53402] = 2, - ACTIONS(3103), 1, - anon_sym_GT, + [63814] = 2, + ACTIONS(2113), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(326)] = 0, - [SMALL_STATE(327)] = 71, - [SMALL_STATE(328)] = 142, - [SMALL_STATE(329)] = 233, - [SMALL_STATE(330)] = 322, - [SMALL_STATE(331)] = 412, - [SMALL_STATE(332)] = 498, - [SMALL_STATE(333)] = 584, - [SMALL_STATE(334)] = 658, - [SMALL_STATE(335)] = 744, - [SMALL_STATE(336)] = 815, - [SMALL_STATE(337)] = 886, - [SMALL_STATE(338)] = 955, - [SMALL_STATE(339)] = 1026, - [SMALL_STATE(340)] = 1095, - [SMALL_STATE(341)] = 1164, - [SMALL_STATE(342)] = 1235, - [SMALL_STATE(343)] = 1304, - [SMALL_STATE(344)] = 1391, - [SMALL_STATE(345)] = 1480, - [SMALL_STATE(346)] = 1553, - [SMALL_STATE(347)] = 1622, - [SMALL_STATE(348)] = 1693, - [SMALL_STATE(349)] = 1762, - [SMALL_STATE(350)] = 1833, - [SMALL_STATE(351)] = 1904, - [SMALL_STATE(352)] = 1975, - [SMALL_STATE(353)] = 2062, - [SMALL_STATE(354)] = 2133, - [SMALL_STATE(355)] = 2204, - [SMALL_STATE(356)] = 2273, - [SMALL_STATE(357)] = 2358, - [SMALL_STATE(358)] = 2443, - [SMALL_STATE(359)] = 2514, - [SMALL_STATE(360)] = 2583, - [SMALL_STATE(361)] = 2651, - [SMALL_STATE(362)] = 2719, - [SMALL_STATE(363)] = 2787, - [SMALL_STATE(364)] = 2855, - [SMALL_STATE(365)] = 2923, - [SMALL_STATE(366)] = 2991, - [SMALL_STATE(367)] = 3059, - [SMALL_STATE(368)] = 3127, - [SMALL_STATE(369)] = 3195, - [SMALL_STATE(370)] = 3263, - [SMALL_STATE(371)] = 3331, - [SMALL_STATE(372)] = 3399, - [SMALL_STATE(373)] = 3467, - [SMALL_STATE(374)] = 3535, - [SMALL_STATE(375)] = 3603, - [SMALL_STATE(376)] = 3671, - [SMALL_STATE(377)] = 3739, - [SMALL_STATE(378)] = 3807, - [SMALL_STATE(379)] = 3875, - [SMALL_STATE(380)] = 3943, - [SMALL_STATE(381)] = 4011, - [SMALL_STATE(382)] = 4079, - [SMALL_STATE(383)] = 4147, - [SMALL_STATE(384)] = 4215, - [SMALL_STATE(385)] = 4283, - [SMALL_STATE(386)] = 4351, - [SMALL_STATE(387)] = 4419, - [SMALL_STATE(388)] = 4487, - [SMALL_STATE(389)] = 4555, - [SMALL_STATE(390)] = 4623, - [SMALL_STATE(391)] = 4691, - [SMALL_STATE(392)] = 4759, - [SMALL_STATE(393)] = 4827, - [SMALL_STATE(394)] = 4895, - [SMALL_STATE(395)] = 4963, - [SMALL_STATE(396)] = 5031, - [SMALL_STATE(397)] = 5099, - [SMALL_STATE(398)] = 5167, - [SMALL_STATE(399)] = 5235, - [SMALL_STATE(400)] = 5303, - [SMALL_STATE(401)] = 5371, - [SMALL_STATE(402)] = 5439, - [SMALL_STATE(403)] = 5507, - [SMALL_STATE(404)] = 5575, - [SMALL_STATE(405)] = 5643, - [SMALL_STATE(406)] = 5711, - [SMALL_STATE(407)] = 5779, - [SMALL_STATE(408)] = 5847, - [SMALL_STATE(409)] = 5915, - [SMALL_STATE(410)] = 5983, - [SMALL_STATE(411)] = 6071, - [SMALL_STATE(412)] = 6139, - [SMALL_STATE(413)] = 6207, - [SMALL_STATE(414)] = 6275, - [SMALL_STATE(415)] = 6343, - [SMALL_STATE(416)] = 6411, - [SMALL_STATE(417)] = 6479, - [SMALL_STATE(418)] = 6547, - [SMALL_STATE(419)] = 6615, - [SMALL_STATE(420)] = 6683, - [SMALL_STATE(421)] = 6751, - [SMALL_STATE(422)] = 6819, - [SMALL_STATE(423)] = 6887, - [SMALL_STATE(424)] = 6955, - [SMALL_STATE(425)] = 7023, - [SMALL_STATE(426)] = 7091, - [SMALL_STATE(427)] = 7174, - [SMALL_STATE(428)] = 7240, - [SMALL_STATE(429)] = 7306, - [SMALL_STATE(430)] = 7372, - [SMALL_STATE(431)] = 7442, - [SMALL_STATE(432)] = 7508, - [SMALL_STATE(433)] = 7590, - [SMALL_STATE(434)] = 7656, - [SMALL_STATE(435)] = 7738, - [SMALL_STATE(436)] = 7804, - [SMALL_STATE(437)] = 7870, - [SMALL_STATE(438)] = 7952, - [SMALL_STATE(439)] = 8023, - [SMALL_STATE(440)] = 8094, - [SMALL_STATE(441)] = 8165, - [SMALL_STATE(442)] = 8236, - [SMALL_STATE(443)] = 8319, - [SMALL_STATE(444)] = 8387, - [SMALL_STATE(445)] = 8450, - [SMALL_STATE(446)] = 8513, - [SMALL_STATE(447)] = 8576, - [SMALL_STATE(448)] = 8645, - [SMALL_STATE(449)] = 8708, - [SMALL_STATE(450)] = 8777, - [SMALL_STATE(451)] = 8840, - [SMALL_STATE(452)] = 8909, - [SMALL_STATE(453)] = 8980, - [SMALL_STATE(454)] = 9051, - [SMALL_STATE(455)] = 9120, - [SMALL_STATE(456)] = 9191, - [SMALL_STATE(457)] = 9262, - [SMALL_STATE(458)] = 9325, - [SMALL_STATE(459)] = 9394, - [SMALL_STATE(460)] = 9457, - [SMALL_STATE(461)] = 9526, - [SMALL_STATE(462)] = 9593, - [SMALL_STATE(463)] = 9656, - [SMALL_STATE(464)] = 9719, - [SMALL_STATE(465)] = 9790, - [SMALL_STATE(466)] = 9853, - [SMALL_STATE(467)] = 9924, - [SMALL_STATE(468)] = 9995, - [SMALL_STATE(469)] = 10066, - [SMALL_STATE(470)] = 10137, - [SMALL_STATE(471)] = 10206, - [SMALL_STATE(472)] = 10275, - [SMALL_STATE(473)] = 10338, - [SMALL_STATE(474)] = 10401, - [SMALL_STATE(475)] = 10464, - [SMALL_STATE(476)] = 10527, - [SMALL_STATE(477)] = 10590, - [SMALL_STATE(478)] = 10653, - [SMALL_STATE(479)] = 10724, - [SMALL_STATE(480)] = 10794, - [SMALL_STATE(481)] = 10866, - [SMALL_STATE(482)] = 10932, - [SMALL_STATE(483)] = 11002, - [SMALL_STATE(484)] = 11070, - [SMALL_STATE(485)] = 11142, - [SMALL_STATE(486)] = 11210, - [SMALL_STATE(487)] = 11278, - [SMALL_STATE(488)] = 11344, - [SMALL_STATE(489)] = 11415, - [SMALL_STATE(490)] = 11484, - [SMALL_STATE(491)] = 11551, - [SMALL_STATE(492)] = 11618, - [SMALL_STATE(493)] = 11689, - [SMALL_STATE(494)] = 11756, - [SMALL_STATE(495)] = 11826, - [SMALL_STATE(496)] = 11892, - [SMALL_STATE(497)] = 11958, - [SMALL_STATE(498)] = 12028, - [SMALL_STATE(499)] = 12096, - [SMALL_STATE(500)] = 12162, - [SMALL_STATE(501)] = 12228, - [SMALL_STATE(502)] = 12295, - [SMALL_STATE(503)] = 12358, - [SMALL_STATE(504)] = 12424, - [SMALL_STATE(505)] = 12484, - [SMALL_STATE(506)] = 12540, - [SMALL_STATE(507)] = 12593, - [SMALL_STATE(508)] = 12654, - [SMALL_STATE(509)] = 12707, - [SMALL_STATE(510)] = 12768, - [SMALL_STATE(511)] = 12831, - [SMALL_STATE(512)] = 12884, - [SMALL_STATE(513)] = 12939, - [SMALL_STATE(514)] = 13002, - [SMALL_STATE(515)] = 13054, - [SMALL_STATE(516)] = 13104, - [SMALL_STATE(517)] = 13154, - [SMALL_STATE(518)] = 13204, - [SMALL_STATE(519)] = 13254, - [SMALL_STATE(520)] = 13304, - [SMALL_STATE(521)] = 13354, - [SMALL_STATE(522)] = 13404, - [SMALL_STATE(523)] = 13454, - [SMALL_STATE(524)] = 13504, - [SMALL_STATE(525)] = 13554, - [SMALL_STATE(526)] = 13608, - [SMALL_STATE(527)] = 13658, - [SMALL_STATE(528)] = 13708, - [SMALL_STATE(529)] = 13758, - [SMALL_STATE(530)] = 13808, - [SMALL_STATE(531)] = 13858, - [SMALL_STATE(532)] = 13908, - [SMALL_STATE(533)] = 13958, - [SMALL_STATE(534)] = 14012, - [SMALL_STATE(535)] = 14062, - [SMALL_STATE(536)] = 14112, - [SMALL_STATE(537)] = 14162, - [SMALL_STATE(538)] = 14212, - [SMALL_STATE(539)] = 14262, - [SMALL_STATE(540)] = 14312, - [SMALL_STATE(541)] = 14362, - [SMALL_STATE(542)] = 14412, - [SMALL_STATE(543)] = 14466, - [SMALL_STATE(544)] = 14516, - [SMALL_STATE(545)] = 14566, - [SMALL_STATE(546)] = 14616, - [SMALL_STATE(547)] = 14666, - [SMALL_STATE(548)] = 14716, - [SMALL_STATE(549)] = 14766, - [SMALL_STATE(550)] = 14816, - [SMALL_STATE(551)] = 14866, - [SMALL_STATE(552)] = 14916, - [SMALL_STATE(553)] = 14966, - [SMALL_STATE(554)] = 15016, - [SMALL_STATE(555)] = 15066, - [SMALL_STATE(556)] = 15116, - [SMALL_STATE(557)] = 15166, - [SMALL_STATE(558)] = 15216, - [SMALL_STATE(559)] = 15266, - [SMALL_STATE(560)] = 15316, - [SMALL_STATE(561)] = 15366, - [SMALL_STATE(562)] = 15416, - [SMALL_STATE(563)] = 15466, - [SMALL_STATE(564)] = 15516, - [SMALL_STATE(565)] = 15566, - [SMALL_STATE(566)] = 15616, - [SMALL_STATE(567)] = 15666, - [SMALL_STATE(568)] = 15716, - [SMALL_STATE(569)] = 15766, - [SMALL_STATE(570)] = 15816, - [SMALL_STATE(571)] = 15866, - [SMALL_STATE(572)] = 15916, - [SMALL_STATE(573)] = 15966, - [SMALL_STATE(574)] = 16016, - [SMALL_STATE(575)] = 16097, - [SMALL_STATE(576)] = 16190, - [SMALL_STATE(577)] = 16283, - [SMALL_STATE(578)] = 16334, - [SMALL_STATE(579)] = 16427, - [SMALL_STATE(580)] = 16490, - [SMALL_STATE(581)] = 16583, - [SMALL_STATE(582)] = 16676, - [SMALL_STATE(583)] = 16769, - [SMALL_STATE(584)] = 16862, - [SMALL_STATE(585)] = 16919, - [SMALL_STATE(586)] = 17012, - [SMALL_STATE(587)] = 17085, - [SMALL_STATE(588)] = 17178, - [SMALL_STATE(589)] = 17241, - [SMALL_STATE(590)] = 17334, - [SMALL_STATE(591)] = 17419, - [SMALL_STATE(592)] = 17506, - [SMALL_STATE(593)] = 17575, - [SMALL_STATE(594)] = 17658, - [SMALL_STATE(595)] = 17743, - [SMALL_STATE(596)] = 17810, - [SMALL_STATE(597)] = 17903, - [SMALL_STATE(598)] = 17954, - [SMALL_STATE(599)] = 18017, - [SMALL_STATE(600)] = 18068, - [SMALL_STATE(601)] = 18145, - [SMALL_STATE(602)] = 18196, - [SMALL_STATE(603)] = 18285, - [SMALL_STATE(604)] = 18378, - [SMALL_STATE(605)] = 18430, - [SMALL_STATE(606)] = 18484, - [SMALL_STATE(607)] = 18534, - [SMALL_STATE(608)] = 18626, - [SMALL_STATE(609)] = 18674, - [SMALL_STATE(610)] = 18734, - [SMALL_STATE(611)] = 18784, - [SMALL_STATE(612)] = 18842, - [SMALL_STATE(613)] = 18892, - [SMALL_STATE(614)] = 18942, - [SMALL_STATE(615)] = 19000, - [SMALL_STATE(616)] = 19052, - [SMALL_STATE(617)] = 19100, - [SMALL_STATE(618)] = 19160, - [SMALL_STATE(619)] = 19211, - [SMALL_STATE(620)] = 19258, - [SMALL_STATE(621)] = 19305, - [SMALL_STATE(622)] = 19352, - [SMALL_STATE(623)] = 19399, - [SMALL_STATE(624)] = 19490, - [SMALL_STATE(625)] = 19581, - [SMALL_STATE(626)] = 19628, - [SMALL_STATE(627)] = 19675, - [SMALL_STATE(628)] = 19722, - [SMALL_STATE(629)] = 19769, - [SMALL_STATE(630)] = 19860, - [SMALL_STATE(631)] = 19907, - [SMALL_STATE(632)] = 19998, - [SMALL_STATE(633)] = 20049, - [SMALL_STATE(634)] = 20096, - [SMALL_STATE(635)] = 20143, - [SMALL_STATE(636)] = 20190, - [SMALL_STATE(637)] = 20237, - [SMALL_STATE(638)] = 20284, - [SMALL_STATE(639)] = 20335, - [SMALL_STATE(640)] = 20382, - [SMALL_STATE(641)] = 20429, - [SMALL_STATE(642)] = 20476, - [SMALL_STATE(643)] = 20527, - [SMALL_STATE(644)] = 20576, - [SMALL_STATE(645)] = 20623, - [SMALL_STATE(646)] = 20674, - [SMALL_STATE(647)] = 20725, - [SMALL_STATE(648)] = 20772, - [SMALL_STATE(649)] = 20819, - [SMALL_STATE(650)] = 20866, - [SMALL_STATE(651)] = 20917, - [SMALL_STATE(652)] = 20964, - [SMALL_STATE(653)] = 21015, - [SMALL_STATE(654)] = 21062, - [SMALL_STATE(655)] = 21109, - [SMALL_STATE(656)] = 21156, - [SMALL_STATE(657)] = 21207, - [SMALL_STATE(658)] = 21254, - [SMALL_STATE(659)] = 21301, - [SMALL_STATE(660)] = 21348, - [SMALL_STATE(661)] = 21395, - [SMALL_STATE(662)] = 21446, - [SMALL_STATE(663)] = 21493, - [SMALL_STATE(664)] = 21540, - [SMALL_STATE(665)] = 21587, - [SMALL_STATE(666)] = 21636, - [SMALL_STATE(667)] = 21727, - [SMALL_STATE(668)] = 21778, - [SMALL_STATE(669)] = 21829, - [SMALL_STATE(670)] = 21880, - [SMALL_STATE(671)] = 21927, - [SMALL_STATE(672)] = 21978, - [SMALL_STATE(673)] = 22025, - [SMALL_STATE(674)] = 22116, - [SMALL_STATE(675)] = 22163, - [SMALL_STATE(676)] = 22210, - [SMALL_STATE(677)] = 22257, - [SMALL_STATE(678)] = 22304, - [SMALL_STATE(679)] = 22351, - [SMALL_STATE(680)] = 22398, - [SMALL_STATE(681)] = 22445, - [SMALL_STATE(682)] = 22492, - [SMALL_STATE(683)] = 22541, - [SMALL_STATE(684)] = 22588, - [SMALL_STATE(685)] = 22679, - [SMALL_STATE(686)] = 22726, - [SMALL_STATE(687)] = 22817, - [SMALL_STATE(688)] = 22888, - [SMALL_STATE(689)] = 22935, - [SMALL_STATE(690)] = 23026, - [SMALL_STATE(691)] = 23117, - [SMALL_STATE(692)] = 23178, - [SMALL_STATE(693)] = 23269, - [SMALL_STATE(694)] = 23360, - [SMALL_STATE(695)] = 23451, - [SMALL_STATE(696)] = 23522, - [SMALL_STATE(697)] = 23583, - [SMALL_STATE(698)] = 23666, - [SMALL_STATE(699)] = 23749, - [SMALL_STATE(700)] = 23834, - [SMALL_STATE(701)] = 23901, - [SMALL_STATE(702)] = 23980, - [SMALL_STATE(703)] = 24061, - [SMALL_STATE(704)] = 24144, - [SMALL_STATE(705)] = 24209, - [SMALL_STATE(706)] = 24270, - [SMALL_STATE(707)] = 24345, - [SMALL_STATE(708)] = 24432, - [SMALL_STATE(709)] = 24523, - [SMALL_STATE(710)] = 24614, - [SMALL_STATE(711)] = 24699, - [SMALL_STATE(712)] = 24766, - [SMALL_STATE(713)] = 24857, - [SMALL_STATE(714)] = 24948, - [SMALL_STATE(715)] = 25039, - [SMALL_STATE(716)] = 25118, - [SMALL_STATE(717)] = 25199, - [SMALL_STATE(718)] = 25282, - [SMALL_STATE(719)] = 25373, - [SMALL_STATE(720)] = 25438, - [SMALL_STATE(721)] = 25499, - [SMALL_STATE(722)] = 25574, - [SMALL_STATE(723)] = 25661, - [SMALL_STATE(724)] = 25708, - [SMALL_STATE(725)] = 25755, - [SMALL_STATE(726)] = 25804, - [SMALL_STATE(727)] = 25851, - [SMALL_STATE(728)] = 25942, - [SMALL_STATE(729)] = 26033, - [SMALL_STATE(730)] = 26080, - [SMALL_STATE(731)] = 26171, - [SMALL_STATE(732)] = 26218, - [SMALL_STATE(733)] = 26309, - [SMALL_STATE(734)] = 26400, - [SMALL_STATE(735)] = 26494, - [SMALL_STATE(736)] = 26544, - [SMALL_STATE(737)] = 26636, - [SMALL_STATE(738)] = 26726, - [SMALL_STATE(739)] = 26820, - [SMALL_STATE(740)] = 26910, - [SMALL_STATE(741)] = 26962, - [SMALL_STATE(742)] = 27014, - [SMALL_STATE(743)] = 27066, - [SMALL_STATE(744)] = 27116, - [SMALL_STATE(745)] = 27168, - [SMALL_STATE(746)] = 27262, - [SMALL_STATE(747)] = 27356, - [SMALL_STATE(748)] = 27450, - [SMALL_STATE(749)] = 27544, - [SMALL_STATE(750)] = 27594, - [SMALL_STATE(751)] = 27687, - [SMALL_STATE(752)] = 27780, - [SMALL_STATE(753)] = 27873, - [SMALL_STATE(754)] = 27966, - [SMALL_STATE(755)] = 28059, - [SMALL_STATE(756)] = 28152, - [SMALL_STATE(757)] = 28245, - [SMALL_STATE(758)] = 28334, - [SMALL_STATE(759)] = 28423, - [SMALL_STATE(760)] = 28474, - [SMALL_STATE(761)] = 28567, - [SMALL_STATE(762)] = 28618, - [SMALL_STATE(763)] = 28669, - [SMALL_STATE(764)] = 28762, - [SMALL_STATE(765)] = 28851, - [SMALL_STATE(766)] = 28944, - [SMALL_STATE(767)] = 29037, - [SMALL_STATE(768)] = 29130, - [SMALL_STATE(769)] = 29223, - [SMALL_STATE(770)] = 29316, - [SMALL_STATE(771)] = 29409, - [SMALL_STATE(772)] = 29502, - [SMALL_STATE(773)] = 29595, - [SMALL_STATE(774)] = 29688, - [SMALL_STATE(775)] = 29781, - [SMALL_STATE(776)] = 29874, - [SMALL_STATE(777)] = 29967, - [SMALL_STATE(778)] = 30060, - [SMALL_STATE(779)] = 30153, - [SMALL_STATE(780)] = 30242, - [SMALL_STATE(781)] = 30335, - [SMALL_STATE(782)] = 30424, - [SMALL_STATE(783)] = 30513, - [SMALL_STATE(784)] = 30606, - [SMALL_STATE(785)] = 30699, - [SMALL_STATE(786)] = 30788, - [SMALL_STATE(787)] = 30877, - [SMALL_STATE(788)] = 30966, - [SMALL_STATE(789)] = 31059, - [SMALL_STATE(790)] = 31152, - [SMALL_STATE(791)] = 31221, - [SMALL_STATE(792)] = 31314, - [SMALL_STATE(793)] = 31373, - [SMALL_STATE(794)] = 31454, - [SMALL_STATE(795)] = 31537, - [SMALL_STATE(796)] = 31602, - [SMALL_STATE(797)] = 31691, - [SMALL_STATE(798)] = 31784, - [SMALL_STATE(799)] = 31861, - [SMALL_STATE(800)] = 31940, - [SMALL_STATE(801)] = 32021, - [SMALL_STATE(802)] = 32084, - [SMALL_STATE(803)] = 32143, - [SMALL_STATE(804)] = 32236, - [SMALL_STATE(805)] = 32309, - [SMALL_STATE(806)] = 32402, - [SMALL_STATE(807)] = 32487, - [SMALL_STATE(808)] = 32580, - [SMALL_STATE(809)] = 32669, - [SMALL_STATE(810)] = 32762, - [SMALL_STATE(811)] = 32851, - [SMALL_STATE(812)] = 32944, - [SMALL_STATE(813)] = 33037, - [SMALL_STATE(814)] = 33130, - [SMALL_STATE(815)] = 33219, - [SMALL_STATE(816)] = 33308, - [SMALL_STATE(817)] = 33359, - [SMALL_STATE(818)] = 33452, - [SMALL_STATE(819)] = 33541, - [SMALL_STATE(820)] = 33629, - [SMALL_STATE(821)] = 33675, - [SMALL_STATE(822)] = 33763, - [SMALL_STATE(823)] = 33809, - [SMALL_STATE(824)] = 33895, - [SMALL_STATE(825)] = 33981, - [SMALL_STATE(826)] = 34069, - [SMALL_STATE(827)] = 34155, - [SMALL_STATE(828)] = 34241, - [SMALL_STATE(829)] = 34327, - [SMALL_STATE(830)] = 34413, - [SMALL_STATE(831)] = 34463, - [SMALL_STATE(832)] = 34553, - [SMALL_STATE(833)] = 34641, - [SMALL_STATE(834)] = 34729, - [SMALL_STATE(835)] = 34817, - [SMALL_STATE(836)] = 34905, - [SMALL_STATE(837)] = 34993, - [SMALL_STATE(838)] = 35081, - [SMALL_STATE(839)] = 35169, - [SMALL_STATE(840)] = 35237, - [SMALL_STATE(841)] = 35295, - [SMALL_STATE(842)] = 35375, - [SMALL_STATE(843)] = 35457, - [SMALL_STATE(844)] = 35521, - [SMALL_STATE(845)] = 35597, - [SMALL_STATE(846)] = 35675, - [SMALL_STATE(847)] = 35755, - [SMALL_STATE(848)] = 35817, - [SMALL_STATE(849)] = 35875, - [SMALL_STATE(850)] = 35947, - [SMALL_STATE(851)] = 36031, - [SMALL_STATE(852)] = 36119, - [SMALL_STATE(853)] = 36207, - [SMALL_STATE(854)] = 36295, - [SMALL_STATE(855)] = 36383, - [SMALL_STATE(856)] = 36471, - [SMALL_STATE(857)] = 36559, - [SMALL_STATE(858)] = 36646, - [SMALL_STATE(859)] = 36733, - [SMALL_STATE(860)] = 36820, - [SMALL_STATE(861)] = 36907, - [SMALL_STATE(862)] = 36994, - [SMALL_STATE(863)] = 37081, - [SMALL_STATE(864)] = 37170, - [SMALL_STATE(865)] = 37257, - [SMALL_STATE(866)] = 37344, - [SMALL_STATE(867)] = 37422, - [SMALL_STATE(868)] = 37506, - [SMALL_STATE(869)] = 37590, - [SMALL_STATE(870)] = 37660, - [SMALL_STATE(871)] = 37731, - [SMALL_STATE(872)] = 37802, - [SMALL_STATE(873)] = 37873, - [SMALL_STATE(874)] = 37944, - [SMALL_STATE(875)] = 38015, - [SMALL_STATE(876)] = 38080, - [SMALL_STATE(877)] = 38151, - [SMALL_STATE(878)] = 38208, - [SMALL_STATE(879)] = 38265, - [SMALL_STATE(880)] = 38336, - [SMALL_STATE(881)] = 38388, - [SMALL_STATE(882)] = 38444, - [SMALL_STATE(883)] = 38502, - [SMALL_STATE(884)] = 38558, - [SMALL_STATE(885)] = 38616, - [SMALL_STATE(886)] = 38672, - [SMALL_STATE(887)] = 38730, - [SMALL_STATE(888)] = 38788, - [SMALL_STATE(889)] = 38846, - [SMALL_STATE(890)] = 38902, - [SMALL_STATE(891)] = 38960, - [SMALL_STATE(892)] = 39016, - [SMALL_STATE(893)] = 39072, - [SMALL_STATE(894)] = 39123, - [SMALL_STATE(895)] = 39174, - [SMALL_STATE(896)] = 39227, - [SMALL_STATE(897)] = 39278, - [SMALL_STATE(898)] = 39329, - [SMALL_STATE(899)] = 39380, - [SMALL_STATE(900)] = 39431, - [SMALL_STATE(901)] = 39481, - [SMALL_STATE(902)] = 39531, - [SMALL_STATE(903)] = 39583, - [SMALL_STATE(904)] = 39643, - [SMALL_STATE(905)] = 39691, - [SMALL_STATE(906)] = 39736, - [SMALL_STATE(907)] = 39779, - [SMALL_STATE(908)] = 39824, - [SMALL_STATE(909)] = 39867, - [SMALL_STATE(910)] = 39914, - [SMALL_STATE(911)] = 39969, - [SMALL_STATE(912)] = 40014, - [SMALL_STATE(913)] = 40057, - [SMALL_STATE(914)] = 40104, - [SMALL_STATE(915)] = 40149, - [SMALL_STATE(916)] = 40204, - [SMALL_STATE(917)] = 40242, - [SMALL_STATE(918)] = 40276, - [SMALL_STATE(919)] = 40314, - [SMALL_STATE(920)] = 40352, - [SMALL_STATE(921)] = 40390, - [SMALL_STATE(922)] = 40428, - [SMALL_STATE(923)] = 40468, - [SMALL_STATE(924)] = 40506, - [SMALL_STATE(925)] = 40533, - [SMALL_STATE(926)] = 40560, - [SMALL_STATE(927)] = 40587, - [SMALL_STATE(928)] = 40614, - [SMALL_STATE(929)] = 40641, - [SMALL_STATE(930)] = 40668, - [SMALL_STATE(931)] = 40695, - [SMALL_STATE(932)] = 40722, - [SMALL_STATE(933)] = 40749, - [SMALL_STATE(934)] = 40776, - [SMALL_STATE(935)] = 40803, - [SMALL_STATE(936)] = 40830, - [SMALL_STATE(937)] = 40857, - [SMALL_STATE(938)] = 40884, - [SMALL_STATE(939)] = 40911, - [SMALL_STATE(940)] = 40938, - [SMALL_STATE(941)] = 40965, - [SMALL_STATE(942)] = 40992, - [SMALL_STATE(943)] = 41019, - [SMALL_STATE(944)] = 41046, - [SMALL_STATE(945)] = 41079, - [SMALL_STATE(946)] = 41106, - [SMALL_STATE(947)] = 41133, - [SMALL_STATE(948)] = 41160, - [SMALL_STATE(949)] = 41189, - [SMALL_STATE(950)] = 41216, - [SMALL_STATE(951)] = 41243, - [SMALL_STATE(952)] = 41270, - [SMALL_STATE(953)] = 41297, - [SMALL_STATE(954)] = 41326, - [SMALL_STATE(955)] = 41353, - [SMALL_STATE(956)] = 41380, - [SMALL_STATE(957)] = 41406, - [SMALL_STATE(958)] = 41432, - [SMALL_STATE(959)] = 41460, - [SMALL_STATE(960)] = 41498, - [SMALL_STATE(961)] = 41540, - [SMALL_STATE(962)] = 41580, - [SMALL_STATE(963)] = 41606, - [SMALL_STATE(964)] = 41632, - [SMALL_STATE(965)] = 41678, - [SMALL_STATE(966)] = 41720, - [SMALL_STATE(967)] = 41764, - [SMALL_STATE(968)] = 41804, - [SMALL_STATE(969)] = 41846, - [SMALL_STATE(970)] = 41872, - [SMALL_STATE(971)] = 41914, - [SMALL_STATE(972)] = 41940, - [SMALL_STATE(973)] = 41975, - [SMALL_STATE(974)] = 42010, - [SMALL_STATE(975)] = 42045, - [SMALL_STATE(976)] = 42080, - [SMALL_STATE(977)] = 42105, - [SMALL_STATE(978)] = 42140, - [SMALL_STATE(979)] = 42181, - [SMALL_STATE(980)] = 42216, - [SMALL_STATE(981)] = 42255, - [SMALL_STATE(982)] = 42298, - [SMALL_STATE(983)] = 42333, - [SMALL_STATE(984)] = 42368, - [SMALL_STATE(985)] = 42409, - [SMALL_STATE(986)] = 42444, - [SMALL_STATE(987)] = 42479, - [SMALL_STATE(988)] = 42514, - [SMALL_STATE(989)] = 42553, - [SMALL_STATE(990)] = 42588, - [SMALL_STATE(991)] = 42623, - [SMALL_STATE(992)] = 42658, - [SMALL_STATE(993)] = 42693, - [SMALL_STATE(994)] = 42728, - [SMALL_STATE(995)] = 42763, - [SMALL_STATE(996)] = 42798, - [SMALL_STATE(997)] = 42833, - [SMALL_STATE(998)] = 42868, - [SMALL_STATE(999)] = 42903, - [SMALL_STATE(1000)] = 42938, - [SMALL_STATE(1001)] = 42963, - [SMALL_STATE(1002)] = 42988, - [SMALL_STATE(1003)] = 43013, - [SMALL_STATE(1004)] = 43056, - [SMALL_STATE(1005)] = 43081, - [SMALL_STATE(1006)] = 43116, - [SMALL_STATE(1007)] = 43141, - [SMALL_STATE(1008)] = 43176, - [SMALL_STATE(1009)] = 43208, - [SMALL_STATE(1010)] = 43240, - [SMALL_STATE(1011)] = 43272, - [SMALL_STATE(1012)] = 43304, - [SMALL_STATE(1013)] = 43336, - [SMALL_STATE(1014)] = 43368, - [SMALL_STATE(1015)] = 43400, - [SMALL_STATE(1016)] = 43422, - [SMALL_STATE(1017)] = 43454, - [SMALL_STATE(1018)] = 43486, - [SMALL_STATE(1019)] = 43508, - [SMALL_STATE(1020)] = 43530, - [SMALL_STATE(1021)] = 43562, - [SMALL_STATE(1022)] = 43594, - [SMALL_STATE(1023)] = 43626, - [SMALL_STATE(1024)] = 43648, - [SMALL_STATE(1025)] = 43680, - [SMALL_STATE(1026)] = 43712, - [SMALL_STATE(1027)] = 43744, - [SMALL_STATE(1028)] = 43776, - [SMALL_STATE(1029)] = 43808, - [SMALL_STATE(1030)] = 43830, - [SMALL_STATE(1031)] = 43862, - [SMALL_STATE(1032)] = 43899, - [SMALL_STATE(1033)] = 43929, - [SMALL_STATE(1034)] = 43959, - [SMALL_STATE(1035)] = 43995, - [SMALL_STATE(1036)] = 44025, - [SMALL_STATE(1037)] = 44061, - [SMALL_STATE(1038)] = 44091, - [SMALL_STATE(1039)] = 44121, - [SMALL_STATE(1040)] = 44151, - [SMALL_STATE(1041)] = 44187, - [SMALL_STATE(1042)] = 44217, - [SMALL_STATE(1043)] = 44253, - [SMALL_STATE(1044)] = 44283, - [SMALL_STATE(1045)] = 44316, - [SMALL_STATE(1046)] = 44343, - [SMALL_STATE(1047)] = 44376, - [SMALL_STATE(1048)] = 44409, - [SMALL_STATE(1049)] = 44442, - [SMALL_STATE(1050)] = 44475, - [SMALL_STATE(1051)] = 44508, - [SMALL_STATE(1052)] = 44541, - [SMALL_STATE(1053)] = 44574, - [SMALL_STATE(1054)] = 44600, - [SMALL_STATE(1055)] = 44630, - [SMALL_STATE(1056)] = 44660, - [SMALL_STATE(1057)] = 44686, - [SMALL_STATE(1058)] = 44716, - [SMALL_STATE(1059)] = 44746, - [SMALL_STATE(1060)] = 44776, - [SMALL_STATE(1061)] = 44806, - [SMALL_STATE(1062)] = 44836, - [SMALL_STATE(1063)] = 44866, - [SMALL_STATE(1064)] = 44896, - [SMALL_STATE(1065)] = 44926, - [SMALL_STATE(1066)] = 44956, - [SMALL_STATE(1067)] = 44986, - [SMALL_STATE(1068)] = 45016, - [SMALL_STATE(1069)] = 45046, - [SMALL_STATE(1070)] = 45076, - [SMALL_STATE(1071)] = 45104, - [SMALL_STATE(1072)] = 45134, - [SMALL_STATE(1073)] = 45164, - [SMALL_STATE(1074)] = 45194, - [SMALL_STATE(1075)] = 45224, - [SMALL_STATE(1076)] = 45254, - [SMALL_STATE(1077)] = 45281, - [SMALL_STATE(1078)] = 45308, - [SMALL_STATE(1079)] = 45326, - [SMALL_STATE(1080)] = 45348, - [SMALL_STATE(1081)] = 45370, - [SMALL_STATE(1082)] = 45392, - [SMALL_STATE(1083)] = 45416, - [SMALL_STATE(1084)] = 45440, - [SMALL_STATE(1085)] = 45464, - [SMALL_STATE(1086)] = 45488, - [SMALL_STATE(1087)] = 45506, - [SMALL_STATE(1088)] = 45530, - [SMALL_STATE(1089)] = 45544, - [SMALL_STATE(1090)] = 45558, - [SMALL_STATE(1091)] = 45582, - [SMALL_STATE(1092)] = 45606, - [SMALL_STATE(1093)] = 45626, - [SMALL_STATE(1094)] = 45640, - [SMALL_STATE(1095)] = 45660, - [SMALL_STATE(1096)] = 45682, - [SMALL_STATE(1097)] = 45706, - [SMALL_STATE(1098)] = 45730, - [SMALL_STATE(1099)] = 45752, - [SMALL_STATE(1100)] = 45774, - [SMALL_STATE(1101)] = 45788, - [SMALL_STATE(1102)] = 45812, - [SMALL_STATE(1103)] = 45826, - [SMALL_STATE(1104)] = 45845, - [SMALL_STATE(1105)] = 45864, - [SMALL_STATE(1106)] = 45879, - [SMALL_STATE(1107)] = 45898, - [SMALL_STATE(1108)] = 45919, - [SMALL_STATE(1109)] = 45938, - [SMALL_STATE(1110)] = 45959, - [SMALL_STATE(1111)] = 45972, - [SMALL_STATE(1112)] = 45993, - [SMALL_STATE(1113)] = 46006, - [SMALL_STATE(1114)] = 46025, - [SMALL_STATE(1115)] = 46046, - [SMALL_STATE(1116)] = 46065, - [SMALL_STATE(1117)] = 46078, - [SMALL_STATE(1118)] = 46097, - [SMALL_STATE(1119)] = 46110, - [SMALL_STATE(1120)] = 46127, - [SMALL_STATE(1121)] = 46140, - [SMALL_STATE(1122)] = 46153, - [SMALL_STATE(1123)] = 46172, - [SMALL_STATE(1124)] = 46191, - [SMALL_STATE(1125)] = 46206, - [SMALL_STATE(1126)] = 46227, - [SMALL_STATE(1127)] = 46240, - [SMALL_STATE(1128)] = 46253, - [SMALL_STATE(1129)] = 46266, - [SMALL_STATE(1130)] = 46279, - [SMALL_STATE(1131)] = 46300, - [SMALL_STATE(1132)] = 46319, - [SMALL_STATE(1133)] = 46338, - [SMALL_STATE(1134)] = 46356, - [SMALL_STATE(1135)] = 46370, - [SMALL_STATE(1136)] = 46384, - [SMALL_STATE(1137)] = 46398, - [SMALL_STATE(1138)] = 46418, - [SMALL_STATE(1139)] = 46430, - [SMALL_STATE(1140)] = 46450, - [SMALL_STATE(1141)] = 46464, - [SMALL_STATE(1142)] = 46484, - [SMALL_STATE(1143)] = 46504, - [SMALL_STATE(1144)] = 46518, - [SMALL_STATE(1145)] = 46538, - [SMALL_STATE(1146)] = 46558, - [SMALL_STATE(1147)] = 46572, - [SMALL_STATE(1148)] = 46586, - [SMALL_STATE(1149)] = 46606, - [SMALL_STATE(1150)] = 46620, - [SMALL_STATE(1151)] = 46634, - [SMALL_STATE(1152)] = 46654, - [SMALL_STATE(1153)] = 46668, - [SMALL_STATE(1154)] = 46688, - [SMALL_STATE(1155)] = 46702, - [SMALL_STATE(1156)] = 46716, - [SMALL_STATE(1157)] = 46736, - [SMALL_STATE(1158)] = 46750, - [SMALL_STATE(1159)] = 46770, - [SMALL_STATE(1160)] = 46784, - [SMALL_STATE(1161)] = 46800, - [SMALL_STATE(1162)] = 46820, - [SMALL_STATE(1163)] = 46834, - [SMALL_STATE(1164)] = 46848, - [SMALL_STATE(1165)] = 46868, - [SMALL_STATE(1166)] = 46882, - [SMALL_STATE(1167)] = 46902, - [SMALL_STATE(1168)] = 46914, - [SMALL_STATE(1169)] = 46928, - [SMALL_STATE(1170)] = 46948, - [SMALL_STATE(1171)] = 46968, - [SMALL_STATE(1172)] = 46986, - [SMALL_STATE(1173)] = 47000, - [SMALL_STATE(1174)] = 47014, - [SMALL_STATE(1175)] = 47034, - [SMALL_STATE(1176)] = 47048, - [SMALL_STATE(1177)] = 47066, - [SMALL_STATE(1178)] = 47080, - [SMALL_STATE(1179)] = 47094, - [SMALL_STATE(1180)] = 47108, - [SMALL_STATE(1181)] = 47122, - [SMALL_STATE(1182)] = 47136, - [SMALL_STATE(1183)] = 47150, - [SMALL_STATE(1184)] = 47164, - [SMALL_STATE(1185)] = 47178, - [SMALL_STATE(1186)] = 47198, - [SMALL_STATE(1187)] = 47212, - [SMALL_STATE(1188)] = 47232, - [SMALL_STATE(1189)] = 47252, - [SMALL_STATE(1190)] = 47266, - [SMALL_STATE(1191)] = 47286, - [SMALL_STATE(1192)] = 47302, - [SMALL_STATE(1193)] = 47316, - [SMALL_STATE(1194)] = 47330, - [SMALL_STATE(1195)] = 47346, - [SMALL_STATE(1196)] = 47360, - [SMALL_STATE(1197)] = 47372, - [SMALL_STATE(1198)] = 47392, - [SMALL_STATE(1199)] = 47406, - [SMALL_STATE(1200)] = 47420, - [SMALL_STATE(1201)] = 47437, - [SMALL_STATE(1202)] = 47454, - [SMALL_STATE(1203)] = 47469, - [SMALL_STATE(1204)] = 47486, - [SMALL_STATE(1205)] = 47503, - [SMALL_STATE(1206)] = 47522, - [SMALL_STATE(1207)] = 47539, - [SMALL_STATE(1208)] = 47556, - [SMALL_STATE(1209)] = 47573, - [SMALL_STATE(1210)] = 47592, - [SMALL_STATE(1211)] = 47609, - [SMALL_STATE(1212)] = 47624, - [SMALL_STATE(1213)] = 47641, - [SMALL_STATE(1214)] = 47660, - [SMALL_STATE(1215)] = 47677, - [SMALL_STATE(1216)] = 47688, - [SMALL_STATE(1217)] = 47699, - [SMALL_STATE(1218)] = 47716, - [SMALL_STATE(1219)] = 47735, - [SMALL_STATE(1220)] = 47748, - [SMALL_STATE(1221)] = 47765, - [SMALL_STATE(1222)] = 47780, - [SMALL_STATE(1223)] = 47797, - [SMALL_STATE(1224)] = 47812, - [SMALL_STATE(1225)] = 47829, - [SMALL_STATE(1226)] = 47846, - [SMALL_STATE(1227)] = 47863, - [SMALL_STATE(1228)] = 47880, - [SMALL_STATE(1229)] = 47897, - [SMALL_STATE(1230)] = 47914, - [SMALL_STATE(1231)] = 47931, - [SMALL_STATE(1232)] = 47946, - [SMALL_STATE(1233)] = 47963, - [SMALL_STATE(1234)] = 47980, - [SMALL_STATE(1235)] = 47997, - [SMALL_STATE(1236)] = 48014, - [SMALL_STATE(1237)] = 48031, - [SMALL_STATE(1238)] = 48048, - [SMALL_STATE(1239)] = 48061, - [SMALL_STATE(1240)] = 48078, - [SMALL_STATE(1241)] = 48089, - [SMALL_STATE(1242)] = 48106, - [SMALL_STATE(1243)] = 48121, - [SMALL_STATE(1244)] = 48138, - [SMALL_STATE(1245)] = 48155, - [SMALL_STATE(1246)] = 48172, - [SMALL_STATE(1247)] = 48189, - [SMALL_STATE(1248)] = 48206, - [SMALL_STATE(1249)] = 48221, - [SMALL_STATE(1250)] = 48238, - [SMALL_STATE(1251)] = 48255, - [SMALL_STATE(1252)] = 48270, - [SMALL_STATE(1253)] = 48287, - [SMALL_STATE(1254)] = 48304, - [SMALL_STATE(1255)] = 48321, - [SMALL_STATE(1256)] = 48336, - [SMALL_STATE(1257)] = 48347, - [SMALL_STATE(1258)] = 48362, - [SMALL_STATE(1259)] = 48379, - [SMALL_STATE(1260)] = 48396, - [SMALL_STATE(1261)] = 48411, - [SMALL_STATE(1262)] = 48428, - [SMALL_STATE(1263)] = 48445, - [SMALL_STATE(1264)] = 48464, - [SMALL_STATE(1265)] = 48483, - [SMALL_STATE(1266)] = 48494, - [SMALL_STATE(1267)] = 48511, - [SMALL_STATE(1268)] = 48528, - [SMALL_STATE(1269)] = 48543, - [SMALL_STATE(1270)] = 48560, - [SMALL_STATE(1271)] = 48571, - [SMALL_STATE(1272)] = 48586, - [SMALL_STATE(1273)] = 48603, - [SMALL_STATE(1274)] = 48620, - [SMALL_STATE(1275)] = 48634, - [SMALL_STATE(1276)] = 48648, - [SMALL_STATE(1277)] = 48662, - [SMALL_STATE(1278)] = 48676, - [SMALL_STATE(1279)] = 48690, - [SMALL_STATE(1280)] = 48700, - [SMALL_STATE(1281)] = 48712, - [SMALL_STATE(1282)] = 48726, - [SMALL_STATE(1283)] = 48738, - [SMALL_STATE(1284)] = 48752, - [SMALL_STATE(1285)] = 48766, - [SMALL_STATE(1286)] = 48780, - [SMALL_STATE(1287)] = 48794, - [SMALL_STATE(1288)] = 48808, - [SMALL_STATE(1289)] = 48822, - [SMALL_STATE(1290)] = 48836, - [SMALL_STATE(1291)] = 48850, - [SMALL_STATE(1292)] = 48864, - [SMALL_STATE(1293)] = 48878, - [SMALL_STATE(1294)] = 48888, - [SMALL_STATE(1295)] = 48900, - [SMALL_STATE(1296)] = 48914, - [SMALL_STATE(1297)] = 48928, - [SMALL_STATE(1298)] = 48942, - [SMALL_STATE(1299)] = 48954, - [SMALL_STATE(1300)] = 48968, - [SMALL_STATE(1301)] = 48980, - [SMALL_STATE(1302)] = 48994, - [SMALL_STATE(1303)] = 49006, - [SMALL_STATE(1304)] = 49020, - [SMALL_STATE(1305)] = 49034, - [SMALL_STATE(1306)] = 49048, - [SMALL_STATE(1307)] = 49062, - [SMALL_STATE(1308)] = 49076, - [SMALL_STATE(1309)] = 49086, - [SMALL_STATE(1310)] = 49100, - [SMALL_STATE(1311)] = 49114, - [SMALL_STATE(1312)] = 49128, - [SMALL_STATE(1313)] = 49142, - [SMALL_STATE(1314)] = 49154, - [SMALL_STATE(1315)] = 49168, - [SMALL_STATE(1316)] = 49182, - [SMALL_STATE(1317)] = 49196, - [SMALL_STATE(1318)] = 49210, - [SMALL_STATE(1319)] = 49220, - [SMALL_STATE(1320)] = 49234, - [SMALL_STATE(1321)] = 49248, - [SMALL_STATE(1322)] = 49262, - [SMALL_STATE(1323)] = 49276, - [SMALL_STATE(1324)] = 49290, - [SMALL_STATE(1325)] = 49304, - [SMALL_STATE(1326)] = 49316, - [SMALL_STATE(1327)] = 49330, - [SMALL_STATE(1328)] = 49340, - [SMALL_STATE(1329)] = 49354, - [SMALL_STATE(1330)] = 49366, - [SMALL_STATE(1331)] = 49380, - [SMALL_STATE(1332)] = 49390, - [SMALL_STATE(1333)] = 49404, - [SMALL_STATE(1334)] = 49418, - [SMALL_STATE(1335)] = 49432, - [SMALL_STATE(1336)] = 49446, - [SMALL_STATE(1337)] = 49460, - [SMALL_STATE(1338)] = 49472, - [SMALL_STATE(1339)] = 49486, - [SMALL_STATE(1340)] = 49500, - [SMALL_STATE(1341)] = 49512, - [SMALL_STATE(1342)] = 49526, - [SMALL_STATE(1343)] = 49538, - [SMALL_STATE(1344)] = 49552, - [SMALL_STATE(1345)] = 49566, - [SMALL_STATE(1346)] = 49580, - [SMALL_STATE(1347)] = 49594, - [SMALL_STATE(1348)] = 49608, - [SMALL_STATE(1349)] = 49622, - [SMALL_STATE(1350)] = 49636, - [SMALL_STATE(1351)] = 49650, - [SMALL_STATE(1352)] = 49664, - [SMALL_STATE(1353)] = 49678, - [SMALL_STATE(1354)] = 49692, - [SMALL_STATE(1355)] = 49706, - [SMALL_STATE(1356)] = 49720, - [SMALL_STATE(1357)] = 49734, - [SMALL_STATE(1358)] = 49746, - [SMALL_STATE(1359)] = 49760, - [SMALL_STATE(1360)] = 49770, - [SMALL_STATE(1361)] = 49780, - [SMALL_STATE(1362)] = 49794, - [SMALL_STATE(1363)] = 49808, - [SMALL_STATE(1364)] = 49822, - [SMALL_STATE(1365)] = 49836, - [SMALL_STATE(1366)] = 49850, - [SMALL_STATE(1367)] = 49864, - [SMALL_STATE(1368)] = 49878, - [SMALL_STATE(1369)] = 49892, - [SMALL_STATE(1370)] = 49906, - [SMALL_STATE(1371)] = 49920, - [SMALL_STATE(1372)] = 49931, - [SMALL_STATE(1373)] = 49942, - [SMALL_STATE(1374)] = 49953, - [SMALL_STATE(1375)] = 49964, - [SMALL_STATE(1376)] = 49975, - [SMALL_STATE(1377)] = 49986, - [SMALL_STATE(1378)] = 49997, - [SMALL_STATE(1379)] = 50008, - [SMALL_STATE(1380)] = 50017, - [SMALL_STATE(1381)] = 50028, - [SMALL_STATE(1382)] = 50037, - [SMALL_STATE(1383)] = 50046, - [SMALL_STATE(1384)] = 50055, - [SMALL_STATE(1385)] = 50066, - [SMALL_STATE(1386)] = 50077, - [SMALL_STATE(1387)] = 50088, - [SMALL_STATE(1388)] = 50099, - [SMALL_STATE(1389)] = 50110, - [SMALL_STATE(1390)] = 50121, - [SMALL_STATE(1391)] = 50132, - [SMALL_STATE(1392)] = 50143, - [SMALL_STATE(1393)] = 50154, - [SMALL_STATE(1394)] = 50165, - [SMALL_STATE(1395)] = 50176, - [SMALL_STATE(1396)] = 50187, - [SMALL_STATE(1397)] = 50198, - [SMALL_STATE(1398)] = 50207, - [SMALL_STATE(1399)] = 50218, - [SMALL_STATE(1400)] = 50227, - [SMALL_STATE(1401)] = 50238, - [SMALL_STATE(1402)] = 50247, - [SMALL_STATE(1403)] = 50258, - [SMALL_STATE(1404)] = 50269, - [SMALL_STATE(1405)] = 50280, - [SMALL_STATE(1406)] = 50291, - [SMALL_STATE(1407)] = 50300, - [SMALL_STATE(1408)] = 50309, - [SMALL_STATE(1409)] = 50320, - [SMALL_STATE(1410)] = 50331, - [SMALL_STATE(1411)] = 50342, - [SMALL_STATE(1412)] = 50353, - [SMALL_STATE(1413)] = 50364, - [SMALL_STATE(1414)] = 50375, - [SMALL_STATE(1415)] = 50386, - [SMALL_STATE(1416)] = 50397, - [SMALL_STATE(1417)] = 50408, - [SMALL_STATE(1418)] = 50419, - [SMALL_STATE(1419)] = 50430, - [SMALL_STATE(1420)] = 50441, - [SMALL_STATE(1421)] = 50452, - [SMALL_STATE(1422)] = 50461, - [SMALL_STATE(1423)] = 50472, - [SMALL_STATE(1424)] = 50481, - [SMALL_STATE(1425)] = 50492, - [SMALL_STATE(1426)] = 50503, - [SMALL_STATE(1427)] = 50514, - [SMALL_STATE(1428)] = 50525, - [SMALL_STATE(1429)] = 50536, - [SMALL_STATE(1430)] = 50545, - [SMALL_STATE(1431)] = 50554, - [SMALL_STATE(1432)] = 50565, - [SMALL_STATE(1433)] = 50576, - [SMALL_STATE(1434)] = 50587, - [SMALL_STATE(1435)] = 50598, - [SMALL_STATE(1436)] = 50607, - [SMALL_STATE(1437)] = 50618, - [SMALL_STATE(1438)] = 50629, - [SMALL_STATE(1439)] = 50640, - [SMALL_STATE(1440)] = 50651, - [SMALL_STATE(1441)] = 50662, - [SMALL_STATE(1442)] = 50673, - [SMALL_STATE(1443)] = 50684, - [SMALL_STATE(1444)] = 50695, - [SMALL_STATE(1445)] = 50706, - [SMALL_STATE(1446)] = 50717, - [SMALL_STATE(1447)] = 50728, - [SMALL_STATE(1448)] = 50737, - [SMALL_STATE(1449)] = 50746, - [SMALL_STATE(1450)] = 50757, - [SMALL_STATE(1451)] = 50768, - [SMALL_STATE(1452)] = 50777, - [SMALL_STATE(1453)] = 50788, - [SMALL_STATE(1454)] = 50797, - [SMALL_STATE(1455)] = 50806, - [SMALL_STATE(1456)] = 50815, - [SMALL_STATE(1457)] = 50826, - [SMALL_STATE(1458)] = 50837, - [SMALL_STATE(1459)] = 50848, - [SMALL_STATE(1460)] = 50859, - [SMALL_STATE(1461)] = 50870, - [SMALL_STATE(1462)] = 50879, - [SMALL_STATE(1463)] = 50890, - [SMALL_STATE(1464)] = 50901, - [SMALL_STATE(1465)] = 50912, - [SMALL_STATE(1466)] = 50923, - [SMALL_STATE(1467)] = 50934, - [SMALL_STATE(1468)] = 50945, - [SMALL_STATE(1469)] = 50954, - [SMALL_STATE(1470)] = 50965, - [SMALL_STATE(1471)] = 50976, - [SMALL_STATE(1472)] = 50987, - [SMALL_STATE(1473)] = 50998, - [SMALL_STATE(1474)] = 51009, - [SMALL_STATE(1475)] = 51020, - [SMALL_STATE(1476)] = 51031, - [SMALL_STATE(1477)] = 51040, - [SMALL_STATE(1478)] = 51051, - [SMALL_STATE(1479)] = 51062, - [SMALL_STATE(1480)] = 51071, - [SMALL_STATE(1481)] = 51082, - [SMALL_STATE(1482)] = 51093, - [SMALL_STATE(1483)] = 51104, - [SMALL_STATE(1484)] = 51113, - [SMALL_STATE(1485)] = 51124, - [SMALL_STATE(1486)] = 51135, - [SMALL_STATE(1487)] = 51146, - [SMALL_STATE(1488)] = 51157, - [SMALL_STATE(1489)] = 51168, - [SMALL_STATE(1490)] = 51179, - [SMALL_STATE(1491)] = 51188, - [SMALL_STATE(1492)] = 51197, - [SMALL_STATE(1493)] = 51208, - [SMALL_STATE(1494)] = 51219, - [SMALL_STATE(1495)] = 51230, - [SMALL_STATE(1496)] = 51241, - [SMALL_STATE(1497)] = 51252, - [SMALL_STATE(1498)] = 51263, - [SMALL_STATE(1499)] = 51274, - [SMALL_STATE(1500)] = 51285, - [SMALL_STATE(1501)] = 51296, - [SMALL_STATE(1502)] = 51307, - [SMALL_STATE(1503)] = 51318, - [SMALL_STATE(1504)] = 51329, - [SMALL_STATE(1505)] = 51340, - [SMALL_STATE(1506)] = 51351, - [SMALL_STATE(1507)] = 51362, - [SMALL_STATE(1508)] = 51373, - [SMALL_STATE(1509)] = 51384, - [SMALL_STATE(1510)] = 51395, - [SMALL_STATE(1511)] = 51406, - [SMALL_STATE(1512)] = 51417, - [SMALL_STATE(1513)] = 51428, - [SMALL_STATE(1514)] = 51439, - [SMALL_STATE(1515)] = 51450, - [SMALL_STATE(1516)] = 51461, - [SMALL_STATE(1517)] = 51472, - [SMALL_STATE(1518)] = 51483, - [SMALL_STATE(1519)] = 51494, - [SMALL_STATE(1520)] = 51505, - [SMALL_STATE(1521)] = 51516, - [SMALL_STATE(1522)] = 51527, - [SMALL_STATE(1523)] = 51538, - [SMALL_STATE(1524)] = 51549, - [SMALL_STATE(1525)] = 51560, - [SMALL_STATE(1526)] = 51571, - [SMALL_STATE(1527)] = 51582, - [SMALL_STATE(1528)] = 51593, - [SMALL_STATE(1529)] = 51604, - [SMALL_STATE(1530)] = 51615, - [SMALL_STATE(1531)] = 51626, - [SMALL_STATE(1532)] = 51637, - [SMALL_STATE(1533)] = 51648, - [SMALL_STATE(1534)] = 51659, - [SMALL_STATE(1535)] = 51670, - [SMALL_STATE(1536)] = 51681, - [SMALL_STATE(1537)] = 51692, - [SMALL_STATE(1538)] = 51703, - [SMALL_STATE(1539)] = 51714, - [SMALL_STATE(1540)] = 51725, - [SMALL_STATE(1541)] = 51736, - [SMALL_STATE(1542)] = 51747, - [SMALL_STATE(1543)] = 51758, - [SMALL_STATE(1544)] = 51769, - [SMALL_STATE(1545)] = 51780, - [SMALL_STATE(1546)] = 51791, - [SMALL_STATE(1547)] = 51802, - [SMALL_STATE(1548)] = 51813, - [SMALL_STATE(1549)] = 51824, - [SMALL_STATE(1550)] = 51833, - [SMALL_STATE(1551)] = 51844, - [SMALL_STATE(1552)] = 51855, - [SMALL_STATE(1553)] = 51866, - [SMALL_STATE(1554)] = 51877, - [SMALL_STATE(1555)] = 51888, - [SMALL_STATE(1556)] = 51899, - [SMALL_STATE(1557)] = 51910, - [SMALL_STATE(1558)] = 51921, - [SMALL_STATE(1559)] = 51932, - [SMALL_STATE(1560)] = 51941, - [SMALL_STATE(1561)] = 51952, - [SMALL_STATE(1562)] = 51961, - [SMALL_STATE(1563)] = 51970, - [SMALL_STATE(1564)] = 51981, - [SMALL_STATE(1565)] = 51992, - [SMALL_STATE(1566)] = 52003, - [SMALL_STATE(1567)] = 52014, - [SMALL_STATE(1568)] = 52025, - [SMALL_STATE(1569)] = 52034, - [SMALL_STATE(1570)] = 52045, - [SMALL_STATE(1571)] = 52054, - [SMALL_STATE(1572)] = 52065, - [SMALL_STATE(1573)] = 52076, - [SMALL_STATE(1574)] = 52087, - [SMALL_STATE(1575)] = 52098, - [SMALL_STATE(1576)] = 52109, - [SMALL_STATE(1577)] = 52120, - [SMALL_STATE(1578)] = 52131, - [SMALL_STATE(1579)] = 52142, - [SMALL_STATE(1580)] = 52153, - [SMALL_STATE(1581)] = 52164, - [SMALL_STATE(1582)] = 52175, - [SMALL_STATE(1583)] = 52186, - [SMALL_STATE(1584)] = 52197, - [SMALL_STATE(1585)] = 52208, - [SMALL_STATE(1586)] = 52219, - [SMALL_STATE(1587)] = 52230, - [SMALL_STATE(1588)] = 52241, - [SMALL_STATE(1589)] = 52252, - [SMALL_STATE(1590)] = 52263, - [SMALL_STATE(1591)] = 52274, - [SMALL_STATE(1592)] = 52285, - [SMALL_STATE(1593)] = 52296, - [SMALL_STATE(1594)] = 52307, - [SMALL_STATE(1595)] = 52318, - [SMALL_STATE(1596)] = 52329, - [SMALL_STATE(1597)] = 52340, - [SMALL_STATE(1598)] = 52351, - [SMALL_STATE(1599)] = 52362, - [SMALL_STATE(1600)] = 52373, - [SMALL_STATE(1601)] = 52384, - [SMALL_STATE(1602)] = 52395, - [SMALL_STATE(1603)] = 52406, - [SMALL_STATE(1604)] = 52417, - [SMALL_STATE(1605)] = 52428, - [SMALL_STATE(1606)] = 52439, - [SMALL_STATE(1607)] = 52450, - [SMALL_STATE(1608)] = 52461, - [SMALL_STATE(1609)] = 52472, - [SMALL_STATE(1610)] = 52483, - [SMALL_STATE(1611)] = 52494, - [SMALL_STATE(1612)] = 52505, - [SMALL_STATE(1613)] = 52516, - [SMALL_STATE(1614)] = 52527, - [SMALL_STATE(1615)] = 52538, - [SMALL_STATE(1616)] = 52546, - [SMALL_STATE(1617)] = 52554, - [SMALL_STATE(1618)] = 52562, - [SMALL_STATE(1619)] = 52570, - [SMALL_STATE(1620)] = 52578, - [SMALL_STATE(1621)] = 52586, - [SMALL_STATE(1622)] = 52594, - [SMALL_STATE(1623)] = 52604, - [SMALL_STATE(1624)] = 52612, - [SMALL_STATE(1625)] = 52620, - [SMALL_STATE(1626)] = 52628, - [SMALL_STATE(1627)] = 52636, - [SMALL_STATE(1628)] = 52644, - [SMALL_STATE(1629)] = 52652, - [SMALL_STATE(1630)] = 52660, - [SMALL_STATE(1631)] = 52670, - [SMALL_STATE(1632)] = 52678, - [SMALL_STATE(1633)] = 52686, - [SMALL_STATE(1634)] = 52694, - [SMALL_STATE(1635)] = 52702, - [SMALL_STATE(1636)] = 52712, - [SMALL_STATE(1637)] = 52722, - [SMALL_STATE(1638)] = 52730, - [SMALL_STATE(1639)] = 52738, - [SMALL_STATE(1640)] = 52746, - [SMALL_STATE(1641)] = 52754, - [SMALL_STATE(1642)] = 52762, - [SMALL_STATE(1643)] = 52770, - [SMALL_STATE(1644)] = 52778, - [SMALL_STATE(1645)] = 52786, - [SMALL_STATE(1646)] = 52794, - [SMALL_STATE(1647)] = 52802, - [SMALL_STATE(1648)] = 52810, - [SMALL_STATE(1649)] = 52818, - [SMALL_STATE(1650)] = 52826, - [SMALL_STATE(1651)] = 52834, - [SMALL_STATE(1652)] = 52842, - [SMALL_STATE(1653)] = 52850, - [SMALL_STATE(1654)] = 52858, - [SMALL_STATE(1655)] = 52866, - [SMALL_STATE(1656)] = 52874, - [SMALL_STATE(1657)] = 52882, - [SMALL_STATE(1658)] = 52890, - [SMALL_STATE(1659)] = 52898, - [SMALL_STATE(1660)] = 52906, - [SMALL_STATE(1661)] = 52914, - [SMALL_STATE(1662)] = 52922, - [SMALL_STATE(1663)] = 52930, - [SMALL_STATE(1664)] = 52938, - [SMALL_STATE(1665)] = 52946, - [SMALL_STATE(1666)] = 52954, - [SMALL_STATE(1667)] = 52962, - [SMALL_STATE(1668)] = 52970, - [SMALL_STATE(1669)] = 52978, - [SMALL_STATE(1670)] = 52986, - [SMALL_STATE(1671)] = 52994, - [SMALL_STATE(1672)] = 53002, - [SMALL_STATE(1673)] = 53010, - [SMALL_STATE(1674)] = 53018, - [SMALL_STATE(1675)] = 53026, - [SMALL_STATE(1676)] = 53034, - [SMALL_STATE(1677)] = 53042, - [SMALL_STATE(1678)] = 53050, - [SMALL_STATE(1679)] = 53058, - [SMALL_STATE(1680)] = 53066, - [SMALL_STATE(1681)] = 53074, - [SMALL_STATE(1682)] = 53082, - [SMALL_STATE(1683)] = 53090, - [SMALL_STATE(1684)] = 53098, - [SMALL_STATE(1685)] = 53106, - [SMALL_STATE(1686)] = 53114, - [SMALL_STATE(1687)] = 53122, - [SMALL_STATE(1688)] = 53130, - [SMALL_STATE(1689)] = 53140, - [SMALL_STATE(1690)] = 53148, - [SMALL_STATE(1691)] = 53156, - [SMALL_STATE(1692)] = 53164, - [SMALL_STATE(1693)] = 53174, - [SMALL_STATE(1694)] = 53182, - [SMALL_STATE(1695)] = 53190, - [SMALL_STATE(1696)] = 53198, - [SMALL_STATE(1697)] = 53206, - [SMALL_STATE(1698)] = 53214, - [SMALL_STATE(1699)] = 53224, - [SMALL_STATE(1700)] = 53232, - [SMALL_STATE(1701)] = 53240, - [SMALL_STATE(1702)] = 53248, - [SMALL_STATE(1703)] = 53256, - [SMALL_STATE(1704)] = 53264, - [SMALL_STATE(1705)] = 53272, - [SMALL_STATE(1706)] = 53280, - [SMALL_STATE(1707)] = 53288, - [SMALL_STATE(1708)] = 53296, - [SMALL_STATE(1709)] = 53304, - [SMALL_STATE(1710)] = 53312, - [SMALL_STATE(1711)] = 53320, - [SMALL_STATE(1712)] = 53328, - [SMALL_STATE(1713)] = 53336, - [SMALL_STATE(1714)] = 53344, - [SMALL_STATE(1715)] = 53354, - [SMALL_STATE(1716)] = 53362, - [SMALL_STATE(1717)] = 53370, - [SMALL_STATE(1718)] = 53378, - [SMALL_STATE(1719)] = 53386, - [SMALL_STATE(1720)] = 53394, - [SMALL_STATE(1721)] = 53402, + [SMALL_STATE(389)] = 0, + [SMALL_STATE(390)] = 89, + [SMALL_STATE(391)] = 162, + [SMALL_STATE(392)] = 255, + [SMALL_STATE(393)] = 344, + [SMALL_STATE(394)] = 417, + [SMALL_STATE(395)] = 507, + [SMALL_STATE(396)] = 595, + [SMALL_STATE(397)] = 665, + [SMALL_STATE(398)] = 755, + [SMALL_STATE(399)] = 847, + [SMALL_STATE(400)] = 917, + [SMALL_STATE(401)] = 1005, + [SMALL_STATE(402)] = 1093, + [SMALL_STATE(403)] = 1167, + [SMALL_STATE(404)] = 1236, + [SMALL_STATE(405)] = 1305, + [SMALL_STATE(406)] = 1374, + [SMALL_STATE(407)] = 1445, + [SMALL_STATE(408)] = 1514, + [SMALL_STATE(409)] = 1585, + [SMALL_STATE(410)] = 1656, + [SMALL_STATE(411)] = 1747, + [SMALL_STATE(412)] = 1816, + [SMALL_STATE(413)] = 1887, + [SMALL_STATE(414)] = 1960, + [SMALL_STATE(415)] = 2031, + [SMALL_STATE(416)] = 2102, + [SMALL_STATE(417)] = 2173, + [SMALL_STATE(418)] = 2244, + [SMALL_STATE(419)] = 2313, + [SMALL_STATE(420)] = 2384, + [SMALL_STATE(421)] = 2453, + [SMALL_STATE(422)] = 2524, + [SMALL_STATE(423)] = 2595, + [SMALL_STATE(424)] = 2664, + [SMALL_STATE(425)] = 2732, + [SMALL_STATE(426)] = 2800, + [SMALL_STATE(427)] = 2868, + [SMALL_STATE(428)] = 2936, + [SMALL_STATE(429)] = 3004, + [SMALL_STATE(430)] = 3072, + [SMALL_STATE(431)] = 3140, + [SMALL_STATE(432)] = 3208, + [SMALL_STATE(433)] = 3276, + [SMALL_STATE(434)] = 3344, + [SMALL_STATE(435)] = 3412, + [SMALL_STATE(436)] = 3480, + [SMALL_STATE(437)] = 3548, + [SMALL_STATE(438)] = 3616, + [SMALL_STATE(439)] = 3684, + [SMALL_STATE(440)] = 3752, + [SMALL_STATE(441)] = 3820, + [SMALL_STATE(442)] = 3888, + [SMALL_STATE(443)] = 3956, + [SMALL_STATE(444)] = 4024, + [SMALL_STATE(445)] = 4092, + [SMALL_STATE(446)] = 4160, + [SMALL_STATE(447)] = 4228, + [SMALL_STATE(448)] = 4296, + [SMALL_STATE(449)] = 4364, + [SMALL_STATE(450)] = 4432, + [SMALL_STATE(451)] = 4500, + [SMALL_STATE(452)] = 4568, + [SMALL_STATE(453)] = 4636, + [SMALL_STATE(454)] = 4704, + [SMALL_STATE(455)] = 4772, + [SMALL_STATE(456)] = 4840, + [SMALL_STATE(457)] = 4908, + [SMALL_STATE(458)] = 4976, + [SMALL_STATE(459)] = 5044, + [SMALL_STATE(460)] = 5130, + [SMALL_STATE(461)] = 5198, + [SMALL_STATE(462)] = 5266, + [SMALL_STATE(463)] = 5334, + [SMALL_STATE(464)] = 5402, + [SMALL_STATE(465)] = 5470, + [SMALL_STATE(466)] = 5538, + [SMALL_STATE(467)] = 5606, + [SMALL_STATE(468)] = 5674, + [SMALL_STATE(469)] = 5742, + [SMALL_STATE(470)] = 5810, + [SMALL_STATE(471)] = 5878, + [SMALL_STATE(472)] = 5946, + [SMALL_STATE(473)] = 6014, + [SMALL_STATE(474)] = 6082, + [SMALL_STATE(475)] = 6150, + [SMALL_STATE(476)] = 6218, + [SMALL_STATE(477)] = 6286, + [SMALL_STATE(478)] = 6354, + [SMALL_STATE(479)] = 6422, + [SMALL_STATE(480)] = 6490, + [SMALL_STATE(481)] = 6558, + [SMALL_STATE(482)] = 6626, + [SMALL_STATE(483)] = 6712, + [SMALL_STATE(484)] = 6780, + [SMALL_STATE(485)] = 6848, + [SMALL_STATE(486)] = 6916, + [SMALL_STATE(487)] = 6984, + [SMALL_STATE(488)] = 7052, + [SMALL_STATE(489)] = 7120, + [SMALL_STATE(490)] = 7188, + [SMALL_STATE(491)] = 7256, + [SMALL_STATE(492)] = 7341, + [SMALL_STATE(493)] = 7416, + [SMALL_STATE(494)] = 7501, + [SMALL_STATE(495)] = 7586, + [SMALL_STATE(496)] = 7671, + [SMALL_STATE(497)] = 7746, + [SMALL_STATE(498)] = 7832, + [SMALL_STATE(499)] = 7906, + [SMALL_STATE(500)] = 7980, + [SMALL_STATE(501)] = 8045, + [SMALL_STATE(502)] = 8110, + [SMALL_STATE(503)] = 8183, + [SMALL_STATE(504)] = 8256, + [SMALL_STATE(505)] = 8325, + [SMALL_STATE(506)] = 8390, + [SMALL_STATE(507)] = 8455, + [SMALL_STATE(508)] = 8520, + [SMALL_STATE(509)] = 8585, + [SMALL_STATE(510)] = 8650, + [SMALL_STATE(511)] = 8724, + [SMALL_STATE(512)] = 8792, + [SMALL_STATE(513)] = 8866, + [SMALL_STATE(514)] = 8940, + [SMALL_STATE(515)] = 9014, + [SMALL_STATE(516)] = 9088, + [SMALL_STATE(517)] = 9162, + [SMALL_STATE(518)] = 9236, + [SMALL_STATE(519)] = 9308, + [SMALL_STATE(520)] = 9382, + [SMALL_STATE(521)] = 9454, + [SMALL_STATE(522)] = 9526, + [SMALL_STATE(523)] = 9598, + [SMALL_STATE(524)] = 9672, + [SMALL_STATE(525)] = 9746, + [SMALL_STATE(526)] = 9813, + [SMALL_STATE(527)] = 9876, + [SMALL_STATE(528)] = 9939, + [SMALL_STATE(529)] = 10002, + [SMALL_STATE(530)] = 10077, + [SMALL_STATE(531)] = 10140, + [SMALL_STATE(532)] = 10203, + [SMALL_STATE(533)] = 10278, + [SMALL_STATE(534)] = 10341, + [SMALL_STATE(535)] = 10404, + [SMALL_STATE(536)] = 10477, + [SMALL_STATE(537)] = 10540, + [SMALL_STATE(538)] = 10603, + [SMALL_STATE(539)] = 10666, + [SMALL_STATE(540)] = 10729, + [SMALL_STATE(541)] = 10802, + [SMALL_STATE(542)] = 10865, + [SMALL_STATE(543)] = 10928, + [SMALL_STATE(544)] = 10991, + [SMALL_STATE(545)] = 11054, + [SMALL_STATE(546)] = 11117, + [SMALL_STATE(547)] = 11183, + [SMALL_STATE(548)] = 11251, + [SMALL_STATE(549)] = 11317, + [SMALL_STATE(550)] = 11385, + [SMALL_STATE(551)] = 11453, + [SMALL_STATE(552)] = 11527, + [SMALL_STATE(553)] = 11601, + [SMALL_STATE(554)] = 11670, + [SMALL_STATE(555)] = 11739, + [SMALL_STATE(556)] = 11812, + [SMALL_STATE(557)] = 11881, + [SMALL_STATE(558)] = 11950, + [SMALL_STATE(559)] = 12019, + [SMALL_STATE(560)] = 12088, + [SMALL_STATE(561)] = 12161, + [SMALL_STATE(562)] = 12230, + [SMALL_STATE(563)] = 12297, + [SMALL_STATE(564)] = 12365, + [SMALL_STATE(565)] = 12424, + [SMALL_STATE(566)] = 12487, + [SMALL_STATE(567)] = 12546, + [SMALL_STATE(568)] = 12613, + [SMALL_STATE(569)] = 12672, + [SMALL_STATE(570)] = 12731, + [SMALL_STATE(571)] = 12790, + [SMALL_STATE(572)] = 12853, + [SMALL_STATE(573)] = 12916, + [SMALL_STATE(574)] = 12975, + [SMALL_STATE(575)] = 13034, + [SMALL_STATE(576)] = 13091, + [SMALL_STATE(577)] = 13156, + [SMALL_STATE(578)] = 13219, + [SMALL_STATE(579)] = 13271, + [SMALL_STATE(580)] = 13323, + [SMALL_STATE(581)] = 13375, + [SMALL_STATE(582)] = 13424, + [SMALL_STATE(583)] = 13473, + [SMALL_STATE(584)] = 13536, + [SMALL_STATE(585)] = 13585, + [SMALL_STATE(586)] = 13634, + [SMALL_STATE(587)] = 13683, + [SMALL_STATE(588)] = 13732, + [SMALL_STATE(589)] = 13781, + [SMALL_STATE(590)] = 13830, + [SMALL_STATE(591)] = 13879, + [SMALL_STATE(592)] = 13928, + [SMALL_STATE(593)] = 13979, + [SMALL_STATE(594)] = 14032, + [SMALL_STATE(595)] = 14081, + [SMALL_STATE(596)] = 14130, + [SMALL_STATE(597)] = 14179, + [SMALL_STATE(598)] = 14232, + [SMALL_STATE(599)] = 14281, + [SMALL_STATE(600)] = 14330, + [SMALL_STATE(601)] = 14379, + [SMALL_STATE(602)] = 14428, + [SMALL_STATE(603)] = 14477, + [SMALL_STATE(604)] = 14526, + [SMALL_STATE(605)] = 14575, + [SMALL_STATE(606)] = 14626, + [SMALL_STATE(607)] = 14675, + [SMALL_STATE(608)] = 14724, + [SMALL_STATE(609)] = 14773, + [SMALL_STATE(610)] = 14822, + [SMALL_STATE(611)] = 14871, + [SMALL_STATE(612)] = 14920, + [SMALL_STATE(613)] = 14969, + [SMALL_STATE(614)] = 15018, + [SMALL_STATE(615)] = 15067, + [SMALL_STATE(616)] = 15116, + [SMALL_STATE(617)] = 15165, + [SMALL_STATE(618)] = 15214, + [SMALL_STATE(619)] = 15263, + [SMALL_STATE(620)] = 15312, + [SMALL_STATE(621)] = 15363, + [SMALL_STATE(622)] = 15412, + [SMALL_STATE(623)] = 15463, + [SMALL_STATE(624)] = 15514, + [SMALL_STATE(625)] = 15563, + [SMALL_STATE(626)] = 15616, + [SMALL_STATE(627)] = 15665, + [SMALL_STATE(628)] = 15716, + [SMALL_STATE(629)] = 15777, + [SMALL_STATE(630)] = 15828, + [SMALL_STATE(631)] = 15877, + [SMALL_STATE(632)] = 15926, + [SMALL_STATE(633)] = 15975, + [SMALL_STATE(634)] = 16024, + [SMALL_STATE(635)] = 16073, + [SMALL_STATE(636)] = 16127, + [SMALL_STATE(637)] = 16177, + [SMALL_STATE(638)] = 16225, + [SMALL_STATE(639)] = 16279, + [SMALL_STATE(640)] = 16329, + [SMALL_STATE(641)] = 16377, + [SMALL_STATE(642)] = 16427, + [SMALL_STATE(643)] = 16477, + [SMALL_STATE(644)] = 16527, + [SMALL_STATE(645)] = 16577, + [SMALL_STATE(646)] = 16624, + [SMALL_STATE(647)] = 16673, + [SMALL_STATE(648)] = 16720, + [SMALL_STATE(649)] = 16767, + [SMALL_STATE(650)] = 16822, + [SMALL_STATE(651)] = 16875, + [SMALL_STATE(652)] = 16922, + [SMALL_STATE(653)] = 16969, + [SMALL_STATE(654)] = 17016, + [SMALL_STATE(655)] = 17063, + [SMALL_STATE(656)] = 17110, + [SMALL_STATE(657)] = 17157, + [SMALL_STATE(658)] = 17204, + [SMALL_STATE(659)] = 17251, + [SMALL_STATE(660)] = 17302, + [SMALL_STATE(661)] = 17349, + [SMALL_STATE(662)] = 17396, + [SMALL_STATE(663)] = 17443, + [SMALL_STATE(664)] = 17490, + [SMALL_STATE(665)] = 17537, + [SMALL_STATE(666)] = 17588, + [SMALL_STATE(667)] = 17635, + [SMALL_STATE(668)] = 17686, + [SMALL_STATE(669)] = 17733, + [SMALL_STATE(670)] = 17780, + [SMALL_STATE(671)] = 17827, + [SMALL_STATE(672)] = 17874, + [SMALL_STATE(673)] = 17923, + [SMALL_STATE(674)] = 17974, + [SMALL_STATE(675)] = 18025, + [SMALL_STATE(676)] = 18076, + [SMALL_STATE(677)] = 18123, + [SMALL_STATE(678)] = 18170, + [SMALL_STATE(679)] = 18217, + [SMALL_STATE(680)] = 18268, + [SMALL_STATE(681)] = 18315, + [SMALL_STATE(682)] = 18362, + [SMALL_STATE(683)] = 18413, + [SMALL_STATE(684)] = 18460, + [SMALL_STATE(685)] = 18507, + [SMALL_STATE(686)] = 18554, + [SMALL_STATE(687)] = 18601, + [SMALL_STATE(688)] = 18648, + [SMALL_STATE(689)] = 18695, + [SMALL_STATE(690)] = 18746, + [SMALL_STATE(691)] = 18797, + [SMALL_STATE(692)] = 18844, + [SMALL_STATE(693)] = 18891, + [SMALL_STATE(694)] = 18942, + [SMALL_STATE(695)] = 18993, + [SMALL_STATE(696)] = 19040, + [SMALL_STATE(697)] = 19091, + [SMALL_STATE(698)] = 19140, + [SMALL_STATE(699)] = 19187, + [SMALL_STATE(700)] = 19234, + [SMALL_STATE(701)] = 19281, + [SMALL_STATE(702)] = 19332, + [SMALL_STATE(703)] = 19387, + [SMALL_STATE(704)] = 19434, + [SMALL_STATE(705)] = 19481, + [SMALL_STATE(706)] = 19528, + [SMALL_STATE(707)] = 19575, + [SMALL_STATE(708)] = 19622, + [SMALL_STATE(709)] = 19671, + [SMALL_STATE(710)] = 19718, + [SMALL_STATE(711)] = 19765, + [SMALL_STATE(712)] = 19812, + [SMALL_STATE(713)] = 19859, + [SMALL_STATE(714)] = 19906, + [SMALL_STATE(715)] = 19953, + [SMALL_STATE(716)] = 20000, + [SMALL_STATE(717)] = 20047, + [SMALL_STATE(718)] = 20133, + [SMALL_STATE(719)] = 20219, + [SMALL_STATE(720)] = 20281, + [SMALL_STATE(721)] = 20367, + [SMALL_STATE(722)] = 20453, + [SMALL_STATE(723)] = 20505, + [SMALL_STATE(724)] = 20557, + [SMALL_STATE(725)] = 20631, + [SMALL_STATE(726)] = 20683, + [SMALL_STATE(727)] = 20769, + [SMALL_STATE(728)] = 20845, + [SMALL_STATE(729)] = 20923, + [SMALL_STATE(730)] = 21009, + [SMALL_STATE(731)] = 21095, + [SMALL_STATE(732)] = 21181, + [SMALL_STATE(733)] = 21267, + [SMALL_STATE(734)] = 21319, + [SMALL_STATE(735)] = 21379, + [SMALL_STATE(736)] = 21429, + [SMALL_STATE(737)] = 21515, + [SMALL_STATE(738)] = 21601, + [SMALL_STATE(739)] = 21657, + [SMALL_STATE(740)] = 21723, + [SMALL_STATE(741)] = 21793, + [SMALL_STATE(742)] = 21875, + [SMALL_STATE(743)] = 21925, + [SMALL_STATE(744)] = 22003, + [SMALL_STATE(745)] = 22083, + [SMALL_STATE(746)] = 22133, + [SMALL_STATE(747)] = 22219, + [SMALL_STATE(748)] = 22305, + [SMALL_STATE(749)] = 22361, + [SMALL_STATE(750)] = 22412, + [SMALL_STATE(751)] = 22457, + [SMALL_STATE(752)] = 22502, + [SMALL_STATE(753)] = 22549, + [SMALL_STATE(754)] = 22594, + [SMALL_STATE(755)] = 22639, + [SMALL_STATE(756)] = 22684, + [SMALL_STATE(757)] = 22729, + [SMALL_STATE(758)] = 22786, + [SMALL_STATE(759)] = 22831, + [SMALL_STATE(760)] = 22876, + [SMALL_STATE(761)] = 22927, + [SMALL_STATE(762)] = 22978, + [SMALL_STATE(763)] = 23029, + [SMALL_STATE(764)] = 23080, + [SMALL_STATE(765)] = 23125, + [SMALL_STATE(766)] = 23170, + [SMALL_STATE(767)] = 23229, + [SMALL_STATE(768)] = 23282, + [SMALL_STATE(769)] = 23335, + [SMALL_STATE(770)] = 23380, + [SMALL_STATE(771)] = 23427, + [SMALL_STATE(772)] = 23472, + [SMALL_STATE(773)] = 23517, + [SMALL_STATE(774)] = 23562, + [SMALL_STATE(775)] = 23607, + [SMALL_STATE(776)] = 23652, + [SMALL_STATE(777)] = 23697, + [SMALL_STATE(778)] = 23742, + [SMALL_STATE(779)] = 23787, + [SMALL_STATE(780)] = 23838, + [SMALL_STATE(781)] = 23892, + [SMALL_STATE(782)] = 23978, + [SMALL_STATE(783)] = 24062, + [SMALL_STATE(784)] = 24146, + [SMALL_STATE(785)] = 24192, + [SMALL_STATE(786)] = 24238, + [SMALL_STATE(787)] = 24284, + [SMALL_STATE(788)] = 24368, + [SMALL_STATE(789)] = 24414, + [SMALL_STATE(790)] = 24498, + [SMALL_STATE(791)] = 24582, + [SMALL_STATE(792)] = 24666, + [SMALL_STATE(793)] = 24712, + [SMALL_STATE(794)] = 24758, + [SMALL_STATE(795)] = 24822, + [SMALL_STATE(796)] = 24868, + [SMALL_STATE(797)] = 24954, + [SMALL_STATE(798)] = 25008, + [SMALL_STATE(799)] = 25084, + [SMALL_STATE(800)] = 25162, + [SMALL_STATE(801)] = 25222, + [SMALL_STATE(802)] = 25294, + [SMALL_STATE(803)] = 25368, + [SMALL_STATE(804)] = 25444, + [SMALL_STATE(805)] = 25502, + [SMALL_STATE(806)] = 25586, + [SMALL_STATE(807)] = 25654, + [SMALL_STATE(808)] = 25740, + [SMALL_STATE(809)] = 25820, + [SMALL_STATE(810)] = 25908, + [SMALL_STATE(811)] = 25994, + [SMALL_STATE(812)] = 26082, + [SMALL_STATE(813)] = 26168, + [SMALL_STATE(814)] = 26214, + [SMALL_STATE(815)] = 26300, + [SMALL_STATE(816)] = 26384, + [SMALL_STATE(817)] = 26470, + [SMALL_STATE(818)] = 26554, + [SMALL_STATE(819)] = 26642, + [SMALL_STATE(820)] = 26730, + [SMALL_STATE(821)] = 26814, + [SMALL_STATE(822)] = 26898, + [SMALL_STATE(823)] = 26986, + [SMALL_STATE(824)] = 27074, + [SMALL_STATE(825)] = 27120, + [SMALL_STATE(826)] = 27204, + [SMALL_STATE(827)] = 27292, + [SMALL_STATE(828)] = 27376, + [SMALL_STATE(829)] = 27460, + [SMALL_STATE(830)] = 27548, + [SMALL_STATE(831)] = 27598, + [SMALL_STATE(832)] = 27682, + [SMALL_STATE(833)] = 27766, + [SMALL_STATE(834)] = 27850, + [SMALL_STATE(835)] = 27914, + [SMALL_STATE(836)] = 27968, + [SMALL_STATE(837)] = 28054, + [SMALL_STATE(838)] = 28130, + [SMALL_STATE(839)] = 28208, + [SMALL_STATE(840)] = 28268, + [SMALL_STATE(841)] = 28340, + [SMALL_STATE(842)] = 28414, + [SMALL_STATE(843)] = 28490, + [SMALL_STATE(844)] = 28548, + [SMALL_STATE(845)] = 28602, + [SMALL_STATE(846)] = 28670, + [SMALL_STATE(847)] = 28750, + [SMALL_STATE(848)] = 28834, + [SMALL_STATE(849)] = 28918, + [SMALL_STATE(850)] = 29002, + [SMALL_STATE(851)] = 29086, + [SMALL_STATE(852)] = 29170, + [SMALL_STATE(853)] = 29254, + [SMALL_STATE(854)] = 29338, + [SMALL_STATE(855)] = 29422, + [SMALL_STATE(856)] = 29506, + [SMALL_STATE(857)] = 29552, + [SMALL_STATE(858)] = 29640, + [SMALL_STATE(859)] = 29683, + [SMALL_STATE(860)] = 29770, + [SMALL_STATE(861)] = 29813, + [SMALL_STATE(862)] = 29856, + [SMALL_STATE(863)] = 29943, + [SMALL_STATE(864)] = 29986, + [SMALL_STATE(865)] = 30029, + [SMALL_STATE(866)] = 30072, + [SMALL_STATE(867)] = 30115, + [SMALL_STATE(868)] = 30158, + [SMALL_STATE(869)] = 30201, + [SMALL_STATE(870)] = 30244, + [SMALL_STATE(871)] = 30331, + [SMALL_STATE(872)] = 30418, + [SMALL_STATE(873)] = 30505, + [SMALL_STATE(874)] = 30592, + [SMALL_STATE(875)] = 30679, + [SMALL_STATE(876)] = 30766, + [SMALL_STATE(877)] = 30853, + [SMALL_STATE(878)] = 30940, + [SMALL_STATE(879)] = 31027, + [SMALL_STATE(880)] = 31110, + [SMALL_STATE(881)] = 31197, + [SMALL_STATE(882)] = 31284, + [SMALL_STATE(883)] = 31371, + [SMALL_STATE(884)] = 31458, + [SMALL_STATE(885)] = 31501, + [SMALL_STATE(886)] = 31588, + [SMALL_STATE(887)] = 31631, + [SMALL_STATE(888)] = 31674, + [SMALL_STATE(889)] = 31761, + [SMALL_STATE(890)] = 31848, + [SMALL_STATE(891)] = 31935, + [SMALL_STATE(892)] = 32022, + [SMALL_STATE(893)] = 32109, + [SMALL_STATE(894)] = 32196, + [SMALL_STATE(895)] = 32239, + [SMALL_STATE(896)] = 32326, + [SMALL_STATE(897)] = 32369, + [SMALL_STATE(898)] = 32456, + [SMALL_STATE(899)] = 32499, + [SMALL_STATE(900)] = 32586, + [SMALL_STATE(901)] = 32673, + [SMALL_STATE(902)] = 32716, + [SMALL_STATE(903)] = 32803, + [SMALL_STATE(904)] = 32846, + [SMALL_STATE(905)] = 32889, + [SMALL_STATE(906)] = 32932, + [SMALL_STATE(907)] = 33019, + [SMALL_STATE(908)] = 33062, + [SMALL_STATE(909)] = 33149, + [SMALL_STATE(910)] = 33192, + [SMALL_STATE(911)] = 33279, + [SMALL_STATE(912)] = 33322, + [SMALL_STATE(913)] = 33365, + [SMALL_STATE(914)] = 33452, + [SMALL_STATE(915)] = 33495, + [SMALL_STATE(916)] = 33538, + [SMALL_STATE(917)] = 33581, + [SMALL_STATE(918)] = 33624, + [SMALL_STATE(919)] = 33667, + [SMALL_STATE(920)] = 33750, + [SMALL_STATE(921)] = 33837, + [SMALL_STATE(922)] = 33880, + [SMALL_STATE(923)] = 33923, + [SMALL_STATE(924)] = 33966, + [SMALL_STATE(925)] = 34009, + [SMALL_STATE(926)] = 34096, + [SMALL_STATE(927)] = 34183, + [SMALL_STATE(928)] = 34226, + [SMALL_STATE(929)] = 34313, + [SMALL_STATE(930)] = 34356, + [SMALL_STATE(931)] = 34443, + [SMALL_STATE(932)] = 34530, + [SMALL_STATE(933)] = 34617, + [SMALL_STATE(934)] = 34704, + [SMALL_STATE(935)] = 34791, + [SMALL_STATE(936)] = 34878, + [SMALL_STATE(937)] = 34965, + [SMALL_STATE(938)] = 35052, + [SMALL_STATE(939)] = 35139, + [SMALL_STATE(940)] = 35226, + [SMALL_STATE(941)] = 35313, + [SMALL_STATE(942)] = 35396, + [SMALL_STATE(943)] = 35439, + [SMALL_STATE(944)] = 35482, + [SMALL_STATE(945)] = 35525, + [SMALL_STATE(946)] = 35609, + [SMALL_STATE(947)] = 35691, + [SMALL_STATE(948)] = 35773, + [SMALL_STATE(949)] = 35817, + [SMALL_STATE(950)] = 35901, + [SMALL_STATE(951)] = 35979, + [SMALL_STATE(952)] = 36061, + [SMALL_STATE(953)] = 36105, + [SMALL_STATE(954)] = 36187, + [SMALL_STATE(955)] = 36269, + [SMALL_STATE(956)] = 36350, + [SMALL_STATE(957)] = 36391, + [SMALL_STATE(958)] = 36432, + [SMALL_STATE(959)] = 36473, + [SMALL_STATE(960)] = 36554, + [SMALL_STATE(961)] = 36595, + [SMALL_STATE(962)] = 36636, + [SMALL_STATE(963)] = 36677, + [SMALL_STATE(964)] = 36718, + [SMALL_STATE(965)] = 36759, + [SMALL_STATE(966)] = 36800, + [SMALL_STATE(967)] = 36841, + [SMALL_STATE(968)] = 36922, + [SMALL_STATE(969)] = 37003, + [SMALL_STATE(970)] = 37084, + [SMALL_STATE(971)] = 37165, + [SMALL_STATE(972)] = 37246, + [SMALL_STATE(973)] = 37327, + [SMALL_STATE(974)] = 37408, + [SMALL_STATE(975)] = 37489, + [SMALL_STATE(976)] = 37550, + [SMALL_STATE(977)] = 37601, + [SMALL_STATE(978)] = 37674, + [SMALL_STATE(979)] = 37749, + [SMALL_STATE(980)] = 37806, + [SMALL_STATE(981)] = 37875, + [SMALL_STATE(982)] = 37946, + [SMALL_STATE(983)] = 38019, + [SMALL_STATE(984)] = 38074, + [SMALL_STATE(985)] = 38125, + [SMALL_STATE(986)] = 38190, + [SMALL_STATE(987)] = 38267, + [SMALL_STATE(988)] = 38348, + [SMALL_STATE(989)] = 38429, + [SMALL_STATE(990)] = 38510, + [SMALL_STATE(991)] = 38591, + [SMALL_STATE(992)] = 38672, + [SMALL_STATE(993)] = 38753, + [SMALL_STATE(994)] = 38794, + [SMALL_STATE(995)] = 38843, + [SMALL_STATE(996)] = 38924, + [SMALL_STATE(997)] = 39005, + [SMALL_STATE(998)] = 39086, + [SMALL_STATE(999)] = 39167, + [SMALL_STATE(1000)] = 39216, + [SMALL_STATE(1001)] = 39263, + [SMALL_STATE(1002)] = 39304, + [SMALL_STATE(1003)] = 39345, + [SMALL_STATE(1004)] = 39426, + [SMALL_STATE(1005)] = 39507, + [SMALL_STATE(1006)] = 39588, + [SMALL_STATE(1007)] = 39669, + [SMALL_STATE(1008)] = 39710, + [SMALL_STATE(1009)] = 39791, + [SMALL_STATE(1010)] = 39872, + [SMALL_STATE(1011)] = 39933, + [SMALL_STATE(1012)] = 39984, + [SMALL_STATE(1013)] = 40065, + [SMALL_STATE(1014)] = 40138, + [SMALL_STATE(1015)] = 40213, + [SMALL_STATE(1016)] = 40270, + [SMALL_STATE(1017)] = 40339, + [SMALL_STATE(1018)] = 40410, + [SMALL_STATE(1019)] = 40483, + [SMALL_STATE(1020)] = 40538, + [SMALL_STATE(1021)] = 40589, + [SMALL_STATE(1022)] = 40654, + [SMALL_STATE(1023)] = 40731, + [SMALL_STATE(1024)] = 40812, + [SMALL_STATE(1025)] = 40853, + [SMALL_STATE(1026)] = 40934, + [SMALL_STATE(1027)] = 41017, + [SMALL_STATE(1028)] = 41058, + [SMALL_STATE(1029)] = 41139, + [SMALL_STATE(1030)] = 41180, + [SMALL_STATE(1031)] = 41261, + [SMALL_STATE(1032)] = 41302, + [SMALL_STATE(1033)] = 41383, + [SMALL_STATE(1034)] = 41464, + [SMALL_STATE(1035)] = 41545, + [SMALL_STATE(1036)] = 41626, + [SMALL_STATE(1037)] = 41707, + [SMALL_STATE(1038)] = 41788, + [SMALL_STATE(1039)] = 41869, + [SMALL_STATE(1040)] = 41950, + [SMALL_STATE(1041)] = 42011, + [SMALL_STATE(1042)] = 42062, + [SMALL_STATE(1043)] = 42135, + [SMALL_STATE(1044)] = 42210, + [SMALL_STATE(1045)] = 42267, + [SMALL_STATE(1046)] = 42336, + [SMALL_STATE(1047)] = 42407, + [SMALL_STATE(1048)] = 42480, + [SMALL_STATE(1049)] = 42535, + [SMALL_STATE(1050)] = 42586, + [SMALL_STATE(1051)] = 42651, + [SMALL_STATE(1052)] = 42728, + [SMALL_STATE(1053)] = 42809, + [SMALL_STATE(1054)] = 42890, + [SMALL_STATE(1055)] = 42971, + [SMALL_STATE(1056)] = 43052, + [SMALL_STATE(1057)] = 43133, + [SMALL_STATE(1058)] = 43214, + [SMALL_STATE(1059)] = 43295, + [SMALL_STATE(1060)] = 43336, + [SMALL_STATE(1061)] = 43414, + [SMALL_STATE(1062)] = 43492, + [SMALL_STATE(1063)] = 43570, + [SMALL_STATE(1064)] = 43640, + [SMALL_STATE(1065)] = 43705, + [SMALL_STATE(1066)] = 43776, + [SMALL_STATE(1067)] = 43847, + [SMALL_STATE(1068)] = 43904, + [SMALL_STATE(1069)] = 43975, + [SMALL_STATE(1070)] = 44046, + [SMALL_STATE(1071)] = 44117, + [SMALL_STATE(1072)] = 44174, + [SMALL_STATE(1073)] = 44245, + [SMALL_STATE(1074)] = 44316, + [SMALL_STATE(1075)] = 44387, + [SMALL_STATE(1076)] = 44458, + [SMALL_STATE(1077)] = 44529, + [SMALL_STATE(1078)] = 44600, + [SMALL_STATE(1079)] = 44671, + [SMALL_STATE(1080)] = 44742, + [SMALL_STATE(1081)] = 44794, + [SMALL_STATE(1082)] = 44850, + [SMALL_STATE(1083)] = 44908, + [SMALL_STATE(1084)] = 44964, + [SMALL_STATE(1085)] = 45022, + [SMALL_STATE(1086)] = 45080, + [SMALL_STATE(1087)] = 45138, + [SMALL_STATE(1088)] = 45194, + [SMALL_STATE(1089)] = 45252, + [SMALL_STATE(1090)] = 45308, + [SMALL_STATE(1091)] = 45366, + [SMALL_STATE(1092)] = 45422, + [SMALL_STATE(1093)] = 45480, + [SMALL_STATE(1094)] = 45536, + [SMALL_STATE(1095)] = 45592, + [SMALL_STATE(1096)] = 45643, + [SMALL_STATE(1097)] = 45694, + [SMALL_STATE(1098)] = 45745, + [SMALL_STATE(1099)] = 45796, + [SMALL_STATE(1100)] = 45847, + [SMALL_STATE(1101)] = 45898, + [SMALL_STATE(1102)] = 45951, + [SMALL_STATE(1103)] = 46002, + [SMALL_STATE(1104)] = 46062, + [SMALL_STATE(1105)] = 46114, + [SMALL_STATE(1106)] = 46164, + [SMALL_STATE(1107)] = 46212, + [SMALL_STATE(1108)] = 46262, + [SMALL_STATE(1109)] = 46305, + [SMALL_STATE(1110)] = 46350, + [SMALL_STATE(1111)] = 46405, + [SMALL_STATE(1112)] = 46448, + [SMALL_STATE(1113)] = 46493, + [SMALL_STATE(1114)] = 46540, + [SMALL_STATE(1115)] = 46585, + [SMALL_STATE(1116)] = 46640, + [SMALL_STATE(1117)] = 46685, + [SMALL_STATE(1118)] = 46728, + [SMALL_STATE(1119)] = 46775, + [SMALL_STATE(1120)] = 46813, + [SMALL_STATE(1121)] = 46851, + [SMALL_STATE(1122)] = 46889, + [SMALL_STATE(1123)] = 46927, + [SMALL_STATE(1124)] = 46967, + [SMALL_STATE(1125)] = 47001, + [SMALL_STATE(1126)] = 47039, + [SMALL_STATE(1127)] = 47077, + [SMALL_STATE(1128)] = 47104, + [SMALL_STATE(1129)] = 47145, + [SMALL_STATE(1130)] = 47174, + [SMALL_STATE(1131)] = 47207, + [SMALL_STATE(1132)] = 47236, + [SMALL_STATE(1133)] = 47262, + [SMALL_STATE(1134)] = 47288, + [SMALL_STATE(1135)] = 47314, + [SMALL_STATE(1136)] = 47340, + [SMALL_STATE(1137)] = 47366, + [SMALL_STATE(1138)] = 47406, + [SMALL_STATE(1139)] = 47432, + [SMALL_STATE(1140)] = 47458, + [SMALL_STATE(1141)] = 47504, + [SMALL_STATE(1142)] = 47530, + [SMALL_STATE(1143)] = 47556, + [SMALL_STATE(1144)] = 47582, + [SMALL_STATE(1145)] = 47624, + [SMALL_STATE(1146)] = 47650, + [SMALL_STATE(1147)] = 47676, + [SMALL_STATE(1148)] = 47702, + [SMALL_STATE(1149)] = 47728, + [SMALL_STATE(1150)] = 47770, + [SMALL_STATE(1151)] = 47812, + [SMALL_STATE(1152)] = 47838, + [SMALL_STATE(1153)] = 47864, + [SMALL_STATE(1154)] = 47906, + [SMALL_STATE(1155)] = 47932, + [SMALL_STATE(1156)] = 47976, + [SMALL_STATE(1157)] = 48002, + [SMALL_STATE(1158)] = 48028, + [SMALL_STATE(1159)] = 48054, + [SMALL_STATE(1160)] = 48080, + [SMALL_STATE(1161)] = 48106, + [SMALL_STATE(1162)] = 48132, + [SMALL_STATE(1163)] = 48158, + [SMALL_STATE(1164)] = 48184, + [SMALL_STATE(1165)] = 48210, + [SMALL_STATE(1166)] = 48236, + [SMALL_STATE(1167)] = 48262, + [SMALL_STATE(1168)] = 48288, + [SMALL_STATE(1169)] = 48314, + [SMALL_STATE(1170)] = 48340, + [SMALL_STATE(1171)] = 48366, + [SMALL_STATE(1172)] = 48392, + [SMALL_STATE(1173)] = 48418, + [SMALL_STATE(1174)] = 48446, + [SMALL_STATE(1175)] = 48486, + [SMALL_STATE(1176)] = 48521, + [SMALL_STATE(1177)] = 48560, + [SMALL_STATE(1178)] = 48595, + [SMALL_STATE(1179)] = 48630, + [SMALL_STATE(1180)] = 48665, + [SMALL_STATE(1181)] = 48700, + [SMALL_STATE(1182)] = 48735, + [SMALL_STATE(1183)] = 48778, + [SMALL_STATE(1184)] = 48813, + [SMALL_STATE(1185)] = 48848, + [SMALL_STATE(1186)] = 48883, + [SMALL_STATE(1187)] = 48918, + [SMALL_STATE(1188)] = 48953, + [SMALL_STATE(1189)] = 48992, + [SMALL_STATE(1190)] = 49033, + [SMALL_STATE(1191)] = 49068, + [SMALL_STATE(1192)] = 49109, + [SMALL_STATE(1193)] = 49144, + [SMALL_STATE(1194)] = 49179, + [SMALL_STATE(1195)] = 49214, + [SMALL_STATE(1196)] = 49249, + [SMALL_STATE(1197)] = 49284, + [SMALL_STATE(1198)] = 49319, + [SMALL_STATE(1199)] = 49354, + [SMALL_STATE(1200)] = 49389, + [SMALL_STATE(1201)] = 49424, + [SMALL_STATE(1202)] = 49449, + [SMALL_STATE(1203)] = 49474, + [SMALL_STATE(1204)] = 49499, + [SMALL_STATE(1205)] = 49534, + [SMALL_STATE(1206)] = 49559, + [SMALL_STATE(1207)] = 49602, + [SMALL_STATE(1208)] = 49627, + [SMALL_STATE(1209)] = 49662, + [SMALL_STATE(1210)] = 49687, + [SMALL_STATE(1211)] = 49722, + [SMALL_STATE(1212)] = 49754, + [SMALL_STATE(1213)] = 49786, + [SMALL_STATE(1214)] = 49808, + [SMALL_STATE(1215)] = 49840, + [SMALL_STATE(1216)] = 49872, + [SMALL_STATE(1217)] = 49904, + [SMALL_STATE(1218)] = 49936, + [SMALL_STATE(1219)] = 49958, + [SMALL_STATE(1220)] = 49990, + [SMALL_STATE(1221)] = 50022, + [SMALL_STATE(1222)] = 50054, + [SMALL_STATE(1223)] = 50086, + [SMALL_STATE(1224)] = 50108, + [SMALL_STATE(1225)] = 50130, + [SMALL_STATE(1226)] = 50162, + [SMALL_STATE(1227)] = 50194, + [SMALL_STATE(1228)] = 50226, + [SMALL_STATE(1229)] = 50258, + [SMALL_STATE(1230)] = 50290, + [SMALL_STATE(1231)] = 50322, + [SMALL_STATE(1232)] = 50354, + [SMALL_STATE(1233)] = 50376, + [SMALL_STATE(1234)] = 50408, + [SMALL_STATE(1235)] = 50430, + [SMALL_STATE(1236)] = 50468, + [SMALL_STATE(1237)] = 50506, + [SMALL_STATE(1238)] = 50536, + [SMALL_STATE(1239)] = 50572, + [SMALL_STATE(1240)] = 50602, + [SMALL_STATE(1241)] = 50632, + [SMALL_STATE(1242)] = 50662, + [SMALL_STATE(1243)] = 50692, + [SMALL_STATE(1244)] = 50722, + [SMALL_STATE(1245)] = 50752, + [SMALL_STATE(1246)] = 50782, + [SMALL_STATE(1247)] = 50818, + [SMALL_STATE(1248)] = 50854, + [SMALL_STATE(1249)] = 50884, + [SMALL_STATE(1250)] = 50914, + [SMALL_STATE(1251)] = 50950, + [SMALL_STATE(1252)] = 50986, + [SMALL_STATE(1253)] = 51019, + [SMALL_STATE(1254)] = 51052, + [SMALL_STATE(1255)] = 51085, + [SMALL_STATE(1256)] = 51118, + [SMALL_STATE(1257)] = 51151, + [SMALL_STATE(1258)] = 51184, + [SMALL_STATE(1259)] = 51211, + [SMALL_STATE(1260)] = 51244, + [SMALL_STATE(1261)] = 51277, + [SMALL_STATE(1262)] = 51310, + [SMALL_STATE(1263)] = 51343, + [SMALL_STATE(1264)] = 51373, + [SMALL_STATE(1265)] = 51403, + [SMALL_STATE(1266)] = 51433, + [SMALL_STATE(1267)] = 51463, + [SMALL_STATE(1268)] = 51493, + [SMALL_STATE(1269)] = 51523, + [SMALL_STATE(1270)] = 51553, + [SMALL_STATE(1271)] = 51583, + [SMALL_STATE(1272)] = 51613, + [SMALL_STATE(1273)] = 51643, + [SMALL_STATE(1274)] = 51673, + [SMALL_STATE(1275)] = 51699, + [SMALL_STATE(1276)] = 51729, + [SMALL_STATE(1277)] = 51759, + [SMALL_STATE(1278)] = 51789, + [SMALL_STATE(1279)] = 51819, + [SMALL_STATE(1280)] = 51849, + [SMALL_STATE(1281)] = 51879, + [SMALL_STATE(1282)] = 51907, + [SMALL_STATE(1283)] = 51937, + [SMALL_STATE(1284)] = 51967, + [SMALL_STATE(1285)] = 51993, + [SMALL_STATE(1286)] = 52023, + [SMALL_STATE(1287)] = 52053, + [SMALL_STATE(1288)] = 52083, + [SMALL_STATE(1289)] = 52113, + [SMALL_STATE(1290)] = 52143, + [SMALL_STATE(1291)] = 52173, + [SMALL_STATE(1292)] = 52200, + [SMALL_STATE(1293)] = 52227, + [SMALL_STATE(1294)] = 52249, + [SMALL_STATE(1295)] = 52273, + [SMALL_STATE(1296)] = 52293, + [SMALL_STATE(1297)] = 52307, + [SMALL_STATE(1298)] = 52329, + [SMALL_STATE(1299)] = 52351, + [SMALL_STATE(1300)] = 52375, + [SMALL_STATE(1301)] = 52399, + [SMALL_STATE(1302)] = 52415, + [SMALL_STATE(1303)] = 52429, + [SMALL_STATE(1304)] = 52453, + [SMALL_STATE(1305)] = 52475, + [SMALL_STATE(1306)] = 52489, + [SMALL_STATE(1307)] = 52513, + [SMALL_STATE(1308)] = 52537, + [SMALL_STATE(1309)] = 52551, + [SMALL_STATE(1310)] = 52575, + [SMALL_STATE(1311)] = 52593, + [SMALL_STATE(1312)] = 52617, + [SMALL_STATE(1313)] = 52641, + [SMALL_STATE(1314)] = 52663, + [SMALL_STATE(1315)] = 52681, + [SMALL_STATE(1316)] = 52697, + [SMALL_STATE(1317)] = 52721, + [SMALL_STATE(1318)] = 52743, + [SMALL_STATE(1319)] = 52765, + [SMALL_STATE(1320)] = 52785, + [SMALL_STATE(1321)] = 52807, + [SMALL_STATE(1322)] = 52821, + [SMALL_STATE(1323)] = 52845, + [SMALL_STATE(1324)] = 52866, + [SMALL_STATE(1325)] = 52881, + [SMALL_STATE(1326)] = 52902, + [SMALL_STATE(1327)] = 52921, + [SMALL_STATE(1328)] = 52940, + [SMALL_STATE(1329)] = 52959, + [SMALL_STATE(1330)] = 52976, + [SMALL_STATE(1331)] = 52989, + [SMALL_STATE(1332)] = 53008, + [SMALL_STATE(1333)] = 53021, + [SMALL_STATE(1334)] = 53040, + [SMALL_STATE(1335)] = 53059, + [SMALL_STATE(1336)] = 53080, + [SMALL_STATE(1337)] = 53099, + [SMALL_STATE(1338)] = 53120, + [SMALL_STATE(1339)] = 53133, + [SMALL_STATE(1340)] = 53154, + [SMALL_STATE(1341)] = 53167, + [SMALL_STATE(1342)] = 53186, + [SMALL_STATE(1343)] = 53205, + [SMALL_STATE(1344)] = 53218, + [SMALL_STATE(1345)] = 53237, + [SMALL_STATE(1346)] = 53256, + [SMALL_STATE(1347)] = 53277, + [SMALL_STATE(1348)] = 53296, + [SMALL_STATE(1349)] = 53315, + [SMALL_STATE(1350)] = 53336, + [SMALL_STATE(1351)] = 53357, + [SMALL_STATE(1352)] = 53370, + [SMALL_STATE(1353)] = 53389, + [SMALL_STATE(1354)] = 53410, + [SMALL_STATE(1355)] = 53423, + [SMALL_STATE(1356)] = 53442, + [SMALL_STATE(1357)] = 53455, + [SMALL_STATE(1358)] = 53468, + [SMALL_STATE(1359)] = 53481, + [SMALL_STATE(1360)] = 53500, + [SMALL_STATE(1361)] = 53519, + [SMALL_STATE(1362)] = 53540, + [SMALL_STATE(1363)] = 53555, + [SMALL_STATE(1364)] = 53569, + [SMALL_STATE(1365)] = 53583, + [SMALL_STATE(1366)] = 53603, + [SMALL_STATE(1367)] = 53617, + [SMALL_STATE(1368)] = 53631, + [SMALL_STATE(1369)] = 53645, + [SMALL_STATE(1370)] = 53659, + [SMALL_STATE(1371)] = 53673, + [SMALL_STATE(1372)] = 53687, + [SMALL_STATE(1373)] = 53701, + [SMALL_STATE(1374)] = 53715, + [SMALL_STATE(1375)] = 53729, + [SMALL_STATE(1376)] = 53741, + [SMALL_STATE(1377)] = 53755, + [SMALL_STATE(1378)] = 53769, + [SMALL_STATE(1379)] = 53783, + [SMALL_STATE(1380)] = 53803, + [SMALL_STATE(1381)] = 53817, + [SMALL_STATE(1382)] = 53831, + [SMALL_STATE(1383)] = 53851, + [SMALL_STATE(1384)] = 53871, + [SMALL_STATE(1385)] = 53891, + [SMALL_STATE(1386)] = 53905, + [SMALL_STATE(1387)] = 53925, + [SMALL_STATE(1388)] = 53945, + [SMALL_STATE(1389)] = 53965, + [SMALL_STATE(1390)] = 53985, + [SMALL_STATE(1391)] = 53999, + [SMALL_STATE(1392)] = 54013, + [SMALL_STATE(1393)] = 54033, + [SMALL_STATE(1394)] = 54053, + [SMALL_STATE(1395)] = 54073, + [SMALL_STATE(1396)] = 54093, + [SMALL_STATE(1397)] = 54113, + [SMALL_STATE(1398)] = 54133, + [SMALL_STATE(1399)] = 54153, + [SMALL_STATE(1400)] = 54171, + [SMALL_STATE(1401)] = 54185, + [SMALL_STATE(1402)] = 54203, + [SMALL_STATE(1403)] = 54223, + [SMALL_STATE(1404)] = 54237, + [SMALL_STATE(1405)] = 54257, + [SMALL_STATE(1406)] = 54271, + [SMALL_STATE(1407)] = 54291, + [SMALL_STATE(1408)] = 54311, + [SMALL_STATE(1409)] = 54331, + [SMALL_STATE(1410)] = 54349, + [SMALL_STATE(1411)] = 54363, + [SMALL_STATE(1412)] = 54383, + [SMALL_STATE(1413)] = 54403, + [SMALL_STATE(1414)] = 54417, + [SMALL_STATE(1415)] = 54431, + [SMALL_STATE(1416)] = 54445, + [SMALL_STATE(1417)] = 54465, + [SMALL_STATE(1418)] = 54481, + [SMALL_STATE(1419)] = 54501, + [SMALL_STATE(1420)] = 54521, + [SMALL_STATE(1421)] = 54541, + [SMALL_STATE(1422)] = 54555, + [SMALL_STATE(1423)] = 54569, + [SMALL_STATE(1424)] = 54583, + [SMALL_STATE(1425)] = 54597, + [SMALL_STATE(1426)] = 54611, + [SMALL_STATE(1427)] = 54625, + [SMALL_STATE(1428)] = 54643, + [SMALL_STATE(1429)] = 54657, + [SMALL_STATE(1430)] = 54671, + [SMALL_STATE(1431)] = 54685, + [SMALL_STATE(1432)] = 54699, + [SMALL_STATE(1433)] = 54715, + [SMALL_STATE(1434)] = 54727, + [SMALL_STATE(1435)] = 54739, + [SMALL_STATE(1436)] = 54751, + [SMALL_STATE(1437)] = 54767, + [SMALL_STATE(1438)] = 54778, + [SMALL_STATE(1439)] = 54795, + [SMALL_STATE(1440)] = 54812, + [SMALL_STATE(1441)] = 54829, + [SMALL_STATE(1442)] = 54846, + [SMALL_STATE(1443)] = 54863, + [SMALL_STATE(1444)] = 54874, + [SMALL_STATE(1445)] = 54889, + [SMALL_STATE(1446)] = 54906, + [SMALL_STATE(1447)] = 54923, + [SMALL_STATE(1448)] = 54940, + [SMALL_STATE(1449)] = 54955, + [SMALL_STATE(1450)] = 54970, + [SMALL_STATE(1451)] = 54987, + [SMALL_STATE(1452)] = 55004, + [SMALL_STATE(1453)] = 55015, + [SMALL_STATE(1454)] = 55032, + [SMALL_STATE(1455)] = 55049, + [SMALL_STATE(1456)] = 55066, + [SMALL_STATE(1457)] = 55077, + [SMALL_STATE(1458)] = 55090, + [SMALL_STATE(1459)] = 55105, + [SMALL_STATE(1460)] = 55124, + [SMALL_STATE(1461)] = 55143, + [SMALL_STATE(1462)] = 55160, + [SMALL_STATE(1463)] = 55177, + [SMALL_STATE(1464)] = 55194, + [SMALL_STATE(1465)] = 55211, + [SMALL_STATE(1466)] = 55222, + [SMALL_STATE(1467)] = 55241, + [SMALL_STATE(1468)] = 55260, + [SMALL_STATE(1469)] = 55277, + [SMALL_STATE(1470)] = 55294, + [SMALL_STATE(1471)] = 55311, + [SMALL_STATE(1472)] = 55322, + [SMALL_STATE(1473)] = 55337, + [SMALL_STATE(1474)] = 55354, + [SMALL_STATE(1475)] = 55371, + [SMALL_STATE(1476)] = 55388, + [SMALL_STATE(1477)] = 55405, + [SMALL_STATE(1478)] = 55422, + [SMALL_STATE(1479)] = 55437, + [SMALL_STATE(1480)] = 55454, + [SMALL_STATE(1481)] = 55469, + [SMALL_STATE(1482)] = 55486, + [SMALL_STATE(1483)] = 55503, + [SMALL_STATE(1484)] = 55520, + [SMALL_STATE(1485)] = 55537, + [SMALL_STATE(1486)] = 55554, + [SMALL_STATE(1487)] = 55571, + [SMALL_STATE(1488)] = 55588, + [SMALL_STATE(1489)] = 55605, + [SMALL_STATE(1490)] = 55622, + [SMALL_STATE(1491)] = 55641, + [SMALL_STATE(1492)] = 55656, + [SMALL_STATE(1493)] = 55675, + [SMALL_STATE(1494)] = 55690, + [SMALL_STATE(1495)] = 55707, + [SMALL_STATE(1496)] = 55724, + [SMALL_STATE(1497)] = 55741, + [SMALL_STATE(1498)] = 55758, + [SMALL_STATE(1499)] = 55775, + [SMALL_STATE(1500)] = 55792, + [SMALL_STATE(1501)] = 55809, + [SMALL_STATE(1502)] = 55826, + [SMALL_STATE(1503)] = 55841, + [SMALL_STATE(1504)] = 55854, + [SMALL_STATE(1505)] = 55871, + [SMALL_STATE(1506)] = 55886, + [SMALL_STATE(1507)] = 55903, + [SMALL_STATE(1508)] = 55918, + [SMALL_STATE(1509)] = 55935, + [SMALL_STATE(1510)] = 55952, + [SMALL_STATE(1511)] = 55965, + [SMALL_STATE(1512)] = 55982, + [SMALL_STATE(1513)] = 55999, + [SMALL_STATE(1514)] = 56014, + [SMALL_STATE(1515)] = 56027, + [SMALL_STATE(1516)] = 56044, + [SMALL_STATE(1517)] = 56061, + [SMALL_STATE(1518)] = 56078, + [SMALL_STATE(1519)] = 56095, + [SMALL_STATE(1520)] = 56112, + [SMALL_STATE(1521)] = 56129, + [SMALL_STATE(1522)] = 56146, + [SMALL_STATE(1523)] = 56161, + [SMALL_STATE(1524)] = 56176, + [SMALL_STATE(1525)] = 56193, + [SMALL_STATE(1526)] = 56210, + [SMALL_STATE(1527)] = 56227, + [SMALL_STATE(1528)] = 56242, + [SMALL_STATE(1529)] = 56259, + [SMALL_STATE(1530)] = 56276, + [SMALL_STATE(1531)] = 56287, + [SMALL_STATE(1532)] = 56302, + [SMALL_STATE(1533)] = 56315, + [SMALL_STATE(1534)] = 56330, + [SMALL_STATE(1535)] = 56345, + [SMALL_STATE(1536)] = 56362, + [SMALL_STATE(1537)] = 56377, + [SMALL_STATE(1538)] = 56394, + [SMALL_STATE(1539)] = 56411, + [SMALL_STATE(1540)] = 56422, + [SMALL_STATE(1541)] = 56439, + [SMALL_STATE(1542)] = 56456, + [SMALL_STATE(1543)] = 56469, + [SMALL_STATE(1544)] = 56480, + [SMALL_STATE(1545)] = 56497, + [SMALL_STATE(1546)] = 56511, + [SMALL_STATE(1547)] = 56525, + [SMALL_STATE(1548)] = 56535, + [SMALL_STATE(1549)] = 56549, + [SMALL_STATE(1550)] = 56563, + [SMALL_STATE(1551)] = 56573, + [SMALL_STATE(1552)] = 56585, + [SMALL_STATE(1553)] = 56599, + [SMALL_STATE(1554)] = 56609, + [SMALL_STATE(1555)] = 56621, + [SMALL_STATE(1556)] = 56635, + [SMALL_STATE(1557)] = 56645, + [SMALL_STATE(1558)] = 56659, + [SMALL_STATE(1559)] = 56673, + [SMALL_STATE(1560)] = 56683, + [SMALL_STATE(1561)] = 56697, + [SMALL_STATE(1562)] = 56709, + [SMALL_STATE(1563)] = 56723, + [SMALL_STATE(1564)] = 56737, + [SMALL_STATE(1565)] = 56751, + [SMALL_STATE(1566)] = 56765, + [SMALL_STATE(1567)] = 56779, + [SMALL_STATE(1568)] = 56793, + [SMALL_STATE(1569)] = 56807, + [SMALL_STATE(1570)] = 56821, + [SMALL_STATE(1571)] = 56833, + [SMALL_STATE(1572)] = 56845, + [SMALL_STATE(1573)] = 56859, + [SMALL_STATE(1574)] = 56873, + [SMALL_STATE(1575)] = 56883, + [SMALL_STATE(1576)] = 56895, + [SMALL_STATE(1577)] = 56907, + [SMALL_STATE(1578)] = 56919, + [SMALL_STATE(1579)] = 56929, + [SMALL_STATE(1580)] = 56943, + [SMALL_STATE(1581)] = 56953, + [SMALL_STATE(1582)] = 56963, + [SMALL_STATE(1583)] = 56977, + [SMALL_STATE(1584)] = 56987, + [SMALL_STATE(1585)] = 57001, + [SMALL_STATE(1586)] = 57015, + [SMALL_STATE(1587)] = 57025, + [SMALL_STATE(1588)] = 57039, + [SMALL_STATE(1589)] = 57049, + [SMALL_STATE(1590)] = 57063, + [SMALL_STATE(1591)] = 57077, + [SMALL_STATE(1592)] = 57091, + [SMALL_STATE(1593)] = 57103, + [SMALL_STATE(1594)] = 57113, + [SMALL_STATE(1595)] = 57127, + [SMALL_STATE(1596)] = 57141, + [SMALL_STATE(1597)] = 57155, + [SMALL_STATE(1598)] = 57169, + [SMALL_STATE(1599)] = 57183, + [SMALL_STATE(1600)] = 57197, + [SMALL_STATE(1601)] = 57211, + [SMALL_STATE(1602)] = 57225, + [SMALL_STATE(1603)] = 57239, + [SMALL_STATE(1604)] = 57253, + [SMALL_STATE(1605)] = 57267, + [SMALL_STATE(1606)] = 57279, + [SMALL_STATE(1607)] = 57293, + [SMALL_STATE(1608)] = 57305, + [SMALL_STATE(1609)] = 57319, + [SMALL_STATE(1610)] = 57333, + [SMALL_STATE(1611)] = 57347, + [SMALL_STATE(1612)] = 57361, + [SMALL_STATE(1613)] = 57373, + [SMALL_STATE(1614)] = 57387, + [SMALL_STATE(1615)] = 57401, + [SMALL_STATE(1616)] = 57415, + [SMALL_STATE(1617)] = 57425, + [SMALL_STATE(1618)] = 57439, + [SMALL_STATE(1619)] = 57451, + [SMALL_STATE(1620)] = 57465, + [SMALL_STATE(1621)] = 57479, + [SMALL_STATE(1622)] = 57493, + [SMALL_STATE(1623)] = 57507, + [SMALL_STATE(1624)] = 57521, + [SMALL_STATE(1625)] = 57535, + [SMALL_STATE(1626)] = 57549, + [SMALL_STATE(1627)] = 57561, + [SMALL_STATE(1628)] = 57575, + [SMALL_STATE(1629)] = 57589, + [SMALL_STATE(1630)] = 57603, + [SMALL_STATE(1631)] = 57617, + [SMALL_STATE(1632)] = 57627, + [SMALL_STATE(1633)] = 57639, + [SMALL_STATE(1634)] = 57653, + [SMALL_STATE(1635)] = 57665, + [SMALL_STATE(1636)] = 57679, + [SMALL_STATE(1637)] = 57693, + [SMALL_STATE(1638)] = 57707, + [SMALL_STATE(1639)] = 57719, + [SMALL_STATE(1640)] = 57733, + [SMALL_STATE(1641)] = 57747, + [SMALL_STATE(1642)] = 57759, + [SMALL_STATE(1643)] = 57773, + [SMALL_STATE(1644)] = 57787, + [SMALL_STATE(1645)] = 57799, + [SMALL_STATE(1646)] = 57813, + [SMALL_STATE(1647)] = 57827, + [SMALL_STATE(1648)] = 57841, + [SMALL_STATE(1649)] = 57855, + [SMALL_STATE(1650)] = 57865, + [SMALL_STATE(1651)] = 57879, + [SMALL_STATE(1652)] = 57893, + [SMALL_STATE(1653)] = 57907, + [SMALL_STATE(1654)] = 57921, + [SMALL_STATE(1655)] = 57935, + [SMALL_STATE(1656)] = 57949, + [SMALL_STATE(1657)] = 57963, + [SMALL_STATE(1658)] = 57977, + [SMALL_STATE(1659)] = 57991, + [SMALL_STATE(1660)] = 58005, + [SMALL_STATE(1661)] = 58015, + [SMALL_STATE(1662)] = 58029, + [SMALL_STATE(1663)] = 58043, + [SMALL_STATE(1664)] = 58057, + [SMALL_STATE(1665)] = 58069, + [SMALL_STATE(1666)] = 58083, + [SMALL_STATE(1667)] = 58097, + [SMALL_STATE(1668)] = 58107, + [SMALL_STATE(1669)] = 58117, + [SMALL_STATE(1670)] = 58131, + [SMALL_STATE(1671)] = 58145, + [SMALL_STATE(1672)] = 58157, + [SMALL_STATE(1673)] = 58171, + [SMALL_STATE(1674)] = 58181, + [SMALL_STATE(1675)] = 58195, + [SMALL_STATE(1676)] = 58207, + [SMALL_STATE(1677)] = 58221, + [SMALL_STATE(1678)] = 58235, + [SMALL_STATE(1679)] = 58249, + [SMALL_STATE(1680)] = 58263, + [SMALL_STATE(1681)] = 58277, + [SMALL_STATE(1682)] = 58291, + [SMALL_STATE(1683)] = 58305, + [SMALL_STATE(1684)] = 58319, + [SMALL_STATE(1685)] = 58329, + [SMALL_STATE(1686)] = 58343, + [SMALL_STATE(1687)] = 58353, + [SMALL_STATE(1688)] = 58367, + [SMALL_STATE(1689)] = 58379, + [SMALL_STATE(1690)] = 58393, + [SMALL_STATE(1691)] = 58404, + [SMALL_STATE(1692)] = 58413, + [SMALL_STATE(1693)] = 58422, + [SMALL_STATE(1694)] = 58431, + [SMALL_STATE(1695)] = 58442, + [SMALL_STATE(1696)] = 58453, + [SMALL_STATE(1697)] = 58462, + [SMALL_STATE(1698)] = 58473, + [SMALL_STATE(1699)] = 58484, + [SMALL_STATE(1700)] = 58495, + [SMALL_STATE(1701)] = 58506, + [SMALL_STATE(1702)] = 58517, + [SMALL_STATE(1703)] = 58528, + [SMALL_STATE(1704)] = 58539, + [SMALL_STATE(1705)] = 58548, + [SMALL_STATE(1706)] = 58559, + [SMALL_STATE(1707)] = 58570, + [SMALL_STATE(1708)] = 58581, + [SMALL_STATE(1709)] = 58590, + [SMALL_STATE(1710)] = 58601, + [SMALL_STATE(1711)] = 58610, + [SMALL_STATE(1712)] = 58619, + [SMALL_STATE(1713)] = 58630, + [SMALL_STATE(1714)] = 58641, + [SMALL_STATE(1715)] = 58650, + [SMALL_STATE(1716)] = 58661, + [SMALL_STATE(1717)] = 58672, + [SMALL_STATE(1718)] = 58681, + [SMALL_STATE(1719)] = 58692, + [SMALL_STATE(1720)] = 58701, + [SMALL_STATE(1721)] = 58710, + [SMALL_STATE(1722)] = 58719, + [SMALL_STATE(1723)] = 58730, + [SMALL_STATE(1724)] = 58741, + [SMALL_STATE(1725)] = 58752, + [SMALL_STATE(1726)] = 58761, + [SMALL_STATE(1727)] = 58770, + [SMALL_STATE(1728)] = 58781, + [SMALL_STATE(1729)] = 58792, + [SMALL_STATE(1730)] = 58801, + [SMALL_STATE(1731)] = 58810, + [SMALL_STATE(1732)] = 58819, + [SMALL_STATE(1733)] = 58828, + [SMALL_STATE(1734)] = 58839, + [SMALL_STATE(1735)] = 58850, + [SMALL_STATE(1736)] = 58859, + [SMALL_STATE(1737)] = 58868, + [SMALL_STATE(1738)] = 58877, + [SMALL_STATE(1739)] = 58888, + [SMALL_STATE(1740)] = 58897, + [SMALL_STATE(1741)] = 58906, + [SMALL_STATE(1742)] = 58915, + [SMALL_STATE(1743)] = 58926, + [SMALL_STATE(1744)] = 58937, + [SMALL_STATE(1745)] = 58946, + [SMALL_STATE(1746)] = 58957, + [SMALL_STATE(1747)] = 58968, + [SMALL_STATE(1748)] = 58979, + [SMALL_STATE(1749)] = 58990, + [SMALL_STATE(1750)] = 59001, + [SMALL_STATE(1751)] = 59012, + [SMALL_STATE(1752)] = 59023, + [SMALL_STATE(1753)] = 59034, + [SMALL_STATE(1754)] = 59045, + [SMALL_STATE(1755)] = 59056, + [SMALL_STATE(1756)] = 59067, + [SMALL_STATE(1757)] = 59078, + [SMALL_STATE(1758)] = 59089, + [SMALL_STATE(1759)] = 59098, + [SMALL_STATE(1760)] = 59109, + [SMALL_STATE(1761)] = 59120, + [SMALL_STATE(1762)] = 59131, + [SMALL_STATE(1763)] = 59140, + [SMALL_STATE(1764)] = 59151, + [SMALL_STATE(1765)] = 59162, + [SMALL_STATE(1766)] = 59173, + [SMALL_STATE(1767)] = 59184, + [SMALL_STATE(1768)] = 59193, + [SMALL_STATE(1769)] = 59202, + [SMALL_STATE(1770)] = 59211, + [SMALL_STATE(1771)] = 59222, + [SMALL_STATE(1772)] = 59233, + [SMALL_STATE(1773)] = 59244, + [SMALL_STATE(1774)] = 59255, + [SMALL_STATE(1775)] = 59266, + [SMALL_STATE(1776)] = 59275, + [SMALL_STATE(1777)] = 59286, + [SMALL_STATE(1778)] = 59297, + [SMALL_STATE(1779)] = 59308, + [SMALL_STATE(1780)] = 59317, + [SMALL_STATE(1781)] = 59328, + [SMALL_STATE(1782)] = 59337, + [SMALL_STATE(1783)] = 59348, + [SMALL_STATE(1784)] = 59359, + [SMALL_STATE(1785)] = 59368, + [SMALL_STATE(1786)] = 59379, + [SMALL_STATE(1787)] = 59390, + [SMALL_STATE(1788)] = 59401, + [SMALL_STATE(1789)] = 59412, + [SMALL_STATE(1790)] = 59423, + [SMALL_STATE(1791)] = 59432, + [SMALL_STATE(1792)] = 59443, + [SMALL_STATE(1793)] = 59454, + [SMALL_STATE(1794)] = 59465, + [SMALL_STATE(1795)] = 59476, + [SMALL_STATE(1796)] = 59485, + [SMALL_STATE(1797)] = 59494, + [SMALL_STATE(1798)] = 59505, + [SMALL_STATE(1799)] = 59514, + [SMALL_STATE(1800)] = 59525, + [SMALL_STATE(1801)] = 59534, + [SMALL_STATE(1802)] = 59545, + [SMALL_STATE(1803)] = 59554, + [SMALL_STATE(1804)] = 59565, + [SMALL_STATE(1805)] = 59576, + [SMALL_STATE(1806)] = 59587, + [SMALL_STATE(1807)] = 59596, + [SMALL_STATE(1808)] = 59605, + [SMALL_STATE(1809)] = 59614, + [SMALL_STATE(1810)] = 59623, + [SMALL_STATE(1811)] = 59632, + [SMALL_STATE(1812)] = 59641, + [SMALL_STATE(1813)] = 59652, + [SMALL_STATE(1814)] = 59661, + [SMALL_STATE(1815)] = 59672, + [SMALL_STATE(1816)] = 59681, + [SMALL_STATE(1817)] = 59692, + [SMALL_STATE(1818)] = 59703, + [SMALL_STATE(1819)] = 59714, + [SMALL_STATE(1820)] = 59723, + [SMALL_STATE(1821)] = 59734, + [SMALL_STATE(1822)] = 59743, + [SMALL_STATE(1823)] = 59754, + [SMALL_STATE(1824)] = 59765, + [SMALL_STATE(1825)] = 59776, + [SMALL_STATE(1826)] = 59787, + [SMALL_STATE(1827)] = 59798, + [SMALL_STATE(1828)] = 59807, + [SMALL_STATE(1829)] = 59816, + [SMALL_STATE(1830)] = 59825, + [SMALL_STATE(1831)] = 59836, + [SMALL_STATE(1832)] = 59845, + [SMALL_STATE(1833)] = 59856, + [SMALL_STATE(1834)] = 59865, + [SMALL_STATE(1835)] = 59874, + [SMALL_STATE(1836)] = 59885, + [SMALL_STATE(1837)] = 59894, + [SMALL_STATE(1838)] = 59905, + [SMALL_STATE(1839)] = 59914, + [SMALL_STATE(1840)] = 59923, + [SMALL_STATE(1841)] = 59934, + [SMALL_STATE(1842)] = 59945, + [SMALL_STATE(1843)] = 59956, + [SMALL_STATE(1844)] = 59965, + [SMALL_STATE(1845)] = 59976, + [SMALL_STATE(1846)] = 59987, + [SMALL_STATE(1847)] = 59998, + [SMALL_STATE(1848)] = 60007, + [SMALL_STATE(1849)] = 60016, + [SMALL_STATE(1850)] = 60027, + [SMALL_STATE(1851)] = 60036, + [SMALL_STATE(1852)] = 60047, + [SMALL_STATE(1853)] = 60058, + [SMALL_STATE(1854)] = 60067, + [SMALL_STATE(1855)] = 60076, + [SMALL_STATE(1856)] = 60085, + [SMALL_STATE(1857)] = 60094, + [SMALL_STATE(1858)] = 60105, + [SMALL_STATE(1859)] = 60114, + [SMALL_STATE(1860)] = 60125, + [SMALL_STATE(1861)] = 60134, + [SMALL_STATE(1862)] = 60145, + [SMALL_STATE(1863)] = 60156, + [SMALL_STATE(1864)] = 60167, + [SMALL_STATE(1865)] = 60178, + [SMALL_STATE(1866)] = 60189, + [SMALL_STATE(1867)] = 60198, + [SMALL_STATE(1868)] = 60207, + [SMALL_STATE(1869)] = 60218, + [SMALL_STATE(1870)] = 60229, + [SMALL_STATE(1871)] = 60238, + [SMALL_STATE(1872)] = 60249, + [SMALL_STATE(1873)] = 60260, + [SMALL_STATE(1874)] = 60271, + [SMALL_STATE(1875)] = 60280, + [SMALL_STATE(1876)] = 60289, + [SMALL_STATE(1877)] = 60300, + [SMALL_STATE(1878)] = 60311, + [SMALL_STATE(1879)] = 60320, + [SMALL_STATE(1880)] = 60329, + [SMALL_STATE(1881)] = 60340, + [SMALL_STATE(1882)] = 60351, + [SMALL_STATE(1883)] = 60362, + [SMALL_STATE(1884)] = 60373, + [SMALL_STATE(1885)] = 60384, + [SMALL_STATE(1886)] = 60395, + [SMALL_STATE(1887)] = 60406, + [SMALL_STATE(1888)] = 60417, + [SMALL_STATE(1889)] = 60426, + [SMALL_STATE(1890)] = 60435, + [SMALL_STATE(1891)] = 60444, + [SMALL_STATE(1892)] = 60453, + [SMALL_STATE(1893)] = 60462, + [SMALL_STATE(1894)] = 60473, + [SMALL_STATE(1895)] = 60482, + [SMALL_STATE(1896)] = 60491, + [SMALL_STATE(1897)] = 60500, + [SMALL_STATE(1898)] = 60511, + [SMALL_STATE(1899)] = 60522, + [SMALL_STATE(1900)] = 60533, + [SMALL_STATE(1901)] = 60542, + [SMALL_STATE(1902)] = 60553, + [SMALL_STATE(1903)] = 60564, + [SMALL_STATE(1904)] = 60573, + [SMALL_STATE(1905)] = 60584, + [SMALL_STATE(1906)] = 60595, + [SMALL_STATE(1907)] = 60606, + [SMALL_STATE(1908)] = 60617, + [SMALL_STATE(1909)] = 60626, + [SMALL_STATE(1910)] = 60637, + [SMALL_STATE(1911)] = 60648, + [SMALL_STATE(1912)] = 60659, + [SMALL_STATE(1913)] = 60670, + [SMALL_STATE(1914)] = 60681, + [SMALL_STATE(1915)] = 60692, + [SMALL_STATE(1916)] = 60703, + [SMALL_STATE(1917)] = 60714, + [SMALL_STATE(1918)] = 60725, + [SMALL_STATE(1919)] = 60736, + [SMALL_STATE(1920)] = 60745, + [SMALL_STATE(1921)] = 60756, + [SMALL_STATE(1922)] = 60767, + [SMALL_STATE(1923)] = 60778, + [SMALL_STATE(1924)] = 60789, + [SMALL_STATE(1925)] = 60800, + [SMALL_STATE(1926)] = 60811, + [SMALL_STATE(1927)] = 60822, + [SMALL_STATE(1928)] = 60833, + [SMALL_STATE(1929)] = 60844, + [SMALL_STATE(1930)] = 60855, + [SMALL_STATE(1931)] = 60864, + [SMALL_STATE(1932)] = 60875, + [SMALL_STATE(1933)] = 60886, + [SMALL_STATE(1934)] = 60897, + [SMALL_STATE(1935)] = 60906, + [SMALL_STATE(1936)] = 60917, + [SMALL_STATE(1937)] = 60928, + [SMALL_STATE(1938)] = 60939, + [SMALL_STATE(1939)] = 60950, + [SMALL_STATE(1940)] = 60959, + [SMALL_STATE(1941)] = 60968, + [SMALL_STATE(1942)] = 60979, + [SMALL_STATE(1943)] = 60990, + [SMALL_STATE(1944)] = 60999, + [SMALL_STATE(1945)] = 61008, + [SMALL_STATE(1946)] = 61019, + [SMALL_STATE(1947)] = 61028, + [SMALL_STATE(1948)] = 61039, + [SMALL_STATE(1949)] = 61050, + [SMALL_STATE(1950)] = 61061, + [SMALL_STATE(1951)] = 61072, + [SMALL_STATE(1952)] = 61083, + [SMALL_STATE(1953)] = 61094, + [SMALL_STATE(1954)] = 61105, + [SMALL_STATE(1955)] = 61116, + [SMALL_STATE(1956)] = 61127, + [SMALL_STATE(1957)] = 61138, + [SMALL_STATE(1958)] = 61149, + [SMALL_STATE(1959)] = 61158, + [SMALL_STATE(1960)] = 61169, + [SMALL_STATE(1961)] = 61180, + [SMALL_STATE(1962)] = 61189, + [SMALL_STATE(1963)] = 61200, + [SMALL_STATE(1964)] = 61211, + [SMALL_STATE(1965)] = 61222, + [SMALL_STATE(1966)] = 61233, + [SMALL_STATE(1967)] = 61244, + [SMALL_STATE(1968)] = 61255, + [SMALL_STATE(1969)] = 61266, + [SMALL_STATE(1970)] = 61277, + [SMALL_STATE(1971)] = 61286, + [SMALL_STATE(1972)] = 61297, + [SMALL_STATE(1973)] = 61308, + [SMALL_STATE(1974)] = 61317, + [SMALL_STATE(1975)] = 61328, + [SMALL_STATE(1976)] = 61339, + [SMALL_STATE(1977)] = 61350, + [SMALL_STATE(1978)] = 61361, + [SMALL_STATE(1979)] = 61372, + [SMALL_STATE(1980)] = 61383, + [SMALL_STATE(1981)] = 61394, + [SMALL_STATE(1982)] = 61405, + [SMALL_STATE(1983)] = 61416, + [SMALL_STATE(1984)] = 61425, + [SMALL_STATE(1985)] = 61436, + [SMALL_STATE(1986)] = 61447, + [SMALL_STATE(1987)] = 61458, + [SMALL_STATE(1988)] = 61467, + [SMALL_STATE(1989)] = 61476, + [SMALL_STATE(1990)] = 61487, + [SMALL_STATE(1991)] = 61498, + [SMALL_STATE(1992)] = 61509, + [SMALL_STATE(1993)] = 61520, + [SMALL_STATE(1994)] = 61531, + [SMALL_STATE(1995)] = 61542, + [SMALL_STATE(1996)] = 61553, + [SMALL_STATE(1997)] = 61564, + [SMALL_STATE(1998)] = 61575, + [SMALL_STATE(1999)] = 61586, + [SMALL_STATE(2000)] = 61597, + [SMALL_STATE(2001)] = 61608, + [SMALL_STATE(2002)] = 61619, + [SMALL_STATE(2003)] = 61630, + [SMALL_STATE(2004)] = 61641, + [SMALL_STATE(2005)] = 61652, + [SMALL_STATE(2006)] = 61663, + [SMALL_STATE(2007)] = 61674, + [SMALL_STATE(2008)] = 61685, + [SMALL_STATE(2009)] = 61696, + [SMALL_STATE(2010)] = 61707, + [SMALL_STATE(2011)] = 61718, + [SMALL_STATE(2012)] = 61729, + [SMALL_STATE(2013)] = 61738, + [SMALL_STATE(2014)] = 61749, + [SMALL_STATE(2015)] = 61760, + [SMALL_STATE(2016)] = 61771, + [SMALL_STATE(2017)] = 61782, + [SMALL_STATE(2018)] = 61793, + [SMALL_STATE(2019)] = 61804, + [SMALL_STATE(2020)] = 61815, + [SMALL_STATE(2021)] = 61826, + [SMALL_STATE(2022)] = 61837, + [SMALL_STATE(2023)] = 61848, + [SMALL_STATE(2024)] = 61859, + [SMALL_STATE(2025)] = 61870, + [SMALL_STATE(2026)] = 61881, + [SMALL_STATE(2027)] = 61892, + [SMALL_STATE(2028)] = 61903, + [SMALL_STATE(2029)] = 61914, + [SMALL_STATE(2030)] = 61925, + [SMALL_STATE(2031)] = 61936, + [SMALL_STATE(2032)] = 61947, + [SMALL_STATE(2033)] = 61956, + [SMALL_STATE(2034)] = 61967, + [SMALL_STATE(2035)] = 61978, + [SMALL_STATE(2036)] = 61989, + [SMALL_STATE(2037)] = 62000, + [SMALL_STATE(2038)] = 62011, + [SMALL_STATE(2039)] = 62020, + [SMALL_STATE(2040)] = 62029, + [SMALL_STATE(2041)] = 62038, + [SMALL_STATE(2042)] = 62047, + [SMALL_STATE(2043)] = 62056, + [SMALL_STATE(2044)] = 62067, + [SMALL_STATE(2045)] = 62078, + [SMALL_STATE(2046)] = 62089, + [SMALL_STATE(2047)] = 62100, + [SMALL_STATE(2048)] = 62111, + [SMALL_STATE(2049)] = 62122, + [SMALL_STATE(2050)] = 62133, + [SMALL_STATE(2051)] = 62144, + [SMALL_STATE(2052)] = 62155, + [SMALL_STATE(2053)] = 62166, + [SMALL_STATE(2054)] = 62177, + [SMALL_STATE(2055)] = 62188, + [SMALL_STATE(2056)] = 62197, + [SMALL_STATE(2057)] = 62208, + [SMALL_STATE(2058)] = 62219, + [SMALL_STATE(2059)] = 62230, + [SMALL_STATE(2060)] = 62239, + [SMALL_STATE(2061)] = 62248, + [SMALL_STATE(2062)] = 62257, + [SMALL_STATE(2063)] = 62268, + [SMALL_STATE(2064)] = 62279, + [SMALL_STATE(2065)] = 62290, + [SMALL_STATE(2066)] = 62301, + [SMALL_STATE(2067)] = 62312, + [SMALL_STATE(2068)] = 62321, + [SMALL_STATE(2069)] = 62332, + [SMALL_STATE(2070)] = 62341, + [SMALL_STATE(2071)] = 62350, + [SMALL_STATE(2072)] = 62361, + [SMALL_STATE(2073)] = 62372, + [SMALL_STATE(2074)] = 62383, + [SMALL_STATE(2075)] = 62394, + [SMALL_STATE(2076)] = 62405, + [SMALL_STATE(2077)] = 62416, + [SMALL_STATE(2078)] = 62427, + [SMALL_STATE(2079)] = 62436, + [SMALL_STATE(2080)] = 62445, + [SMALL_STATE(2081)] = 62454, + [SMALL_STATE(2082)] = 62465, + [SMALL_STATE(2083)] = 62474, + [SMALL_STATE(2084)] = 62483, + [SMALL_STATE(2085)] = 62492, + [SMALL_STATE(2086)] = 62501, + [SMALL_STATE(2087)] = 62510, + [SMALL_STATE(2088)] = 62521, + [SMALL_STATE(2089)] = 62530, + [SMALL_STATE(2090)] = 62541, + [SMALL_STATE(2091)] = 62552, + [SMALL_STATE(2092)] = 62563, + [SMALL_STATE(2093)] = 62574, + [SMALL_STATE(2094)] = 62585, + [SMALL_STATE(2095)] = 62596, + [SMALL_STATE(2096)] = 62607, + [SMALL_STATE(2097)] = 62618, + [SMALL_STATE(2098)] = 62627, + [SMALL_STATE(2099)] = 62638, + [SMALL_STATE(2100)] = 62649, + [SMALL_STATE(2101)] = 62658, + [SMALL_STATE(2102)] = 62669, + [SMALL_STATE(2103)] = 62678, + [SMALL_STATE(2104)] = 62687, + [SMALL_STATE(2105)] = 62696, + [SMALL_STATE(2106)] = 62705, + [SMALL_STATE(2107)] = 62716, + [SMALL_STATE(2108)] = 62727, + [SMALL_STATE(2109)] = 62738, + [SMALL_STATE(2110)] = 62747, + [SMALL_STATE(2111)] = 62758, + [SMALL_STATE(2112)] = 62767, + [SMALL_STATE(2113)] = 62776, + [SMALL_STATE(2114)] = 62787, + [SMALL_STATE(2115)] = 62798, + [SMALL_STATE(2116)] = 62809, + [SMALL_STATE(2117)] = 62820, + [SMALL_STATE(2118)] = 62831, + [SMALL_STATE(2119)] = 62842, + [SMALL_STATE(2120)] = 62853, + [SMALL_STATE(2121)] = 62862, + [SMALL_STATE(2122)] = 62871, + [SMALL_STATE(2123)] = 62882, + [SMALL_STATE(2124)] = 62890, + [SMALL_STATE(2125)] = 62898, + [SMALL_STATE(2126)] = 62906, + [SMALL_STATE(2127)] = 62914, + [SMALL_STATE(2128)] = 62922, + [SMALL_STATE(2129)] = 62930, + [SMALL_STATE(2130)] = 62938, + [SMALL_STATE(2131)] = 62946, + [SMALL_STATE(2132)] = 62954, + [SMALL_STATE(2133)] = 62962, + [SMALL_STATE(2134)] = 62970, + [SMALL_STATE(2135)] = 62978, + [SMALL_STATE(2136)] = 62986, + [SMALL_STATE(2137)] = 62994, + [SMALL_STATE(2138)] = 63002, + [SMALL_STATE(2139)] = 63010, + [SMALL_STATE(2140)] = 63018, + [SMALL_STATE(2141)] = 63026, + [SMALL_STATE(2142)] = 63034, + [SMALL_STATE(2143)] = 63042, + [SMALL_STATE(2144)] = 63050, + [SMALL_STATE(2145)] = 63058, + [SMALL_STATE(2146)] = 63068, + [SMALL_STATE(2147)] = 63076, + [SMALL_STATE(2148)] = 63084, + [SMALL_STATE(2149)] = 63092, + [SMALL_STATE(2150)] = 63100, + [SMALL_STATE(2151)] = 63108, + [SMALL_STATE(2152)] = 63116, + [SMALL_STATE(2153)] = 63124, + [SMALL_STATE(2154)] = 63132, + [SMALL_STATE(2155)] = 63140, + [SMALL_STATE(2156)] = 63148, + [SMALL_STATE(2157)] = 63156, + [SMALL_STATE(2158)] = 63164, + [SMALL_STATE(2159)] = 63172, + [SMALL_STATE(2160)] = 63180, + [SMALL_STATE(2161)] = 63188, + [SMALL_STATE(2162)] = 63196, + [SMALL_STATE(2163)] = 63204, + [SMALL_STATE(2164)] = 63212, + [SMALL_STATE(2165)] = 63220, + [SMALL_STATE(2166)] = 63228, + [SMALL_STATE(2167)] = 63236, + [SMALL_STATE(2168)] = 63246, + [SMALL_STATE(2169)] = 63254, + [SMALL_STATE(2170)] = 63262, + [SMALL_STATE(2171)] = 63270, + [SMALL_STATE(2172)] = 63278, + [SMALL_STATE(2173)] = 63286, + [SMALL_STATE(2174)] = 63294, + [SMALL_STATE(2175)] = 63302, + [SMALL_STATE(2176)] = 63310, + [SMALL_STATE(2177)] = 63318, + [SMALL_STATE(2178)] = 63326, + [SMALL_STATE(2179)] = 63334, + [SMALL_STATE(2180)] = 63342, + [SMALL_STATE(2181)] = 63350, + [SMALL_STATE(2182)] = 63358, + [SMALL_STATE(2183)] = 63366, + [SMALL_STATE(2184)] = 63374, + [SMALL_STATE(2185)] = 63382, + [SMALL_STATE(2186)] = 63390, + [SMALL_STATE(2187)] = 63400, + [SMALL_STATE(2188)] = 63408, + [SMALL_STATE(2189)] = 63416, + [SMALL_STATE(2190)] = 63424, + [SMALL_STATE(2191)] = 63432, + [SMALL_STATE(2192)] = 63440, + [SMALL_STATE(2193)] = 63448, + [SMALL_STATE(2194)] = 63456, + [SMALL_STATE(2195)] = 63464, + [SMALL_STATE(2196)] = 63472, + [SMALL_STATE(2197)] = 63480, + [SMALL_STATE(2198)] = 63488, + [SMALL_STATE(2199)] = 63496, + [SMALL_STATE(2200)] = 63506, + [SMALL_STATE(2201)] = 63514, + [SMALL_STATE(2202)] = 63524, + [SMALL_STATE(2203)] = 63532, + [SMALL_STATE(2204)] = 63542, + [SMALL_STATE(2205)] = 63550, + [SMALL_STATE(2206)] = 63558, + [SMALL_STATE(2207)] = 63566, + [SMALL_STATE(2208)] = 63574, + [SMALL_STATE(2209)] = 63582, + [SMALL_STATE(2210)] = 63590, + [SMALL_STATE(2211)] = 63600, + [SMALL_STATE(2212)] = 63608, + [SMALL_STATE(2213)] = 63616, + [SMALL_STATE(2214)] = 63624, + [SMALL_STATE(2215)] = 63632, + [SMALL_STATE(2216)] = 63640, + [SMALL_STATE(2217)] = 63648, + [SMALL_STATE(2218)] = 63656, + [SMALL_STATE(2219)] = 63666, + [SMALL_STATE(2220)] = 63676, + [SMALL_STATE(2221)] = 63684, + [SMALL_STATE(2222)] = 63692, + [SMALL_STATE(2223)] = 63700, + [SMALL_STATE(2224)] = 63708, + [SMALL_STATE(2225)] = 63718, + [SMALL_STATE(2226)] = 63726, + [SMALL_STATE(2227)] = 63734, + [SMALL_STATE(2228)] = 63742, + [SMALL_STATE(2229)] = 63750, + [SMALL_STATE(2230)] = 63758, + [SMALL_STATE(2231)] = 63766, + [SMALL_STATE(2232)] = 63774, + [SMALL_STATE(2233)] = 63782, + [SMALL_STATE(2234)] = 63790, + [SMALL_STATE(2235)] = 63798, + [SMALL_STATE(2236)] = 63806, + [SMALL_STATE(2237)] = 63814, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -81755,1706 +97453,2181 @@ 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(456), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1031), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1579), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1098), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1457), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1358), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1245), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1156), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 98), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 98), - [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 57), - [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 57), - [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 36), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 36), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 67), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 67), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 96), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 96), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 96), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 96), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 35), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 35), - [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 35), - [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 35), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 74), - [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 74), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 74), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 74), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 78), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 78), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 78), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 78), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 69), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 69), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 69), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 69), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 86), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 86), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 86), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 86), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 86), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 86), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 86), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 86), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 90), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 90), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 90), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 90), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(31), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1008), - [847] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(97), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(220), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(97), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(201), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(231), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 6), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 6), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 19), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(130), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 19), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 28), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 28), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 6), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 6), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 103), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 103), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 60), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 60), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 6), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 6), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 27), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 27), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 100), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 100), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 52), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 52), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 96), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 96), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 107), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 107), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 29), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 29), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 30), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 30), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 30), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 30), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 108), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 108), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 109), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 109), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 61), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 61), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 110), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 110), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 50), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 50), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 20), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 20), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 52), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 52), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 53), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 53), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 21), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 21), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 60), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 60), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 69), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 69), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 77), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 77), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 23), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 23), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 52), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 52), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 20), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 20), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 25), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 25), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 13), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 13), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 74), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 74), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 23), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 23), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 58), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 58), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 89), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 89), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 86), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 86), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 78), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 78), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 35), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 35), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 14), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 14), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 26), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 26), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 59), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 59), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 94), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 94), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 86), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 86), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 90), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 90), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 101), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 101), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 76), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 76), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 44), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 44), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 43), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 43), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 88), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 88), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(92), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 105), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 105), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 106), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 106), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 99), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 99), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(203), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 92), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 92), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(232), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 93), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 93), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(133), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 7), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 7), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 39), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 39), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 6), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 6), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 9), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 9), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 10), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 10), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 11), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 11), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 16), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 16), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), - [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 18), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 36), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 36), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 37), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 37), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 38), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 38), - [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 41), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 41), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 47), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 47), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 48), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 48), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 49), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 49), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 17), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 17), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 70), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 70), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 71), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 71), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 72), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 72), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 73), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 73), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 71), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 71), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 75), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 75), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 31), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 31), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 79), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 79), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 85), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 85), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 42), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 42), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 42), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 15), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 40), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 87), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 18), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 40), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 57), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(254), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 40), REDUCE(sym_assignment_expression, 3, 0, 40), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 40), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 40), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 15), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 55), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(281), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1240), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1020), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(876), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(268), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1266), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1200), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(908), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1130), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1339), - [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(895), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(980), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(921), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1477), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 81), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 81), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 97), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 97), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 91), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 91), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 43), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 43), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 96), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 96), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 56), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 56), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 104), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 104), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1339), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 74), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 74), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 86), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 86), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), - [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), SHIFT_REPEAT(963), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 6), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 6), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 36), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 36), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 9), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 9), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(105), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1094), - [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(104), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1094), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(1383), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 18), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 43), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 43), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 83), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 64), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 66), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 34), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(203), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 62), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 62), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 31), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 31), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(232), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 22), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1244), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1252), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1264), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1264), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 55), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1107), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(95), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 20), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 82), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 84), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 95), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 65), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 80), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 80), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3296] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [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(510), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [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(4), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1235), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1897), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1304), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1584), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(405), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1561), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1934), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1479), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1529), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2186), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1345), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 98), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 98), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 36), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 36), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 57), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 57), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 67), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 67), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 35), + [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 35), + [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 35), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 35), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 96), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 96), + [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 96), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 96), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 86), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 86), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 86), + [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 86), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 86), + [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 86), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 86), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 86), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 69), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 69), + [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 69), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 69), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 74), + [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 74), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 74), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 74), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 78), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 78), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 78), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 78), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 90), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 90), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 90), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 90), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(48), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1231), + [981] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(117), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(247), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(117), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(229), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(277), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 19), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 6), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 6), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(168), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 19), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 28), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 28), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 103), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 103), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 60), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 60), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 6), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 6), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 78), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 78), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 107), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 107), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 50), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 50), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 52), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 52), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 108), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 108), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 109), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 109), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 53), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 53), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 110), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 110), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 100), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 100), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 101), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 101), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 25), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 25), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 86), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 86), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 52), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 52), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 20), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 20), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 23), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 23), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 58), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 58), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 59), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 59), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 6), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 6), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 61), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 61), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 35), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 35), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 77), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 77), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 86), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 86), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 26), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 26), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 52), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 52), + [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_while_statement, 3, 0, 27), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 27), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 90), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 90), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 60), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 60), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 69), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 69), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 29), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 29), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 30), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 30), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 30), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 30), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 74), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 74), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 89), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 89), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 20), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 20), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 21), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 21), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 94), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 94), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 23), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 23), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 15), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 15), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 96), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 96), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(105), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 76), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 76), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 43), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 43), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 44), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 44), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 88), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 88), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(232), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(279), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 105), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 105), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 106), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 106), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 99), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 99), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(190), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 93), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 93), + [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 92), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 92), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 7), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 7), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 6), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 6), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 9), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 9), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 18), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 36), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 36), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 37), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 37), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 38), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 38), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 39), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 39), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 47), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 47), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 17), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 17), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 71), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 71), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 71), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 71), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 75), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 75), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 79), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 79), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 85), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 85), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 49), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 49), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 48), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 48), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 10), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 10), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 70), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 70), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 11), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 11), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 72), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 72), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 73), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 73), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 13), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 13), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 31), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 31), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 18), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 40), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 40), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 42), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 42), + [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 16), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 41), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 42), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 87), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 16), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 41), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 41), REDUCE(sym_assignment_expression, 3, 0, 41), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 41), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 57), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(307), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 41), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 55), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(339), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1539), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1225), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1072), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(321), + [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1487), + [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1488), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1117), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1361), + [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1611), + [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1101), + [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1188), + [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1126), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1841), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [2472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 43), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 43), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1611), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 97), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 97), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 6), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 6), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 91), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 91), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 104), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 104), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 74), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 74), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 81), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 81), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 86), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 86), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 96), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 96), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 56), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 56), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 36), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 36), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), + [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), SHIFT_REPEAT(1157), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 9), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 9), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1295), + [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(130), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1295), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2103), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 18), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 64), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 43), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 43), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), + [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(157), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 66), + [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), + [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(154), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 83), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 34), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(232), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 62), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 62), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 31), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 31), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1655), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(279), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 22), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1451), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(335), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1490), + [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1490), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1492), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [3372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1492), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(125), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(1064), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 20), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1080), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 55), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 80), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 84), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 95), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 80), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 82), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 65), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [3983] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), }; enum ts_external_scanner_symbol_identifiers { ts_external_token__automatic_semicolon = 0, ts_external_token__template_chars = 1, ts_external_token__ternary_qmark = 2, - ts_external_token_html_comment = 3, - ts_external_token_PIPE_PIPE = 4, - ts_external_token_escape_sequence = 5, - ts_external_token_regex_pattern = 6, - ts_external_token_jsx_text = 7, + ts_external_token__shorthand_arrow = 3, + ts_external_token_html_comment = 4, + ts_external_token_PIPE_PIPE = 5, + ts_external_token_LPAREN = 6, + ts_external_token_LBRACK = 7, + ts_external_token_LBRACE = 8, + ts_external_token_escape_sequence = 9, + ts_external_token_regex_pattern = 10, + ts_external_token_jsx_text = 11, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, [ts_external_token__template_chars] = sym__template_chars, [ts_external_token__ternary_qmark] = sym__ternary_qmark, + [ts_external_token__shorthand_arrow] = sym__shorthand_arrow, [ts_external_token_html_comment] = sym_html_comment, [ts_external_token_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [ts_external_token_LPAREN] = anon_sym_LPAREN, + [ts_external_token_LBRACK] = anon_sym_LBRACK, + [ts_external_token_LBRACE] = anon_sym_LBRACE, [ts_external_token_escape_sequence] = sym_escape_sequence, [ts_external_token_regex_pattern] = sym_regex_pattern, [ts_external_token_jsx_text] = sym_jsx_text, }; -static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[34][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__automatic_semicolon] = true, [ts_external_token__template_chars] = true, [ts_external_token__ternary_qmark] = true, + [ts_external_token__shorthand_arrow] = true, [ts_external_token_html_comment] = true, [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + [ts_external_token_LBRACE] = true, [ts_external_token_escape_sequence] = true, [ts_external_token_jsx_text] = true, }, [2] = { [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + [ts_external_token_LBRACE] = true, }, [3] = { [ts_external_token__ternary_qmark] = true, [ts_external_token_html_comment] = true, [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + [ts_external_token_LBRACE] = true, }, [4] = { [ts_external_token__automatic_semicolon] = true, [ts_external_token__ternary_qmark] = true, [ts_external_token_html_comment] = true, [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + [ts_external_token_LBRACE] = true, }, [5] = { [ts_external_token__automatic_semicolon] = true, [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + [ts_external_token_LBRACE] = true, }, [6] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__ternary_qmark] = true, + [ts_external_token__shorthand_arrow] = true, [ts_external_token_html_comment] = true, - [ts_external_token_jsx_text] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + [ts_external_token_LBRACE] = true, }, [7] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__ternary_qmark] = true, + [ts_external_token__shorthand_arrow] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + }, + [8] = { + [ts_external_token__ternary_qmark] = true, + [ts_external_token__shorthand_arrow] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + }, + [9] = { + [ts_external_token__ternary_qmark] = true, + [ts_external_token__shorthand_arrow] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + [ts_external_token_LBRACE] = true, + }, + [10] = { + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + }, + [11] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + }, + [12] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LBRACK] = true, + }, + [13] = { + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LBRACK] = true, + }, + [14] = { + [ts_external_token_html_comment] = true, + [ts_external_token_LBRACK] = true, + [ts_external_token_LBRACE] = true, + }, + [15] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LBRACK] = true, + [ts_external_token_LBRACE] = true, + }, + [16] = { + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LBRACK] = true, + [ts_external_token_LBRACE] = true, + }, + [17] = { + [ts_external_token_html_comment] = true, + [ts_external_token_LBRACK] = true, + }, + [18] = { + [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + }, + [19] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + }, + [20] = { + [ts_external_token__shorthand_arrow] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + }, + [21] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_LBRACK] = true, + }, + [22] = { + [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + }, + [23] = { + [ts_external_token_html_comment] = true, + }, + [24] = { + [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACE] = true, + }, + [25] = { + [ts_external_token_html_comment] = true, + [ts_external_token_LBRACE] = true, + [ts_external_token_jsx_text] = true, + }, + [26] = { + [ts_external_token_html_comment] = true, + [ts_external_token_LBRACE] = true, + }, + [27] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + }, + [28] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + }, + [29] = { [ts_external_token__template_chars] = true, [ts_external_token_html_comment] = true, [ts_external_token_escape_sequence] = true, }, - [8] = { + [30] = { [ts_external_token_html_comment] = true, [ts_external_token_escape_sequence] = true, }, - [9] = { + [31] = { + [ts_external_token__shorthand_arrow] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + }, + [32] = { + [ts_external_token__shorthand_arrow] = true, + [ts_external_token_html_comment] = true, + }, + [33] = { [ts_external_token_html_comment] = true, [ts_external_token_regex_pattern] = true, }, @@ -83479,7 +99652,7 @@ void tree_sitter_javascript_external_scanner_deserialize(void *, const char *, u TS_PUBLIC const TSLanguage *tree_sitter_javascript(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -83501,7 +99674,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_javascript(void) { .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, diff --git a/src/scanner.c b/src/scanner.c index 795916dd..b0ec67de 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -7,8 +7,12 @@ enum TokenType { AUTOMATIC_SEMICOLON, TEMPLATE_CHARS, TERNARY_QMARK, + SHORTHAND_ARROW, HTML_COMMENT, LOGICAL_OR, + LEFT_PARENTHESIS, + LEFT_SQUARE_BRACKET, + LEFT_CURLY_BRACE, ESCAPE_SEQUENCE, REGEX_PATTERN, JSX_TEXT, @@ -107,7 +111,7 @@ static WhitespaceResult scan_whitespace_and_comments(TSLexer *lexer, bool *scann } } -static bool scan_automatic_semicolon(TSLexer *lexer, bool comment_condition, bool *scanned_comment) { +static bool scan_automatic_semicolon(TSLexer *lexer, bool comment_condition, bool *scanned_comment, const bool *valid_symbols) { lexer->result_symbol = AUTOMATIC_SEMICOLON; lexer->mark_end(lexer); @@ -162,8 +166,6 @@ static bool scan_automatic_semicolon(TSLexer *lexer, bool comment_condition, boo case '>': case '<': case '=': - case '[': - case '(': case '?': case '^': case '|': @@ -171,6 +173,13 @@ static bool scan_automatic_semicolon(TSLexer *lexer, bool comment_condition, boo case '/': return false; + case '[': + return !valid_symbols[LEFT_SQUARE_BRACKET]; + case '(': + return !valid_symbols[LEFT_PARENTHESIS]; + case '{': + return !valid_symbols[LEFT_CURLY_BRACE]; + // Insert a semicolon before decimals literals but not otherwise. case '.': skip(lexer); @@ -223,13 +232,6 @@ static bool scan_automatic_semicolon(TSLexer *lexer, bool comment_condition, boo } static bool scan_ternary_qmark(TSLexer *lexer) { - for (;;) { - if (!iswspace(lexer->lookahead)) { - break; - } - skip(lexer); - } - if (lexer->lookahead == '?') { advance(lexer); @@ -330,6 +332,32 @@ static bool scan_jsx_text(TSLexer *lexer) { return saw_text; } +static bool scan_shorthand_arrow(TSLexer *lexer) { + lexer->result_symbol = SHORTHAND_ARROW; + + for (;;) { + if (!iswspace(lexer->lookahead)) { + break; + } + skip(lexer); + } + if (lexer->lookahead == '=') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + lexer->mark_end(lexer); + for (;;) { + if (!iswspace(lexer->lookahead)) { + break; + } + skip(lexer); + } + return lexer->lookahead != '{'; + } + } + return false; +} + bool tree_sitter_javascript_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { if (valid_symbols[TEMPLATE_CHARS]) { if (valid_symbols[AUTOMATIC_SEMICOLON]) { @@ -344,15 +372,30 @@ bool tree_sitter_javascript_external_scanner_scan(void *payload, TSLexer *lexer, if (valid_symbols[AUTOMATIC_SEMICOLON]) { bool scanned_comment = false; - bool ret = scan_automatic_semicolon(lexer, !valid_symbols[LOGICAL_OR], &scanned_comment); + bool ret = scan_automatic_semicolon(lexer, !valid_symbols[LOGICAL_OR], &scanned_comment, valid_symbols); if (!ret && !scanned_comment && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') { return scan_ternary_qmark(lexer); } + if (!ret && valid_symbols[SHORTHAND_ARROW] && lexer->lookahead == '=') { + return scan_shorthand_arrow(lexer); + } return ret; } if (valid_symbols[TERNARY_QMARK]) { - return scan_ternary_qmark(lexer); + for (;;) { + if (!iswspace(lexer->lookahead)) { + break; + } + skip(lexer); + } + if (lexer->lookahead == '?') { + return scan_ternary_qmark(lexer); + } + } + + if (valid_symbols[SHORTHAND_ARROW]) { + return scan_shorthand_arrow(lexer); } if (valid_symbols[HTML_COMMENT] && !valid_symbols[LOGICAL_OR] && !valid_symbols[ESCAPE_SEQUENCE] && diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b233..a17a574f 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599b..858107de 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,6 +18,11 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -26,10 +31,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -79,6 +85,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -93,7 +105,7 @@ typedef struct { } TSCharacterRange; struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -109,13 +121,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -129,15 +141,23 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; -static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; - TSCharacterRange *range = &ranges[mid_index]; + const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { @@ -145,7 +165,7 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t } size -= half_size; } - TSCharacterRange *range = &ranges[index]; + const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); } diff --git a/test/corpus/semicolon_insertion.txt b/test/corpus/semicolon_insertion.txt index 75cca226..e3da8659 100644 --- a/test/corpus/semicolon_insertion.txt +++ b/test/corpus/semicolon_insertion.txt @@ -20,6 +20,24 @@ if (a) { (expression_statement (call_expression (identifier) (arguments))) (return_statement (identifier))))) +============================================ +Semicolon insertion before parenthesized expressions +============================================ + +()=>{} +(1) + +--- + +(program + (expression_statement + (arrow_function + parameters: (formal_parameters) + body: (statement_block))) + (expression_statement + (parenthesized_expression + (number)))) + ============================================ Semicolon insertion before update expressions ============================================ @@ -307,3 +325,17 @@ b (statement_block)))) (expression_statement (member_expression (identifier) (comment) (property_identifier)))) + + +===================== +Export statement +===================== + +export +{} + +--- + +(program + (export_statement + (export_clause)))